HomeSort by relevance Sort by last modified time
    Searched refs:DIBasicType (Results 1 - 24 of 24) sorted by null

  /external/llvm/include/llvm/IR/
DIBuilder.h 114 DIBasicType *createUnspecifiedType(StringRef Name);
117 DIBasicType *createNullPtrType();
125 DIBasicType *createBasicType(StringRef Name, uint64_t SizeInBits,
433 DIBasicType *createUnspecifiedParameter();
    [all...]
DebugInfoMetadata.h 607 class DIBasicType : public DIType {
613 DIBasicType(LLVMContext &C, StorageType Storage, unsigned Tag,
619 ~DIBasicType() = default;
621 static DIBasicType *getImpl(LLVMContext &Context, unsigned Tag,
628 static DIBasicType *getImpl(LLVMContext &Context, unsigned Tag,
639 DEFINE_MDNODE_GET(DIBasicType, (unsigned Tag, StringRef Name),
641 DEFINE_MDNODE_GET(DIBasicType,
645 DEFINE_MDNODE_GET(DIBasicType,
    [all...]
  /external/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 106 if (auto *BT = dyn_cast<DIBasicType>(T)) {
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 150 const DIBasicType *BT);
CodeViewDebug.h 246 codeview::TypeIndex lowerTypeBasic(const DIBasicType *Ty);
DwarfUnit.h 335 void constructTypeDIE(DIE &Buffer, const DIBasicType *BTy);
DwarfDebug.cpp     [all...]
DwarfUnit.cpp 547 auto *BTy = cast<DIBasicType>(Ty);
716 if (auto *BT = dyn_cast<DIBasicType>(Ty))
793 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DIBasicType *BTy) {
    [all...]
CodeViewDebug.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
DebugInfo.cpp 134 /// DIBasicType.
355 DIBasicType BTy(DbgNode);
395 bool DIBasicType::Verify() const {
681 DIBasicType(DbgNode).print(OS);
695 void DIBasicType::print(raw_ostream &OS) const {
820 void DIBasicType::dump() const {
    [all...]
  /external/llvm/lib/IR/
DIBuilder.cpp 187 DIBasicType *DIBuilder::createUnspecifiedType(StringRef Name) {
189 return DIBasicType::get(VMContext, dwarf::DW_TAG_unspecified_type, Name);
192 DIBasicType *DIBuilder::createNullPtrType() {
196 DIBasicType *DIBuilder::createBasicType(StringRef Name, uint64_t SizeInBits,
200 return DIBasicType::get(VMContext, dwarf::DW_TAG_base_type, Name, SizeInBits,
477 DIBasicType *DIBuilder::createUnspecifiedParameter() { return nullptr; }
    [all...]
DebugInfoMetadata.cpp 230 DIBasicType *DIBasicType::getImpl(LLVMContext &Context, unsigned Tag,
235 DEFINE_GETIMPL_LOOKUP(DIBasicType,
238 DEFINE_GETIMPL_STORE(DIBasicType, (Tag, SizeInBits, AlignInBits, Encoding),
LLVMContextImpl.h 317 template <> struct MDNodeKeyImpl<DIBasicType> {
328 MDNodeKeyImpl(const DIBasicType *N)
332 bool isKeyOf(const DIBasicType *RHS) const {
    [all...]
AsmWriter.cpp     [all...]
Verifier.cpp 820 void Verifier::visitDIBasicType(const DIBasicType &N) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 258 /// constructTypeDIE - Construct basic type die from DIBasicType.
260 DIBasicType BTy);
DwarfCompileUnit.cpp 450 if (DIBasicType(Ty).getEncoding() == dwarf::DW_ATE_signed
451 || DIBasicType(Ty).getEncoding() == dwarf::DW_ATE_signed_char) {
594 constructTypeDIE(*TyDIE, DIBasicType(Ty));
659 /// constructTypeDIE - Construct basic type die from DIBasicType.
660 void CompileUnit::constructTypeDIE(DIE &Buffer, DIBasicType BTy) {
    [all...]
DwarfDebug.cpp     [all...]
  /external/llvm/bindings/go/llvm/
dibuilder.go 276 // DIBasicType holds the values for creating basic type debug metadata.
277 type DIBasicType struct {
285 func (d *DIBuilder) CreateBasicType(t DIBasicType) Metadata {
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DebugInfo.h 321 /// DIBasicType - A basic type, like 'int' or 'float'.
322 class DIBasicType : public DIType {
324 explicit DIBasicType(const MDNode *N = 0) : DIType(N) {}
  /external/llvm/unittests/IR/
MetadataTest.cpp 100 return DIBasicType::get(Context, dwarf::DW_TAG_unspecified_type, Name);
913 DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 33, 26, 7);
920 EXPECT_EQ(N, DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 33,
923 EXPECT_NE(N, DIBasicType::get(Context, dwarf::DW_TAG_unspecified_type,
926 DIBasicType::get(Context, dwarf::DW_TAG_base_type, "s", 33, 26, 7));
927 EXPECT_NE(N, DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 32,
929 EXPECT_NE(N, DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 33,
931 EXPECT_NE(N, DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special", 33,
939 auto *N = DIBasicType::get(Context, dwarf::DW_TAG_base_type, "special",
947 DIBasicType::get(Context, dwarf::DW_TAG_unspecified_type, "unspecified")
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 171 void writeDIBasicType(const DIBasicType *N, SmallVectorImpl<uint64_t> &Record,
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 304 milliseconds