Search in sources :

Example 11 with LLVMSourceType

use of com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType in project graal by oracle.

the class DebugInfoModuleProcessor method processSymbols.

private static void processSymbols(List<? extends GlobalValueSymbol> list, DebugInfoCache cache, ModelModule irModel) {
    for (GlobalValueSymbol global : list) {
        MDBaseNode mdGlobal = getDebugInfo(global);
        if (mdGlobal != null) {
            final boolean isGlobal = !(mdGlobal instanceof MDLocalVariable);
            final LLVMSourceSymbol symbol = cache.getSourceSymbol(mdGlobal, isGlobal);
            if (symbol != null) {
                irModel.getSourceGlobals().put(symbol, global);
                global.setSourceSymbol(symbol);
            }
            if (mdGlobal instanceof MDGlobalVariableExpression) {
                mdGlobal = ((MDGlobalVariableExpression) mdGlobal).getGlobalVariable();
            }
            if (mdGlobal instanceof MDGlobalVariable) {
                final MDBaseNode declaration = ((MDGlobalVariable) mdGlobal).getStaticMemberDeclaration();
                if (declaration != MDVoidNode.INSTANCE) {
                    final LLVMSourceType sourceType = cache.parseType(declaration);
                    if (sourceType instanceof LLVMSourceStaticMemberType) {
                        irModel.getSourceStaticMembers().put((LLVMSourceStaticMemberType) sourceType, global);
                    }
                }
            }
        }
    }
}
Also used : MDGlobalVariable(com.oracle.truffle.llvm.parser.metadata.MDGlobalVariable) MDGlobalVariableExpression(com.oracle.truffle.llvm.parser.metadata.MDGlobalVariableExpression) MDLocalVariable(com.oracle.truffle.llvm.parser.metadata.MDLocalVariable) MDBaseNode(com.oracle.truffle.llvm.parser.metadata.MDBaseNode) LLVMSourceSymbol(com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceSymbol) LLVMSourceType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType) LLVMSourceStaticMemberType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceStaticMemberType) GlobalValueSymbol(com.oracle.truffle.llvm.parser.model.symbols.globals.GlobalValueSymbol)

Example 12 with LLVMSourceType

use of com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType in project graal by oracle.

the class DITypeExtractor method resolve.

private LLVMSourceType resolve(MDBaseNode node) {
    LLVMSourceType parsedType = parsedTypes.get(node);
    if (parsedType != null) {
        return parsedType;
    }
    node.accept(this);
    parsedType = parsedTypes.get(node);
    return parsedType != null ? parsedType : UNKNOWN;
}
Also used : LLVMSourceType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType)

Example 13 with LLVMSourceType

use of com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType in project graal by oracle.

the class DITypeExtractor method visit.

@Override
public void visit(MDSubroutine mdSubroutine) {
    final List<LLVMSourceType> members = new ArrayList<>();
    final LLVMSourceFunctionType type = new LLVMSourceFunctionType(members);
    parsedTypes.put(mdSubroutine, type);
    getElements(mdSubroutine.getTypes(), members, true);
}
Also used : ArrayList(java.util.ArrayList) LLVMSourceType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType) LLVMSourceFunctionType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceFunctionType)

Example 14 with LLVMSourceType

use of com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType in project graal by oracle.

the class DITypeExtractor method visit.

@Override
public void visit(MDLocalVariable mdLocal) {
    LLVMSourceType type = resolve(mdLocal.getType());
    if (Flags.OBJECT_POINTER.isSetIn(mdLocal.getFlags()) && type instanceof LLVMSourcePointerType) {
        // llvm does not set the objectpointer flag on this pointer type even though it sets
        // it on the pointer type that is used in the function type descriptor
        final LLVMSourcePointerType oldPointer = (LLVMSourcePointerType) type;
        final LLVMSourcePointerType newPointer = new LLVMSourcePointerType(oldPointer.getSize(), oldPointer.getAlign(), oldPointer.getOffset(), true, oldPointer.isReference(), type.getLocation());
        newPointer.setBaseType(oldPointer.getBaseType());
        newPointer.setName(oldPointer::getName);
        type = newPointer;
    }
    parsedTypes.put(mdLocal, type);
}
Also used : LLVMSourcePointerType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourcePointerType) LLVMSourceType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType)

Example 15 with LLVMSourceType

use of com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType in project graal by oracle.

the class DITypeExtractor method visit.

