/external/llvm/lib/DebugInfo/ |
D | DWARFContext.cpp | 76 for (const auto &CU : compile_units()) in dump() local 77 CU->dump(OS); in dump() 127 for (const auto &CU : compile_units()) { in dump() local 128 savedAddressByteSize = CU->getAddressByteSize(); in dump() 130 CU->getCompileUnitDIE()->getAttributeValueAsSectionOffset( in dump() 131 CU.get(), DW_AT_stmt_list, -1U); in dump() 321 std::unique_ptr<DWARFCompileUnit> CU(new DWARFCompileUnit( in parseCompileUnits() local 325 if (!CU->extract(DIData, &offset)) { in parseCompileUnits() 328 CUs.push_back(std::move(CU)); in parseCompileUnits() 413 std::unique_ptr<DWARFCompileUnit> *CU = in getCompileUnitForOffset() local [all …]
|
D | DWARFCompileUnit.cpp | 25 const DWARFDebugInfoEntryMinimal *CU = getCompileUnitDIE(false); in dump() local 26 assert(CU && "Null Compile Unit?"); in dump() 27 CU->dump(OS, this, -1U); in dump()
|
D | DWARFTypeUnit.cpp | 36 const DWARFDebugInfoEntryMinimal *CU = getCompileUnitDIE(false); in dump() local 37 assert(CU && "Null Compile Unit?"); in dump() 38 CU->dump(OS, this, -1U); in dump()
|
D | DWARFDebugAranges.cpp | 50 for (const auto &CU : CTX->compile_units()) { in generate() local 51 uint32_t CUOffset = CU->getOffset(); in generate() 54 CU->collectAddressRanges(CURanges); in generate()
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
D | AArch64AsmBackend.cpp | 262 namespace CU { namespace 359 return CU::UNWIND_AArch64_MODE_FRAMELESS; in generateCompactUnwindEncoding() 371 return CU::UNWIND_AArch64_MODE_DWARF; in generateCompactUnwindEncoding() 396 CompactUnwindEncoding |= CU::UNWIND_AArch64_MODE_FRAME; in generateCompactUnwindEncoding() 410 return CU::UNWIND_AArch64_MODE_DWARF; in generateCompactUnwindEncoding() 414 return CU::UNWIND_AArch64_MODE_DWARF; in generateCompactUnwindEncoding() 430 CompactUnwindEncoding |= CU::UNWIND_AArch64_FRAME_X19_X20_PAIR; in generateCompactUnwindEncoding() 433 CompactUnwindEncoding |= CU::UNWIND_AArch64_FRAME_X21_X22_PAIR; in generateCompactUnwindEncoding() 436 CompactUnwindEncoding |= CU::UNWIND_AArch64_FRAME_X23_X24_PAIR; in generateCompactUnwindEncoding() 439 CompactUnwindEncoding |= CU::UNWIND_AArch64_FRAME_X25_X26_PAIR; in generateCompactUnwindEncoding() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | compact-unwind.ll | 4 ; RUN: | FileCheck -check-prefix=CU %s 20 ; CU: Contents of section __compact_unwind: 21 ; CU-NEXT: 0020 00000000 00000000 1e000000 01000101 22 ; CU-NEXT: 0030 00000000 00000000 00000000 00000000
|
D | no-compact-unwind.ll | 3 ; RUN: | FileCheck -check-prefix=CU %s 22 ; CU: Contents of section __compact_unwind: 23 ; CU-NEXT: 0048 00000000 00000000 42000000 00000004 24 ; CU-NEXT: 0058 00000000 00000000 00000000 00000000
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86AsmBackend.cpp | 404 namespace CU { namespace 528 return CU::UNWIND_MODE_DWARF; in generateCompactUnwindEncodingImpl() 544 return CU::UNWIND_MODE_DWARF; in generateCompactUnwindEncodingImpl() 548 if (RegEnc == ~0U) return CU::UNWIND_MODE_DWARF; in generateCompactUnwindEncodingImpl() 550 CompactUnwindEncoding |= CU::UNWIND_MODE_BP_FRAME; in generateCompactUnwindEncodingImpl() 552 CompactUnwindEncoding |= RegEnc & CU::UNWIND_BP_FRAME_REGISTERS; in generateCompactUnwindEncodingImpl() 562 return CU::UNWIND_MODE_DWARF; in generateCompactUnwindEncodingImpl() 569 CompactUnwindEncoding |= CU::UNWIND_MODE_STACK_IMMD; in generateCompactUnwindEncodingImpl() 576 return CU::UNWIND_MODE_DWARF; in generateCompactUnwindEncodingImpl() 579 CompactUnwindEncoding |= CU::UNWIND_MODE_STACK_IND; in generateCompactUnwindEncodingImpl() [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfDebug.h | 146 SymbolCU(DwarfCompileUnit *CU, const MCSymbol *Sym) : Sym(Sym), CU(CU) {} in SymbolCU() 148 DwarfCompileUnit *CU; member 483 DwarfCompileUnit &constructSkeletonCU(const DwarfCompileUnit &CU); 598 void addDwarfTypeUnitType(DwarfCompileUnit &CU, StringRef Identifier, 659 DwarfCompileUnit *lookupUnit(const DIE *CU) const { in lookupUnit() argument 660 return CUDieMap.lookup(CU); in lookupUnit()
|
D | DwarfDebug.cpp | 749 DwarfCompileUnit &CU = constructDwarfCompileUnit(CUNode); in beginModule() local 759 CU.createGlobalVariableDIE(DIGlobalVariable(GVs.getElement(i))); in beginModule() 762 SPMap.insert(std::make_pair(SPs.getElement(i), &CU)); in beginModule() 765 CU.getOrCreateTypeDIE(EnumTypes.getElement(i)); in beginModule() 772 CU.getOrCreateTypeDIE(UniqueTy); in beginModule() 777 constructImportedEntityDIE(CU, ImportedEntities.getElement(i)); in beginModule() 1828 static dwarf::PubIndexEntryDescriptor computeIndexValue(DwarfUnit *CU, in computeIndexValue() argument 1848 dwarf::GIEK_TYPE, CU->getLanguage() != dwarf::DW_LANG_C_plus_plus in computeIndexValue() 2042 const DwarfCompileUnit *CU = Entry.getCU(); in emitDebugLoc() local 2043 if (CU->getRanges().size() == 1) { in emitDebugLoc() [all …]
|
D | DIE.cpp | 384 DwarfCompileUnit *CU = DD->lookupUnit(Entry.getUnit()); in EmitValue() local 385 assert(CU && "CUDie should belong to a CU."); in EmitValue() 386 Addr += CU->getDebugInfoOffset(); in EmitValue() 388 AP->EmitLabelPlusOffset(CU->getSectionSym(), Addr, in EmitValue() 391 AP->EmitLabelOffsetDifference(CU->getSectionSym(), Addr, in EmitValue() 392 CU->getSectionSym(), in EmitValue()
|
D | DwarfUnit.h | 144 DwarfUnit(unsigned UID, dwarf::Tag, DICompileUnit CU, AsmPrinter *A, 563 DwarfCompileUnit &CU; variable 567 DwarfTypeUnit(unsigned UID, DwarfCompileUnit &CU, AsmPrinter *A, 582 DwarfCompileUnit &getCU() override { return CU; } in getCU()
|
/external/clang/include/clang/AST/ |
D | CharUnits.h | 184 const clang::CharUnits &CU) { 185 return CU * Scale; 205 static unsigned getHashValue(const clang::CharUnits &CU) { 206 clang::CharUnits::QuantityType Quantity = CU.getQuantity();
|
/external/llvm/lib/Analysis/ |
D | ModuleDebugInfoPrinter.cpp | 59 for (DICompileUnit CU : Finder.compile_units()) { in print() local 61 CU.print(O); in print()
|
/external/llvm/unittests/Transforms/DebugIR/ |
D | DebugIR.cpp | 282 DICompileUnit CU(*Finder.compile_units().begin()); in TEST_F() local 285 ASSERT_EQ(Filename, CU.getFilename()); in TEST_F() 286 ASSERT_EQ(cwd, CU.getDirectory()); in TEST_F() 287 ASSERT_EQ(Producer, CU.getProducer()); in TEST_F()
|
/external/llvm/lib/IR/ |
D | DebugInfo.cpp | 961 DICompileUnit CU(CU_Nodes->getOperand(CUi)); in generateDITypeIdentifierMap() local 962 DIArray Retain = CU.getRetainedTypes(); in generateDITypeIdentifierMap() 1010 DICompileUnit CU(CU_Nodes->getOperand(i)); in processModule() local 1011 addCompileUnit(CU); in processModule() 1012 DIArray GVs = CU.getGlobalVariables(); in processModule() 1020 DIArray SPs = CU.getSubprograms(); in processModule() 1023 DIArray EnumTypes = CU.getEnumTypes(); in processModule() 1026 DIArray RetainedTypes = CU.getRetainedTypes(); in processModule() 1029 DIArray Imports = CU.getImportedEntities(); in processModule() 1171 bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) { in addCompileUnit() argument [all …]
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | GCOVProfiling.cpp | 131 std::string mangleName(DICompileUnit CU, const char *NewStem); 417 std::string GCOVProfiler::mangleName(DICompileUnit CU, const char *NewStem) { in mangleName() argument 425 if (CompileUnit == CU) { in mangleName() 433 SmallString<128> Filename = CU.getFilename(); in mangleName() 482 DICompileUnit CU(CU_Nodes->getOperand(i)); in emitProfileNotes() local 484 raw_fd_ostream out(mangleName(CU, "gcno").c_str(), ErrorInfo, in emitProfileNotes() 488 DIArray SPs = CU.getSubprograms(); in emitProfileNotes() 569 DICompileUnit CU(CU_Nodes->getOperand(i)); in emitProfileArcs() local 570 DIArray SPs = CU.getSubprograms(); in emitProfileArcs() 850 DICompileUnit CU(CU_Nodes->getOperand(i)); in insertCounterWriteout() local [all …]
|
D | DebugIR.cpp | 299 DICompileUnit CU(CUNode); in createCompileUnit() local 301 LexicalBlockFileNode = Builder.createLexicalBlockFile(CU, DIFile(FileNode)); in createCompileUnit() 477 DICompileUnit CU(CUNode->getOperand(0)); in getSourceInfoFromDI() local 478 if (!CU.Verify()) in getSourceInfoFromDI() 481 Filename = CU.getFilename(); in getSourceInfoFromDI() 482 Directory = CU.getDirectory(); in getSourceInfoFromDI()
|
/external/llvm/test/DebugInfo/X86/ |
D | dwarf-aranges.ll | 16 ; <data section> - it should have made one span covering all vars in this CU. 21 ; <text section> - it should have made one span covering all functions in this CU. 26 ; <other sections> - it should have made one span covering all vars in this CU.
|
D | multiple-aranges.ll | 3 ; First CU 16 ; Second CU
|
/external/llvm/test/DebugInfo/ |
D | lto-comp-dir.ll | 6 ; If multiple line tables are emitted, one per CU, those line tables can 7 ; unambiguously rely on the comp_dir of their owning CU and use directory '0' 23 ; interpretations depending on which CU lead to the table - so ensure that
|
/external/llvm/lib/Transforms/Utils/ |
D | GlobalStatus.cpp | 39 if (const Constant *CU = dyn_cast<Constant>(U)) { in isSafeToDestroyConstant() local 40 if (!isSafeToDestroyConstant(CU)) in isSafeToDestroyConstant()
|
/external/chromium_org/third_party/icu/source/data/region/ |
D | ps.txt | 25 CU{"کیوبا"}
|
/external/icu/icu4c/source/data/region/ |
D | ps.txt | 25 CU{"کیوبا"}
|
/external/elfutils/0.153/libdw/ |
D | ChangeLog | 132 we don't repeat a CU lookup we've already done. Handle 158 Use .debug_types when CU is a TU. 414 * dwarf_getsrc_file.c: Ignore a CU that just has no DW_AT_stmt_list. 415 Fix loop iteration after skipping a bogus or useless CU. 428 reject others when CU's version > 3. 555 return value and OFFSET argument, not CU-relative. Only fetch the 561 DW_AT_macro_info attribute of CU DIE. 721 needs to check CU->version. 815 address when the CU is missing attributes due to buggy GCC. 874 * dwarf_ranges.c: Copy CU base address-finding code from [all …]
|