Home
last modified time | relevance | path

Searched refs:getDwarfVersion (Results 1 – 25 of 28) sorted by relevance

12

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp43 : DwarfExpression(AP.getDwarfVersion(), CU), AP(AP), OutDIE(DIE) {} in DIEDwarfExpression()
120 if (DD->getDwarfVersion() >= 3) in getDefaultLowerBound()
125 if (DD->getDwarfVersion() >= 3) in getDefaultLowerBound()
134 if (DD->getDwarfVersion() >= 4) in getDefaultLowerBound()
145 if (DD->getDwarfVersion() >= 4) in getDefaultLowerBound()
163 if (DD->getDwarfVersion() >= 5) in getDefaultLowerBound()
171 if (DD->getDwarfVersion() >= 5) in getDefaultLowerBound()
214 if (DD->getDwarfVersion() >= 4) in addFlag()
303 Asm->OutContext.getDwarfVersion(), File->getSource()); in getOrCreateSourceID()
316 if (DD->getDwarfVersion() >= 5) { in addPoolOpAddress()
[all …]
H A DAddressPool.cpp32 Asm.emitInt16(Asm.getDwarfVersion()); in emitHeader()
51 if (Asm.getDwarfVersion() >= 5) in emit()
H A DDwarfDebug.cpp388 : MMI->getModule()->getDwarfVersion(); in DwarfDebug()
1086 dwarf::Attribute attrDWOName = getDwarfVersion() >= 5 in finishUnitAttributes()
1201 if (getDwarfVersion() >= 5) { in beginModule()
1321 dwarf::Attribute attrDWOName = getDwarfVersion() >= 5 in finalizeModuleInfo()
1332 if (getDwarfVersion() >= 5) { in finalizeModuleInfo()
1342 if (getDwarfVersion() < 5 && !SkeletonHolder.getRangeLists().empty()) { in finalizeModuleInfo()
1373 if ((HasSplitUnit || getDwarfVersion() >= 5) && !AddrPool.isEmpty()) in finalizeModuleInfo()
1376 if (getDwarfVersion() >= 5) { in finalizeModuleInfo()
1398 dwarf::Attribute MacrosAttr = getDwarfVersion() >= 5 in finalizeModuleInfo()
2172 CUID, getDwarfVersion(), getUnits()); in emitInitialLocDirective()
[all …]
H A DDwarfCompileUnit.cpp51 if (DW->getDwarfVersion() >= 5 && Kind == UnitKind::Skeleton) in GetCompileUnitType()
73 if ((!DD->useSplitDwarf() || !Skeleton) && DD->getDwarfVersion() < 5) in addLabelAddress()
86 DD->getDwarfVersion() >= 5 ? dwarf::DW_FORM_addrx in addLabelAddress()
94 assert(DD->getDwarfVersion() >= 5 && in addLabelAddress()
437 if (DD->getDwarfVersion() < 4) in attachLowHighPC()
580 (DD->getDwarfVersion() < 5 && Skeleton ? Skeleton->DU : DU) in addScopeRangeList()
591 if (DD->getDwarfVersion() >= 5) in addScopeRangeList()
678 if (IA->getDiscriminator() && DD->getDwarfVersion() >= 4) in constructInlinedScopeDIE()
1132 DD->getDwarfVersion() <= 4 ? std::optional<dwarf::Form>() in constructAbstractSubprogramScopeDIE()
1140 return DD->getDwarfVersion() == 4 && !DD->tuneForLLDB(); in useGNUAnalogForDwarf5Feature()
[all …]
H A DDwarfUnit.h87 DD->getDwarfVersion() < dwarf::AttributeVersion(Attribute)) in addAttribute()
273 (DD->getDwarfVersion() >= 5 ? sizeof(int8_t) in getHeaderSize()
H A DDwarfStringPool.cpp66 Asm.emitInt16(Asm.getDwarfVersion()); in emitStringOffsetsTableHeader()
H A DDIE.cpp82 AP->getDwarfVersion())) { in Emit()
84 << " for DWARF version " << AP->getDwarfVersion() in Emit()
H A DDwarfCompileUnit.h282 DD->getDwarfVersion() >= 5 && DD->useSplitDwarf() ? sizeof(uint64_t) in getHeaderSize()
H A DDwarfDebug.h760 uint16_t getDwarfVersion() const;
H A DAsmPrinter.cpp502 if (!EmitCodeView || M.getDwarfVersion()) { in doInitialization()
4060 uint16_t AsmPrinter::getDwarfVersion() const { in getDwarfVersion() function in AsmPrinter
4061 return OutStreamer->getContext().getDwarfVersion(); in getDwarfVersion()
4078 return {getDwarfVersion(), uint8_t(getPointerSize()), in getDwarfFormParams()
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCTargetOptionsCommandFlags.h32 int getDwarfVersion();
H A DMCContext.h828 uint16_t getDwarfVersion() const { return DwarfVersion; } in getDwarfVersion() function
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCDwarf.cpp60 S.emitInt16(S.getContext().getDwarfVersion()); in emitListsTableHeaderStart()
209 MCOS->getContext().getDwarfVersion() >= 4) { in emitOne()
268 if (context.getDwarfVersion() >= 5) in emit()
499 unsigned LineTableVersion = context.getDwarfVersion(); in Emit()
781 context.getDwarfVersion() >= 4 in EmitGenDwarfAbbrev()
787 context.getDwarfVersion() >= 3) { in EmitGenDwarfAbbrev()
931 MCOS->emitInt16(context.getDwarfVersion()); in EmitGenDwarfInfo()
937 if (context.getDwarfVersion() >= 5) { in EmitGenDwarfInfo()
949 if (context.getDwarfVersion() <= 4) in EmitGenDwarfInfo()
1082 if (MCOS->getContext().getDwarfVersion() >= 5) { in emitGenDwarfRanges()
[all …]
H A DMCTargetOptionsCommandFlags.cpp130 Options.DwarfVersion = getDwarfVersion(); in InitMCTargetOptionsFromFlags()
H A DMCContext.cpp935 if (getDwarfVersion() >= 5) { in setGenDwarfRootFile()
986 return getDwarfVersion() >= 5; in isValidDwarfFileNumber()
H A DMCAsmStreamer.cpp1581 getContext().getDwarfVersion(), FileNo); in tryEmitDwarfFileDirective()
1611 if (getContext().getDwarfVersion() < 5) in emitDwarfFile0Directive()
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DCommonArgs.h114 unsigned getDwarfVersion(const ToolChain &TC, const llvm::opt::ArgList &Args);
H A DCommonArgs.cpp1636 unsigned tools::getDwarfVersion(const ToolChain &TC, in getDwarfVersion() function in tools
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h248 uint16_t getDwarfVersion() const;
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DModule.h830 unsigned getDwarfVersion() const;
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DModule.cpp556 unsigned Module::getDwarfVersion() const { in getDwarfVersion() function in Module
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Ddecorators.py218 self.getDwarfVersion()))
H A Dlldbtest.py1313 def getDwarfVersion(self): member in Base
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp704 if (getContext().getDwarfVersion() <= 2) in ParseSectionArguments()
H A DAsmParser.cpp3598 if (Ctx.getDwarfVersion() < 5) in parseDirectiveFile()
3642 check(FileNumber < 1 && Ctx.getDwarfVersion() < 5, Loc, in parseDirectiveLoc()

12