@Override
public void visit(MDDerivedType mdType) {
    final long size = mdType.getSize();
    final long align = mdType.getAlign();
    final long offset = mdType.getOffset();
    final LLVMSourceLocation location = scopeBuilder.buildLocation(mdType);
    switch(mdType.getTag()) {
        case DW_TAG_MEMBER:
            {
                final String name = MDNameExtractor.getName(mdType.getName());
                if (Flags.STATIC_MEMBER.isSetIn(mdType.getFlags())) {
                    final LLVMSourceStaticMemberType type = new LLVMSourceStaticMemberType(name, size, align, location);
                    parsedTypes.put(mdType, type);
                    final LLVMSourceType baseType = resolve(mdType.getBaseType());
                    type.setElementType(baseType);
                    if (mdType.getExtraData() instanceof MDValue) {
                        staticMembers.put(type, ((MDValue) mdType.getExtraData()).getValue());
                    }
                    break;
                }
                final LLVMSourceMemberType type = new LLVMSourceMemberType(name, size, align, offset, location);
                parsedTypes.put(mdType, type);
                LLVMSourceType baseType = resolve(mdType.getBaseType());
                if (Flags.BITFIELD.isSetIn(mdType.getFlags()) || (baseType != UNKNOWN && baseType.getSize() != size)) {
                    final LLVMSourceDecoratorType decorator = new LLVMSourceDecoratorType(size, align, offset, Function.identity(), location);
                    decorator.setBaseType(baseType);
                    baseType = decorator;
                }
                type.setElementType(baseType);
                break;
            }
        case DW_TAG_REFERENCE_TYPE:
        case DW_TAG_POINTER_TYPE:
            {
                final boolean isSafeToDereference = Flags.OBJECT_POINTER.isSetIn(mdType.getFlags());
                final boolean isReference = mdType.getTag() == MDType.DwarfTag.DW_TAG_REFERENCE_TYPE;
                final LLVMSourcePointerType type = new LLVMSourcePointerType(size, align, offset, isSafeToDereference, isReference, location);
                parsedTypes.put(mdType, type);
                // LLVM does not specify a void type, if this is indicated, the reference is simply
                // null
                final LLVMSourceType baseType = resolve(mdType.getBaseType(), LLVMSourceType.VOID);
                type.setBaseType(baseType);
                type.setName(() -> {
                    final String baseName = baseType.getName();
                    final String sym = isReference ? " &" : "*";
                    if (!baseType.isPointer() && baseName.contains(" ")) {
                        return String.format("(%s)%s", baseName, sym);
                    } else {
                        return String.format("%s%s", baseName, sym);
                    }
                });
                break;
            }
        case DW_TAG_TYPEDEF:
        case DW_TAG_VOLATILE_TYPE:
        case DW_TAG_CONST_TYPE:
            {
                final Function<String, String> decorator;
                switch(mdType.getTag()) {
                    case DW_TAG_VOLATILE_TYPE:
                        decorator = s -> String.format("volatile %s", s);
                        break;
                    case DW_TAG_CONST_TYPE:
                        decorator = s -> String.format("const %s", s);
                        break;
                    case DW_TAG_TYPEDEF:
                        {
                            final String name = MDNameExtractor.getName(mdType.getName());
                            decorator = s -> name;
                            break;
                        }
                    default:
                        decorator = Function.identity();
                }
                final LLVMSourceDecoratorType type = new LLVMSourceDecoratorType(size, align, offset, decorator, location);
                parsedTypes.put(mdType, type);
                final LLVMSourceType baseType = resolve(mdType.getBaseType());
                type.setBaseType(baseType);
                type.setSize(baseType.getSize());
                break;
            }
        case DW_TAG_INHERITANCE:
            {
                final LLVMSourceInheritanceType inheritanceType = new LLVMSourceInheritanceType("super", size, align, offset, location);
                parsedTypes.put(mdType, inheritanceType);
                final LLVMSourceType baseType = resolve(mdType.getBaseType());
                inheritanceType.setElementType(baseType);
                inheritanceType.setName(() -> String.format("super (%s)", baseType.getName()));
                inheritanceType.setVirtual(Flags.VIRTUAL.isSetIn(mdType.getFlags()));
                break;
            }
        default:
            {
                parsedTypes.put(mdType, LLVMSourceType.UNKNOWN);
            }
    }
}
Also used : MDGlobalVariable(com.oracle.truffle.llvm.parser.metadata.MDGlobalVariable) TruffleBoundary(com.oracle.truffle.api.CompilerDirectives.TruffleBoundary) FunctionDefinition(com.oracle.truffle.llvm.parser.model.functions.FunctionDefinition) UNKNOWN(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType.UNKNOWN) HashMap(java.util.HashMap) Function(java.util.function.Function) Supplier(java.util.function.Supplier) LLVMSymbolReadResolver(com.oracle.truffle.llvm.parser.nodes.LLVMSymbolReadResolver) LLVMSourceTypeFactory(com.oracle.truffle.llvm.runtime.debug.value.LLVMSourceTypeFactory) ArrayList(java.util.ArrayList) MDSubprogram(com.oracle.truffle.llvm.parser.metadata.MDSubprogram) LLVMSourceFunctionType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceFunctionType) LLVMSourceBasicType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceBasicType) LLVMLanguage(com.oracle.truffle.llvm.runtime.LLVMLanguage) Map(java.util.Map) MDSubroutine(com.oracle.truffle.llvm.parser.metadata.MDSubroutine) FunctionParameter(com.oracle.truffle.llvm.parser.model.functions.FunctionParameter) LLVMSourceStructLikeType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceStructLikeType) MDVoidNode(com.oracle.truffle.llvm.parser.metadata.MDVoidNode) MDString(com.oracle.truffle.llvm.parser.metadata.MDString) Flags(com.oracle.truffle.llvm.parser.metadata.Flags) MetadataVisitor(com.oracle.truffle.llvm.parser.metadata.MetadataVisitor) DataLayout(com.oracle.truffle.llvm.runtime.datalayout.DataLayout) MDEnumerator(com.oracle.truffle.llvm.parser.metadata.MDEnumerator) MDValue(com.oracle.truffle.llvm.parser.metadata.MDValue) LLVMSourceType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType) LLVMSourceArrayLikeType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceArrayLikeType) LLVMSourceStaticMemberType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceStaticMemberType) MDBaseNode(com.oracle.truffle.llvm.parser.metadata.MDBaseNode) MDDerivedType(com.oracle.truffle.llvm.parser.metadata.MDDerivedType) SymbolImpl(com.oracle.truffle.llvm.parser.model.SymbolImpl) MDCompositeType(com.oracle.truffle.llvm.parser.metadata.MDCompositeType) MDType(com.oracle.truffle.llvm.parser.metadata.MDType) MDBasicType(com.oracle.truffle.llvm.parser.metadata.MDBasicType) LLVMSourceEnumLikeType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceEnumLikeType) List(java.util.List) MDSubrange(com.oracle.truffle.llvm.parser.metadata.MDSubrange) MetadataValueList(com.oracle.truffle.llvm.parser.metadata.MetadataValueList) LLVMSourceMemberType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceMemberType) LLVMSourceClassLikeType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceClassLikeType) MDLocalVariable(com.oracle.truffle.llvm.parser.metadata.MDLocalVariable) LLVMSourceLocation(com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation) LLVMSourceInheritanceType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceInheritanceType) MDNode(com.oracle.truffle.llvm.parser.metadata.MDNode) LLVMSourceDecoratorType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceDecoratorType) MDGlobalVariableExpression(com.oracle.truffle.llvm.parser.metadata.MDGlobalVariableExpression) LLVMSourcePointerType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourcePointerType) Function(java.util.function.Function) LLVMSourceDecoratorType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceDecoratorType) LLVMSourceInheritanceType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceInheritanceType) MDValue(com.oracle.truffle.llvm.parser.metadata.MDValue) LLVMSourceLocation(com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation) LLVMSourcePointerType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourcePointerType) MDString(com.oracle.truffle.llvm.parser.metadata.MDString) LLVMSourceStaticMemberType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceStaticMemberType) LLVMSourceType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType) LLVMSourceMemberType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceMemberType)

