Home
last modified time | relevance | path

Searched refs:createBasicType (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/src/Reactor/
DLLVMReactorDebugInfo.cpp419 …diTypes.emplace(T(Bool::type()), diBuilder->createBasicType("Bool", sizeof(bool), dwarf::DW_ATE_bo… in registerBasicTypes()
420 …diTypes.emplace(T(Byte::type()), diBuilder->createBasicType("Byte", 8, dwarf::DW_ATE_unsigned_char… in registerBasicTypes()
421 …diTypes.emplace(T(SByte::type()), diBuilder->createBasicType("SByte", 8, dwarf::DW_ATE_signed_char… in registerBasicTypes()
422 diTypes.emplace(T(Short::type()), diBuilder->createBasicType("Short", 16, dwarf::DW_ATE_signed)); in registerBasicTypes()
423 …diTypes.emplace(T(UShort::type()), diBuilder->createBasicType("UShort", 16, dwarf::DW_ATE_unsigned… in registerBasicTypes()
424 diTypes.emplace(T(Int::type()), diBuilder->createBasicType("Int", 32, dwarf::DW_ATE_signed)); in registerBasicTypes()
425 diTypes.emplace(T(UInt::type()), diBuilder->createBasicType("UInt", 32, dwarf::DW_ATE_unsigned)); in registerBasicTypes()
426 diTypes.emplace(T(Long::type()), diBuilder->createBasicType("Long", 64, dwarf::DW_ATE_signed)); in registerBasicTypes()
427 diTypes.emplace(T(Half::type()), diBuilder->createBasicType("Half", 16, dwarf::DW_ATE_float)); in registerBasicTypes()
428 diTypes.emplace(T(Float::type()), diBuilder->createBasicType("Float", 32, dwarf::DW_ATE_float)); in registerBasicTypes()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
DJitManager.cpp296 return builder.createBasicType("float16", 16, dwarf::DW_ATE_float); in GetDebugType()
299 return builder.createBasicType("float", 32, dwarf::DW_ATE_float); in GetDebugType()
302 return builder.createBasicType("double", 64, dwarf::DW_ATE_float); in GetDebugType()
358 return builder.createBasicType("int1", 1, dwarf::DW_ATE_unsigned); in GetDebugIntegerType()
361 return builder.createBasicType("int8", 8, dwarf::DW_ATE_signed); in GetDebugIntegerType()
364 return builder.createBasicType("int16", 16, dwarf::DW_ATE_signed); in GetDebugIntegerType()
367 return builder.createBasicType("int", 32, dwarf::DW_ATE_signed); in GetDebugIntegerType()
370 return builder.createBasicType("int64", 64, dwarf::DW_ATE_signed); in GetDebugIntegerType()
373 return builder.createBasicType("int128", 128, dwarf::DW_ATE_signed); in GetDebugIntegerType()
/external/llvm/unittests/IR/
DVerifierTest.cpp137 auto Ty = dbuilder.createBasicType("Int8", 8, 8, dwarf::DW_ATE_signed); in TEST()
/external/llvm/bindings/go/llvm/
DDIBuilderBindings.cpp113 return wrap(D->createBasicType(Name, SizeInBits, AlignInBits, Encoding)); in LLVMDIBuilderCreateBasicType()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DDebugify.cpp74 DTy = DIB.createBasicType(Name, Size, dwarf::DW_ATE_unsigned); in applyDebugifyMetadata()
/external/llvm/include/llvm/IR/
DDIBuilder.h125 DIBasicType *createBasicType(StringRef Name, uint64_t SizeInBits,
/external/llvm/unittests/Transforms/Utils/
DCloning.cpp256 DBuilder.createBasicType("int", 32, 0, dwarf::DW_ATE_signed); in CreateOldFunctionBodyAndDI()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDIBuilder.h194 DIBasicType *createBasicType(StringRef Name, uint64_t SizeInBits,
/external/llvm/examples/Kaleidoscope/Chapter9/
Dtoy.cpp826 DblTy = DBuilder->createBasicType("double", 64, 64, dwarf::DW_ATE_float); in getDoubleTy()
/external/llvm/lib/IR/
DDIBuilder.cpp196 DIBasicType *DIBuilder::createBasicType(StringRef Name, uint64_t SizeInBits, in createBasicType() function in DIBuilder
/external/llvm/docs/tutorial/
DLangImpl09.rst200 DblTy = DBuilder->createBasicType("double", 64, 64, dwarf::DW_ATE_float);
/external/mesa3d/docs/relnotes/
D18.0.0.rst301 function for call to ‘llvm::DIBuilder::createBasicType(const char
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp524 return DBuilder.createBasicType( in CreateType()
603 return DBuilder.createBasicType(BTName, Size, Align, Encoding); in CreateType()
614 return DBuilder.createBasicType("complex", Size, Align, Encoding); in CreateType()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDIBuilder.cpp260 DIBasicType *DIBuilder::createBasicType(StringRef Name, uint64_t SizeInBits, in createBasicType() function in DIBuilder
DDebugInfo.cpp1014 return wrap(unwrap(Builder)->createBasicType({Name, NameLen}, in LLVMDIBuilderCreateBasicType()