Searched refs:CU (Results 1 - 16 of 16) 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 DDWARFContext.cpp152 DWARFCompileUnit *CU = std::lower_bound(CUs.begin(), CUs.end(), Offset, local
154 if (CU != CUs.end())
155 return &*CU;
167 DWARFCompileUnit *CU, const DWARFDebugLine::LineTable *LineTable,
169 if (CU == 0 ||
177 if (const char *CompilationDir = CU->getCompilationDir()) {
187 DWARFCompileUnit *CU, const DWARFDebugLine::LineTable *LineTable,
190 if (CU == 0 || LineTable == 0)
198 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
208 DWARFCompileUnit *CU local
166 getFileNameForCompileUnit( DWARFCompileUnit *CU, const DWARFDebugLine::LineTable *LineTable, uint64_t FileIndex, bool NeedsAbsoluteFilePath, std::string &FileName) argument
186 getFileLineInfoForCompileUnit( DWARFCompileUnit *CU, const DWARFDebugLine::LineTable *LineTable, uint64_t Address, bool NeedsAbsoluteFilePath, std::string &FileName, uint32_t &Line, uint32_t &Column) argument
242 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); local
[all...]
H A DDWARFDebugInfoEntry.cpp459 bool DWARFDebugInfoEntryMinimal::getLowAndHighPC(const DWARFCompileUnit *CU, argument
462 LowPC = getAttributeValueAsUnsigned(CU, DW_AT_low_pc, -1ULL);
464 HighPC = getAttributeValueAsUnsigned(CU, DW_AT_high_pc, -1ULL);
469 DWARFDebugInfoEntryMinimal::buildAddressRangeTable(const DWARFCompileUnit *CU, argument
475 if (getLowAndHighPC(CU, LowPC, HighPC)) {
476 DebugAranges->appendRange(CU->getOffset(), LowPC, HighPC);
483 child->buildAddressRangeTable(CU, DebugAranges);
491 const DWARFCompileUnit *CU, const uint64_t Address) const {
495 if (getLowAndHighPC(CU, LowPC, HighPC))
498 uint32_t RangesOffset = getAttributeValueAsReference(CU, DW_AT_range
490 addressRangeContainsAddress( const DWARFCompileUnit *CU, const uint64_t Address) const argument
543 getCallerFrame( const DWARFCompileUnit *CU, uint32_t &CallFile, uint32_t &CallLine, uint32_t &CallColumn) const argument
552 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 DDWARFCompileUnit.cpp103 << " (next CU at " << format("0x%08x", getNextCompileUnitOffset())
106 const DWARFDebugInfoEntryMinimal *CU = getCompileUnitDIE(false); local
107 assert(CU && "Null Compile Unit?");
108 CU->dump(OS, this, -1U);
189 // Don't append the CU die as we already did that
/external/clang/include/clang/AST/
H A DCharUnits.h179 const clang::CharUnits &CU) {
180 return CU * Scale;
200 static unsigned getHashValue(const clang::CharUnits &CU) { argument
201 clang::CharUnits::QuantityType Quantity = CU.getQuantity();
178 operator *(clang::CharUnits::QuantityType Scale, const clang::CharUnits &CU) argument
/external/llvm/lib/VMCore/
H A DDebugInfo.cpp789 DICompileUnit CU(CU_Nodes->getOperand(i));
790 addCompileUnit(CU);
791 if (CU.getVersion() > LLVMDebugVersion10) {
792 DIArray GVs = CU.getGlobalVariables();
798 DIArray SPs = CU.getSubprograms();
801 DIArray EnumTypes = CU.getEnumTypes();
804 DIArray RetainedTypes = CU.getRetainedTypes();
948 bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) { argument
949 if (!CU.Verify())
952 if (!NodesSeen.insert(CU))
[all...]
H A DType.cpp677 if (const ConstantInt *CU = dyn_cast<ConstantInt>(V))
678 return CU->getZExtValue() < STy->getNumElements();
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp94 std::string mangleName(DICompileUnit CU, const char *NewStem);
331 std::string GCOVProfiler::mangleName(DICompileUnit CU, const char *NewStem) { argument
339 if (CompileUnit == CU) {
347 SmallString<128> Filename = CU.getFilename();
370 DICompileUnit CU(CU_Nodes->getOperand(i));
372 raw_fd_ostream out(mangleName(CU, "gcno").c_str(), ErrorInfo,
379 DIArray SPs = CU.getSubprograms();
426 DICompileUnit CU(CU_Nodes->getOperand(i));
427 DIArray SPs = CU.getSubprograms();
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp660 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
661 constructSubprogramDIE(CU, N);
667 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
668 CU->createGlobalVariableDIE(N);
674 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
675 CU->getOrCreateTypeDIE(Ty);
681 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
682 CU->getOrCreateTypeDIE(Ty);
713 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
714 CU
741 CompileUnit *CU = constructCompileUnit(CUNode); local
[all...]
/external/llvm/include/llvm/
H A DDebugInfo.h848 bool addCompileUnit(DICompileUnit CU);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp184 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
185 if (!SafeToDestroyConstant(CU)) return false;
2403 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo)); local
2404 unsigned Idx = CU->getZExtValue();
/external/clang/lib/CodeGen/
H A DCodeGenModule.cpp2740 llvm::MDNode *CU = CUNode->getOperand(i); local
2741 llvm::Value *node[] = { CoverageFile, CU };
/external/clang/lib/AST/
H A DASTContext.cpp4390 std::string charUnitsToString(const CharUnits &CU) { argument
4391 return llvm::itostr(CU.getQuantity());

Completed in 1547 milliseconds