Aggregations

LLVMSourceType (com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType)17 LLVMSourceLocation (com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation)5 LLVMSourceFunctionType (com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceFunctionType)5 MDBaseNode (com.oracle.truffle.llvm.parser.metadata.MDBaseNode)4 LLVMSourceStaticMemberType (com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceStaticMemberType)4 MDString (com.oracle.truffle.llvm.parser.metadata.MDString)3 SymbolImpl (com.oracle.truffle.llvm.parser.model.SymbolImpl)3 LLVMSourcePointerType (com.oracle.truffle.llvm.runtime.debug.type.LLVMSourcePointerType)3 ArrayList (java.util.ArrayList)3 TruffleBoundary (com.oracle.truffle.api.CompilerDirectives.TruffleBoundary)2 MDCompositeType (com.oracle.truffle.llvm.parser.metadata.MDCompositeType)2 MDGlobalVariable (com.oracle.truffle.llvm.parser.metadata.MDGlobalVariable)2 MDGlobalVariableExpression (com.oracle.truffle.llvm.parser.metadata.MDGlobalVariableExpression)2 MDLocalVariable (com.oracle.truffle.llvm.parser.metadata.MDLocalVariable)2 MDNode (com.oracle.truffle.llvm.parser.metadata.MDNode)2 MDSubprogram (com.oracle.truffle.llvm.parser.metadata.MDSubprogram)2 MDValue (com.oracle.truffle.llvm.parser.metadata.MDValue)2 MetadataValueList (com.oracle.truffle.llvm.parser.metadata.MetadataValueList)2 FunctionDefinition (com.oracle.truffle.llvm.parser.model.functions.FunctionDefinition)2 FunctionParameter (com.oracle.truffle.llvm.parser.model.functions.FunctionParameter)2