HomeSort by: relevance | last modified time | path
    Searched defs:CUs (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugInfo.h 89 /// used by the CUs.
130 return make_range(CUs.begin(), CUs.end());
149 unsigned compile_unit_count() const { return CUs.size(); }
156 SmallVector<DICompileUnit *, 8> CUs;
Module.h 722 NamedMDNode *CUs;
734 explicit debug_compile_units_iterator(NamedMDNode *CUs, unsigned Idx)
735 : CUs(CUs), Idx(Idx) {
764 auto *CUs = getNamedMetadata("llvm.dbg.cu");
765 return debug_compile_units_iterator(CUs, 0);
769 auto *CUs = getNamedMetadata("llvm.dbg.cu");
770 return debug_compile_units_iterator(CUs, CUs ? CUs->getNumOperands() : 0)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.h 59 SmallVector<std::unique_ptr<DwarfCompileUnit>, 1> CUs;
94 /// be shared across CUs, that is why we keep the map here instead
102 return CUs;
123 /// Add a unit to the list of CUs.
CodeViewDebug.cpp 800 NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
801 const MDNode *Node = *CUs->operands().begin();
860 NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
861 const MDNode *Node = *CUs->operands().begin(); // FIXME: Multiple CUs.
3057 NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
3058 for (const MDNode *Node : CUs->operands()) {
3141 NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
3142 for (const MDNode *Node : CUs->operands()) {
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 610 const auto &CUs = compile_units();
611 auto I = CUs.begin();
612 if (I == CUs.end())
706 // If there's no index, just search through the CUs in the DWO - there's
709 // lookups of different CUs in the DWO.
831 // which isn't specified in DWARF in general. It's only specified for CUs, but
2013 auto CUs = compile_units();
2014 return CUs.empty() ? 0 : (*CUs.begin())->getAddressByteSize();

Completed in 46 milliseconds