public static LLVMTypeRef WakerType(this ContextWrapper context) => context.StructType( new LLVMTypeRef[] { // task function pointer LLVMTypeRef.PointerType(context.ScheduledTaskFunctionType(), 0u), // task state context.VoidPointerType() });
internal static LLVMTypeRef CreateLLVMNotifierWriterType(this ContextWrapper context, LLVMTypeRef innerType) { return(context.StructType( new LLVMTypeRef[] { LLVMTypeRef.PointerType(context.CreateLLVMRefCountType(context.CreateLLVMNotifierSharedDataType(innerType)), 0u) }, false)); }
internal static LLVMTypeRef CreateLLVMMethodCallPromiseType(this ContextWrapper context, LLVMTypeRef innerType) { return(context.StructType(new LLVMTypeRef[] { LLVMTypeRef.PointerType(context.MethodPollFunctionType(), 0u), context.VoidPointerType(), innerType, })); }
internal static LLVMTypeRef CreateLLVMNotifierSharedDataType(this ContextWrapper context, LLVMTypeRef innerType) { return(context.StructType( new LLVMTypeRef[] { context.WakerType(), innerType, context.Int32Type, })); }
internal static LLVMTypeRef CreateLLVMVectorType(this ContextWrapper context, LLVMTypeRef elementType) { return(context.StructType( // { allocationPtr, size, capacity } new LLVMTypeRef[] { LLVMTypeRef.PointerType(elementType, 0u), context.Int32Type, context.Int32Type }, false)); }
public static LLVMTypeRef StringSliceReferenceType(this ContextWrapper context) => context.StructType( new LLVMTypeRef[] { context.BytePointerType(), context.Int32Type }, false);
internal static LLVMTypeRef CreateLLVMYieldPromiseType(this ContextWrapper context, LLVMTypeRef innerType) => context.StructType(new LLVMTypeRef[] { innerType });
internal static LLVMTypeRef CreateLLVMRefCountType(this ContextWrapper context, LLVMTypeRef innerType) { return(context.StructType(new LLVMTypeRef[] { context.Int32Type, innerType })); }
internal static LLVMTypeRef CreateLLVMSliceReferenceType(this ContextWrapper context, LLVMTypeRef innerType) { return(context.StructType(new LLVMTypeRef[] { LLVMTypeRef.PointerType(innerType, 0u), context.Int32Type })); }
// TechDebt: for some of the types below, it would be nicer to return named types, which we can do now that we're // passing around an LLVM context. public static LLVMTypeRef AsLLVMType(this ContextWrapper context, NIType niType) { switch (niType.GetKind()) { case NITypeKind.UInt8: case NITypeKind.Int8: return(context.Int8Type); case NITypeKind.UInt16: case NITypeKind.Int16: return(context.Int16Type); case NITypeKind.UInt32: case NITypeKind.Int32: return(context.Int32Type); case NITypeKind.UInt64: case NITypeKind.Int64: return(context.Int64Type); case NITypeKind.Boolean: return(context.Int1Type); case NITypeKind.String: return(context.StringType()); default: { if (niType.IsRebarReferenceType()) { NIType referentType = niType.GetReferentType(); if (referentType == DataTypes.StringSliceType) { return(context.StringSliceReferenceType()); } NIType sliceElementType; if (referentType.TryDestructureSliceType(out sliceElementType)) { return(context.CreateLLVMSliceReferenceType(context.AsLLVMType(sliceElementType))); } return(LLVMTypeRef.PointerType(context.AsLLVMType(referentType), 0u)); } if (niType.IsCluster()) { LLVMTypeRef[] fieldTypes = niType.GetFields().Select(field => context.AsLLVMType(field.GetDataType())).ToArray(); return(context.StructType(fieldTypes)); } if (niType == DataTypes.FileHandleType) { return(context.FileHandleType()); } if (niType == DataTypes.FakeDropType) { return(context.FakeDropType()); } if (niType == DataTypes.RangeIteratorType) { return(context.RangeIteratorType()); } if (niType == DataTypes.WakerType) { return(context.WakerType()); } NIType innerType; if (niType.TryDestructureOptionType(out innerType)) { return(context.CreateLLVMOptionType(context.AsLLVMType(innerType))); } if (niType.IsStringSplitIteratorType()) { return(context.StringSplitIteratorType()); } if (niType.TryDestructureVectorType(out innerType)) { return(context.CreateLLVMVectorType(context.AsLLVMType(innerType))); } if (niType.TryDestructureSliceIteratorType(out innerType) || niType.TryDestructureSliceMutableIteratorType(out innerType)) { return(context.CreateLLVMSliceIteratorType(context.AsLLVMType(innerType))); } if (niType.TryDestructureSharedType(out innerType)) { return(context.CreateLLVMSharedType(context.AsLLVMType(innerType))); } if (niType.TryDestructureYieldPromiseType(out innerType)) { return(context.CreateLLVMYieldPromiseType(context.AsLLVMType(innerType))); } if (niType.TryDestructureMethodCallPromiseType(out innerType)) { return(context.CreateLLVMMethodCallPromiseType(context.AsLLVMType(innerType))); } if (niType.TryDestructureNotifierReaderType(out innerType)) { return(context.CreateLLVMNotifierReaderType(context.AsLLVMType(innerType))); } if (niType.TryDestructureNotifierReaderPromiseType(out innerType)) { return(context.CreateLLVMNotifierReaderPromiseType(context.AsLLVMType(innerType))); } if (niType.TryDestructureNotifierWriterType(out innerType)) { return(context.CreateLLVMNotifierWriterType(context.AsLLVMType(innerType))); } if (niType.TryDestructurePanicResultType(out innerType)) { return(context.CreateLLVMPanicResultType(context.AsLLVMType(innerType))); } // TODO: when using typedef classes and unions in FunctionCompiler, the LLVM type should // come from a TypeDiagramBuiltPackage. if (niType.IsValueClass() && niType.GetFields().Any()) { LLVMTypeRef[] fieldTypes = niType.GetFields().Select(f => context.AsLLVMType(f.GetDataType())).ToArray(); return(context.StructType(fieldTypes)); } if (niType.IsUnion()) { int maxSize = 4; foreach (NIType field in niType.GetFields()) { // TODO: where possible, use a non-array type that matches the max size LLVMTypeRef llvmFieldType = context.AsLLVMType(field.GetDataType()); int fieldSize = (int)LLVMSharp.LLVM.StoreSizeOfType(LocalTargetInfo.TargetData, llvmFieldType); maxSize = Math.Max(maxSize, fieldSize); } LLVMTypeRef[] structFieldTypes = new LLVMTypeRef[] { context.Int8Type, // TODO: this is incorrect because it does not consider alignment LLVMTypeRef.ArrayType(context.Int8Type, (uint)maxSize) }; return(context.StructType(structFieldTypes)); } throw new NotSupportedException("Unsupported type: " + niType); } } }
internal static LLVMTypeRef CreateLLVMPanicResultType(this ContextWrapper context, LLVMTypeRef innerType) { return(context.StructType(new LLVMTypeRef[] { context.Int1Type, innerType })); }
public static LLVMTypeRef FakeDropType(this ContextWrapper context) => context.StructType( new LLVMTypeRef[] { context.Int32Type });
public static LLVMTypeRef FileHandleType(this ContextWrapper context) => context.StructType( new LLVMTypeRef[] { context.VoidPointerType() });
public static LLVMTypeRef RangeIteratorType(this ContextWrapper context) => context.StructType( new LLVMTypeRef[] { context.Int32Type, context.Int32Type });
public static LLVMTypeRef StringSplitIteratorType(this ContextWrapper context) => context.StructType( new LLVMTypeRef[] { context.StringSliceReferenceType(), context.BytePointerType() });
public static LLVMTypeRef StringType(this ContextWrapper context) => context.StructType( new LLVMTypeRef[] { context.BytePointerType(), context.Int32Type });