HomeSort by: relevance | last modified time | path
    Searched refs:DIBasicType (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DIBuilder.h 187 DIBasicType *createUnspecifiedType(StringRef Name);
190 DIBasicType *createNullPtrType();
198 DIBasicType *createBasicType(StringRef Name, uint64_t SizeInBits,
595 DIBasicType *createUnspecifiedParameter();
DebugInfoMetadata.h 769 class DIBasicType : public DIType {
775 DIBasicType(LLVMContext &C, StorageType Storage, unsigned Tag,
781 ~DIBasicType() = default;
783 static DIBasicType *getImpl(LLVMContext &Context, unsigned Tag,
792 static DIBasicType *getImpl(LLVMContext &Context, unsigned Tag,
804 DEFINE_MDNODE_GET(DIBasicType, (unsigned Tag, StringRef Name),
806 DEFINE_MDNODE_GET(DIBasicType,
809 DEFINE_MDNODE_GET(DIBasicType,
812 DEFINE_MDNODE_GET(DIBasicType,
816 DEFINE_MDNODE_GET(DIBasicType,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 112 if (auto *BT = dyn_cast<DIBasicType>(T)) {
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir_test.go 110 voidInfo := d.CreateBasicType(DIBasicType{Name: "void"})
dibuilder.go 292 // DIBasicType holds the values for creating basic type debug metadata.
293 type DIBasicType struct {
300 func (d *DIBuilder) CreateBasicType(t DIBasicType) Metadata {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 228 const DIBasicType *BT,
DebugHandlerBase.cpp 213 auto *BTy = cast<DIBasicType>(Ty);
CodeViewDebug.h 401 codeview::TypeIndex lowerTypeBasic(const DIBasicType *Ty);
DwarfUnit.h 314 void constructTypeDIE(DIE &Buffer, const DIBasicType *BTy);
DwarfDebug.h 847 static void emitDebugLocValue(const AsmPrinter &AP, const DIBasicType *BT,
DwarfCompileUnit.cpp 760 const DIBasicType *BT = dyn_cast<DIBasicType>(
DwarfDebug.cpp 1856 // If the variable has a DIBasicType, extract it. Basic types cannot have
1859 const DIBasicType *BT = dyn_cast<DIBasicType>(
2485 void DwarfDebug::emitDebugLocValue(const AsmPrinter &AP, const DIBasicType *BT,
2582 const DIBasicType *BT,
DwarfUnit.cpp 575 if (auto *BT = dyn_cast<DIBasicType>(Ty))
686 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DIBasicType *BTy) {
CodeViewDebug.cpp 1545 return lowerTypeBasic(cast<DIBasicType>(Ty));
1653 TypeIndex CodeViewDebug::lowerTypeBasic(const DIBasicType *Ty) {
3211 auto *BTy = cast<DIBasicType>(Ty);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DIBuilder.cpp 253 DIBasicType *DIBuilder::createUnspecifiedType(StringRef Name) {
255 return DIBasicType::get(VMContext, dwarf::DW_TAG_unspecified_type, Name);
258 DIBasicType *DIBuilder::createNullPtrType() {
262 DIBasicType *DIBuilder::createBasicType(StringRef Name, uint64_t SizeInBits,
266 return DIBasicType::get(VMContext, dwarf::DW_TAG_base_type, Name, SizeInBits,
606 DIBasicType *DIBuilder::createUnspecifiedParameter() { return nullptr; }
DebugInfoMetadata.cpp 540 DIBasicType *DIBasicType::getImpl(LLVMContext &Context, unsigned Tag,
546 DEFINE_GETIMPL_LOOKUP(DIBasicType,
549 DEFINE_GETIMPL_STORE(DIBasicType, (Tag, SizeInBits, AlignInBits, Encoding,
553 Optional<DIBasicType::Signedness> DIBasicType::getSignedness() const {
LLVMContextImpl.h 401 template <> struct MDNodeKeyImpl<DIBasicType> {
413 MDNodeKeyImpl(const DIBasicType *N)
417 bool isKeyOf(const DIBasicType *RHS) const {
Verifier.cpp 1001 void Verifier::visitDIBasicType(const DIBasicType &N) {
1040 auto *Basic = dyn_cast_or_null<DIBasicType>(T);
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTFDebug.h 285 void visitBasicType(const DIBasicType *BTy, uint32_t &TypeId);
BPFAbstractMemberAccess.cpp 664 const auto *BTy = dyn_cast<DIBasicType>(BaseTy);
671 BTy = dyn_cast<DIBasicType>(BaseTy);
BTFDebug.cpp 426 void BTFDebug::visitBasicType(const DIBasicType *BTy, uint32_t &TypeId) {
436 // Create a BTF type instance for this DIBasicType and put it into
669 if (const auto *BTy = dyn_cast<DIBasicType>(Ty))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Debugify.cpp 660 if (Signedness && *Signedness == DIBasicType::Signedness::Signed)
Local.cpp 2053 bool Signed = *Signedness == DIBasicType::Signedness::Signed;
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
MetadataLoader.cpp 1418 GET_OR_DISTINCT(DIBasicType,
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 308 void writeDIBasicType(const DIBasicType *N, SmallVectorImpl<uint64_t> &Record,
1632 void ModuleBitcodeWriter::writeDIBasicType(const DIBasicType *N,

Completed in 76 milliseconds

1 2