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

  /external/elfutils/tests/
run-get-pubnames.sh 32 [ 0] "main", die: 104, cu: 11
33 CU name: "m.c"
35 [ 1] "a", die: 174, cu: 11
36 CU name: "m.c"
38 [ 2] "bar", die: 295, cu: 202
39 CU name: "b.c"
41 [ 3] "foo", die: 5721, cu: 5628
42 CU name: "f.c"
44 [ 0] "bar", die: 72, cu: 11
45 CU name: "b.c
    [all...]
run-get-aranges.sh 33 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"
47 [ 0] start: 0x804842c, length: 46, cu: 1
    [all...]
run-show-die-info.sh 33 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 offset : 1
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 38 DWARFCompileUnit *cu = getCompileUnitAtIndex(i); local
39 savedAddressByteSize = cu->getAddressByteSize();
41 cu->getCompileUnitDIE()->getAttributeValueAsUnsigned(cu, DW_AT_stmt_list,
98 DWARFContext::getLineTableForCompileUnit(DWARFCompileUnit *cu) {
103 cu->getCompileUnitDIE()->getAttributeValueAsUnsigned(cu, DW_AT_stmt_list,
114 cu->getAddressByteSize());
152 DWARFCompileUnit *CU = std::lower_bound(CUs.begin(), CUs.end(), Offset,
154 if (CU != CUs.end()
    [all...]
DWARFDebugInfoEntry.cpp 22 const DWARFCompileUnit *cu,
25 DataExtractor debug_info_data = cu->getDebugInfoExtractor();
47 dumpAttribute(OS, cu, &offset, attr, form, indent);
53 child->dump(OS, cu, recurseDepth-1, indent+2);
68 const DWARFCompileUnit *cu,
88 if (!formValue.extractValue(cu->getDebugInfoExtractor(), offset_ptr, cu))
92 formValue.dump(OS, cu);
96 bool DWARFDebugInfoEntryMinimal::extractFast(const DWARFCompileUnit *cu,
101 DataExtractor debug_info_data = cu->getDebugInfoExtractor()
    [all...]
DWARFDebugInfoEntry.h 42 void dump(raw_ostream &OS, const DWARFCompileUnit *cu,
44 void dumpAttribute(raw_ostream &OS, const DWARFCompileUnit *cu,
48 bool extractFast(const DWARFCompileUnit *cu, const uint8_t *fixed_form_sizes,
53 bool extract(const DWARFCompileUnit *cu, uint32_t *offset_ptr);
118 uint32_t getAttributeValue(const DWARFCompileUnit *cu,
122 const char* getAttributeValueAsString(const DWARFCompileUnit* cu,
126 uint64_t getAttributeValueAsUnsigned(const DWARFCompileUnit *cu,
130 uint64_t getAttributeValueAsReference(const DWARFCompileUnit *cu,
134 int64_t getAttributeValueAsSigned(const DWARFCompileUnit* cu,
138 /// Retrieves DW_AT_low_pc and DW_AT_high_pc from CU
    [all...]
DWARFCompileUnit.cpp 103 << " (next CU at " << format("0x%08x", getNextCompileUnitOffset())
106 const DWARFDebugInfoEntryMinimal *CU = getCompileUnitDIE(false);
107 assert(CU && "Null Compile Unit?");
108 CU->dump(OS, this, -1U);
189 // Don't append the CU die as we already did that
215 "bounds cu 0x%8.8x at 0x%8.8x'\n", getOffset(), offset);
  /external/clang/include/clang/AST/
CharUnits.h 179 const clang::CharUnits &CU) {
180 return CU * Scale;
200 static unsigned getHashValue(const clang::CharUnits &CU) {
201 clang::CharUnits::QuantityType Quantity = CU.getQuantity();
  /external/llvm/lib/VMCore/
DebugInfo.cpp 787 if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) {
789 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) {
949 if (!CU.Verify()
    [all...]
Type.cpp 677 if (const ConstantInt *CU = dyn_cast<ConstantInt>(V))
678 return CU->getZExtValue() < STy->getNumElements();
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 103 FE, CO, NI, CU, ZN, GA, GE, AS, SE, BR, KR, RB, SR, Y, ZR, NB, MO, TC, RU, RH, PD, AG, CD,
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 94 std::string mangleName(DICompileUnit CU, const char *NewStem);
331 std::string GCOVProfiler::mangleName(DICompileUnit CU, const char *NewStem) {
339 if (CompileUnit == CU) {
347 SmallString<128> Filename = CU.getFilename();
362 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
370 DICompileUnit CU(CU_Nodes->getOperand(i));
372 raw_fd_ostream out(mangleName(CU, "gcno").c_str(), ErrorInfo,
379 DIArray SPs = CU.getSubprograms();
420 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
426 DICompileUnit CU(CU_Nodes->getOperand(i))
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 660 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->createGlobalVariableDIE(N)
    [all...]
  /external/llvm/include/llvm/
DebugInfo.h 848 bool addCompileUnit(DICompileUnit CU);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 184 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
185 if (!SafeToDestroyConstant(CU)) return false;
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 356 milliseconds