Searched refs:CU (Results 1 - 18 of 18) sorted by relevance

/external/elfutils/tests/
H A Drun-get-pubnames.sh33 CU name: "m.c"
36 CU name: "m.c"
39 CU name: "b.c"
42 CU name: "f.c"
45 CU name: "b.c"
48 CU name: "f.c"
51 CU name: "m.c"
54 CU name: "m.c"
H A Drun-get-aranges.sh33 CU name: "m.c"
34 CU name: "m.c"
35 CU name: "m.c"
38 CU name: "b.c"
39 CU name: "b.c"
40 CU name: "b.c"
43 CU name: "f.c"
44 CU name: "f.c"
45 CU name: "f.c"
48 CU nam
[all...]
H A Drun-show-die-info.sh33 New CU: off = 0, hsize = 11, ab = 0, as = 4, os = 4
37 CU offset : 11
47 CU offset : 104
54 CU offset : 127
57 New CU: off = 135, hsize = 11, ab = 54, as = 4, os = 4
61 CU offset : 11
71 CU offset : 104
78 CU offset : 127
81 New CU: off = 270, hsize = 11, ab = 108, as = 4, os = 4
85 CU offse
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFDebugInfoEntry.cpp465 bool DWARFDebugInfoEntryMinimal::getLowAndHighPC(const DWARFCompileUnit *CU, argument
469 LowPC = getAttributeValueAsUnsigned(CU, DW_AT_low_pc, -1ULL);
471 HighPC = getAttributeValueAsUnsigned(CU, DW_AT_high_pc, -1ULL);
476 DWARFDebugInfoEntryMinimal::buildAddressRangeTable(const DWARFCompileUnit *CU, argument
482 if (getLowAndHighPC(CU, LowPC, HighPC)) {
483 DebugAranges->appendRange(CU->getOffset(), LowPC, HighPC);
490 child->buildAddressRangeTable(CU, DebugAranges);
498 const DWARFCompileUnit *CU,
504 if (getLowAndHighPC(CU, LowPC, HighPC))
507 uint32_t RangesOffset = getAttributeValueAsReference(CU, DW_AT_range
497 addressRangeContainsAddress( const DWARFCompileUnit *CU, const uint64_t Address) const argument
552 getCallerFrame(const DWARFCompileUnit *CU, uint32_t &CallFile, uint32_t &CallLine, uint32_t &CallColumn) const argument
562 getInlinedChainForAddress( const DWARFCompileUnit *CU, const uint64_t Address) const argument
[all...]
H A DDWARFDebugInfoEntry.h138 /// Retrieves DW_AT_low_pc and DW_AT_high_pc from CU.
140 bool getLowAndHighPC(const DWARFCompileUnit *CU,
143 void buildAddressRangeTable(const DWARFCompileUnit *CU,
146 bool addressRangeContainsAddress(const DWARFCompileUnit *CU,
153 const char* getSubroutineName(const DWARFCompileUnit *CU) const;
157 void getCallerFrame(const DWARFCompileUnit *CU, uint32_t &CallFile,
170 InlinedChain getInlinedChainForAddress(const DWARFCompileUnit *CU,
H A DDWARFContext.cpp280 DWARFCompileUnit *CU = std::lower_bound(CUs.begin(), CUs.end(), Offset, local
282 if (CU != CUs.end())
283 return &*CU;
294 static bool getFileNameForCompileUnit(DWARFCompileUnit *CU, argument
299 if (CU == 0 ||
307 if (const char *CompilationDir = CU->getCompilationDir()) {
316 static bool getFileLineInfoForCompileUnit(DWARFCompileUnit *CU, argument
322 if (CU == 0 || LineTable == 0)
330 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
340 DWARFCompileUnit *CU local
375 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); local
431 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); local
[all...]
H A DDWARFCompileUnit.cpp100 << " (next CU at " << format("0x%08x", getNextCompileUnitOffset())
103 const DWARFDebugInfoEntryMinimal *CU = getCompileUnitDIE(false); local
104 assert(CU && "Null Compile Unit?");
105 CU->dump(OS, this, -1U);
186 // Don't append the CU die as we already did that
/external/clang/include/clang/AST/
H A DCharUnits.h190 const clang::CharUnits &CU) {
191 return CU * Scale;
211 static unsigned getHashValue(const clang::CharUnits &CU) { argument
212 clang::CharUnits::QuantityType Quantity = CU.getQuantity();
189 operator *(clang::CharUnits::QuantityType Scale, const clang::CharUnits &CU) argument
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp125 std::string mangleName(DICompileUnit CU, const char *NewStem);
359 std::string GCOVProfiler::mangleName(DICompileUnit CU, const char *NewStem) { argument
367 if (CompileUnit == CU) {
375 SmallString<128> Filename = CU.getFilename();
398 DICompileUnit CU(CU_Nodes->getOperand(i));
400 raw_fd_ostream out(mangleName(CU, "gcno").c_str(), ErrorInfo,
406 DIArray SPs = CU.getSubprograms();
453 DICompileUnit CU(CU_Nodes->getOperand(i));
454 DIArray SPs = CU.getSubprograms();
720 DICompileUnit CU(CU_Node
[all...]
/external/llvm/lib/IR/
H A DDebugInfo.cpp854 DICompileUnit CU(CU_Nodes->getOperand(i));
855 addCompileUnit(CU);
856 DIArray GVs = CU.getGlobalVariables();
862 DIArray SPs = CU.getSubprograms();
865 DIArray EnumTypes = CU.getEnumTypes();
868 DIArray RetainedTypes = CU.getRetainedTypes();
871 // FIXME: We really shouldn't be bailing out after visiting just one CU
962 bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) { argument
963 if (!CU.Verify())
966 if (!NodesSeen.insert(CU))
[all...]
H A DType.cpp658 const ConstantInt *CU = dyn_cast_or_null<ConstantInt>(C); local
659 return CU && CU->getZExtValue() < STy->getNumElements();
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h244 void addUnit(CompileUnit *CU) { CUs.push_back(CU); } argument
H A DDwarfDebug.cpp360 // If AbsSPDIE belongs to a different CU, use DW_FORM_ref_addr instead of
677 // file this CU comes from yet.
727 // Now construct the skeleton CU associated.
784 CompileUnit *CU = constructCompileUnit(CUNode); local
787 CU->createGlobalVariableDIE(GVs.getElement(i));
790 constructSubprogramDIE(CU, SPs.getElement(i));
793 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
796 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
1623 DICompileUnit CU(S);
1624 Fn = CU
[all...]
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp209 DICompileUnit CU(Node);
210 const DIArray &SPs = CU.getSubprograms();
H A DGlobalOpt.cpp180 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
181 if (!SafeToDestroyConstant(CU)) return false;
2414 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo)); local
2415 unsigned Idx = CU->getZExtValue();
/external/llvm/include/llvm/
H A DDebugInfo.h770 bool addCompileUnit(DICompileUnit CU);
/external/clang/lib/CodeGen/
H A DCodeGenModule.cpp2943 llvm::MDNode *CU = CUNode->getOperand(i); local
2944 llvm::Value *node[] = { CoverageFile, CU };
/external/clang/lib/AST/
H A DASTContext.cpp4571 std::string charUnitsToString(const CharUnits &CU) { argument
4572 return llvm::itostr(CU.getQuantity());

Completed in 315 milliseconds