HomeSort by relevance Sort by last modified time
    Searched refs:CU (Results 1 - 19 of 19) 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/
DWARFDebugInfoEntry.cpp 23 const DWARFCompileUnit *cu,
26 DataExtractor debug_info_data = cu->getDebugInfoExtractor();
48 dumpAttribute(OS, cu, &offset, attr, form, indent);
54 child->dump(OS, cu, recurseDepth-1, indent+2);
69 const DWARFCompileUnit *cu,
89 if (!formValue.extractValue(cu->getDebugInfoExtractor(), offset_ptr, cu))
93 formValue.dump(OS, cu);
97 bool DWARFDebugInfoEntryMinimal::extractFast(const DWARFCompileUnit *cu,
102 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...]
DWARFContext.cpp 52 DWARFCompileUnit *cu = getCompileUnitAtIndex(i); local
53 savedAddressByteSize = cu->getAddressByteSize();
55 cu->getCompileUnitDIE()->getAttributeValueAsUnsigned(cu, DW_AT_stmt_list,
199 DWARFContext::getLineTableForCompileUnit(DWARFCompileUnit *cu) {
204 cu->getCompileUnitDIE()->getAttributeValueAsUnsigned(cu, DW_AT_stmt_list,
215 cu->getAddressByteSize());
280 DWARFCompileUnit *CU = std::lower_bound(CUs.begin(), CUs.end(), Offset,
282 if (CU != CUs.end()
    [all...]
DWARFCompileUnit.cpp 100 << " (next CU at " << format("0x%08x", getNextCompileUnitOffset())
103 const DWARFDebugInfoEntryMinimal *CU = getCompileUnitDIE(false);
104 assert(CU && "Null Compile Unit?");
105 CU->dump(OS, this, -1U);
186 // Don't append the CU die as we already did that
212 "bounds cu 0x%8.8x at 0x%8.8x'\n", getOffset(), offset);
  /external/clang/include/clang/AST/
CharUnits.h 190 const clang::CharUnits &CU) {
191 return CU * Scale;
211 static unsigned getHashValue(const clang::CharUnits &CU) {
212 clang::CharUnits::QuantityType Quantity = CU.getQuantity();
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 125 std::string mangleName(DICompileUnit CU, const char *NewStem);
359 std::string GCOVProfiler::mangleName(DICompileUnit CU, const char *NewStem) {
367 if (CompileUnit == CU) {
375 SmallString<128> Filename = CU.getFilename();
390 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
398 DICompileUnit CU(CU_Nodes->getOperand(i));
400 raw_fd_ostream out(mangleName(CU, "gcno").c_str(), ErrorInfo,
406 DIArray SPs = CU.getSubprograms();
447 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
453 DICompileUnit CU(CU_Nodes->getOperand(i))
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp 852 if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) {
854 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) {
963 if (!CU.Verify()
    [all...]
Type.cpp 658 const ConstantInt *CU = dyn_cast_or_null<ConstantInt>(C);
659 return CU && 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/CodeGen/AsmPrinter/
DwarfDebug.h 244 void addUnit(CompileUnit *CU) { CUs.push_back(CU); }
DwarfDebug.cpp 360 // 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.
775 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
784 CompileUnit *CU = constructCompileUnit(CUNode);
787 CU->createGlobalVariableDIE(GVs.getElement(i));
790 constructSubprogramDIE(CU, SPs.getElement(i));
793 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
796 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
828 if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 209 DICompileUnit CU(Node);
210 const DIArray &SPs = CU.getSubprograms();
    [all...]
GlobalOpt.cpp 180 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
181 if (!SafeToDestroyConstant(CU)) return false;
    [all...]
  /external/llvm/include/llvm/
DebugInfo.h 770 bool addCompileUnit(DICompileUnit CU);
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 750 milliseconds