Home
last modified time | relevance | path

Searched refs:DwarfVersion (Results 1 – 16 of 16) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.h113 unsigned DwarfVersion; variable
203 DwarfExpression(unsigned DwarfVersion) : DwarfVersion(DwarfVersion) {} in DwarfExpression() argument
264 DebugLocDwarfExpression(unsigned DwarfVersion, ByteStreamer &BS) in DebugLocDwarfExpression() argument
265 : DwarfExpression(DwarfVersion), BS(BS) {} in DebugLocDwarfExpression()
H A DDwarfDebug.cpp303 if (DwarfVersion >= 5) in computeAccelTableKind()
351 DwarfVersion = in DwarfDebug()
352 TT.isNVPTX() ? 2 : (DwarfVersion ? DwarfVersion : dwarf::DWARF_VERSION); in DwarfDebug()
374 UseGNUTLSOpcode = tuneForGDB() || DwarfVersion < 3; in DwarfDebug()
383 UseSegmentedStringOffsetsTable = DwarfVersion >= 5; in DwarfDebug()
2293 auto DwarfVersion = DD.getDwarfVersion(); in emitRangeList() local
2322 if (DwarfVersion >= 5) { in emitRangeList()
2333 } else if (BaseIsSet && DwarfVersion < 5) { in emitRangeList()
2346 if (DwarfVersion >= 5) { in emitRangeList()
2358 } else if (DwarfVersion >= 5) { in emitRangeList()
[all …]
H A DDwarfExpression.cpp182 if (DwarfVersion >= 4) in addStackValue()
256 if (DwarfVersion < 4) in addMachineRegExpression()
/freebsd-12.1/contrib/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp380 unsigned DwarfVersion = MCOptions.DwarfVersion ? MCOptions.DwarfVersion : 4; in main() local
381 if (DwarfVersion < 2 || DwarfVersion > 5) { in main()
382 errs() << ProgName << ": Dwarf version " << DwarfVersion in main()
386 Ctx.setDwarfVersion(DwarfVersion); in main()
405 if (GenDwarfForAssembly && DwarfVersion >= 5) { in main()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFExpression.h54 enum DwarfVersion : uint8_t { enum
63 DwarfVersion Version; ///< Dwarf version where the Op was introduced.
66 Description(DwarfVersion Version = DwarfNA, Encoding Op1 = SizeNA,
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCTargetOptionsCommandFlags.inc43 static cl::opt<int> DwarfVersion("dwarf-version", cl::desc("Dwarf version"),
71 Options.DwarfVersion = DwarfVersion;
H A DMCTargetOptions.h61 int DwarfVersion = 0; variable
H A DMCContext.h179 uint16_t DwarfVersion = 4; variable
627 void setDwarfVersion(uint16_t v) { DwarfVersion = v; } in setDwarfVersion()
628 uint16_t getDwarfVersion() const { return DwarfVersion; } in getDwarfVersion()
/freebsd-12.1/contrib/llvm/tools/clang/tools/driver/
H A Dcc1as_main.cpp94 unsigned DwarfVersion; member
157 DwarfVersion = 0; in AssemblerInvocation()
234 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 2, Diags); in CreateFromArgs()
402 Ctx.setDwarfVersion(Opts.DwarfVersion); in ExecuteAssembler()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DDIE.h858 dwarf::Form BestForm(unsigned DwarfVersion) const { in BestForm() argument
859 if (DwarfVersion > 3) in BestForm()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/
H A DClang.cpp925 unsigned DwarfVersion, in RenderDebugEnablingArgs() argument
943 if (DwarfVersion > 0) in RenderDebugEnablingArgs()
945 Args.MakeArgString("-dwarf-version=" + Twine(DwarfVersion))); in RenderDebugEnablingArgs()
2141 unsigned DwarfVersion = DwarfVersionNum(Value); in CollectArgsForIntegratedAssembler() local
2142 if (DwarfVersion == 0) { // Send it onward, and let cc1as complain. in CollectArgsForIntegratedAssembler()
2147 DwarfVersion, llvm::DebuggerKind::Default); in CollectArgsForIntegratedAssembler()
5927 unsigned DwarfVersion = 0; in ConstructJob() local
5933 DwarfVersion = DwarfVersionNum(A->getSpelling()); in ConstructJob()
5935 if (DwarfVersion == 0) in ConstructJob()
5936 DwarfVersion = getToolChain().GetDefaultDwarfVersion(); in ConstructJob()
[all …]
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCDwarf.cpp1530 static unsigned getCIEVersion(bool IsEH, unsigned DwarfVersion) { in getCIEVersion() argument
1533 switch (DwarfVersion) { in getCIEVersion()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DCodeGenOptions.def301 VALUE_CODEGENOPT(DwarfVersion, 3, 0)
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.cpp371 CGM.getCodeGenOpts().DwarfVersion < 5) in computeChecksum()
3483 if (CGM.getCodeGenOpts().DwarfVersion >= 5) { in EmitFunctionStart()
4399 if (CGM.getCodeGenOpts().DwarfVersion >= 5) { in finalize()
4491 CGM.getCodeGenOpts().DwarfVersion == 4 && in getCallSiteRelatedAttrs()
4493 if (!SupportsDWARFv4Ext && CGM.getCodeGenOpts().DwarfVersion < 5) in getCallSiteRelatedAttrs()
H A DCodeGenModule.cpp451 if (CodeGenOpts.DwarfVersion) { in Release()
455 CodeGenOpts.DwarfVersion); in Release()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp705 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 0, Diags); in ParseCodeGenArgs()