Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfExpression.h34 unsigned DwarfVersion;
37 DwarfExpression(unsigned DwarfVersion) : DwarfVersion(DwarfVersion) {} in DwarfExpression() argument
126 DebugLocDwarfExpression(unsigned DwarfVersion, ByteStreamer &BS) in DebugLocDwarfExpression() argument
127 : DwarfExpression(DwarfVersion), BS(BS) {} in DebugLocDwarfExpression()
DDwarfDebug.cpp257 unsigned DwarfVersionNumber = Asm->TM.Options.MCOptions.DwarfVersion; in DwarfDebug()
258 DwarfVersion = DwarfVersionNumber ? DwarfVersionNumber in DwarfDebug()
261 DwarfVersion = DwarfVersion ? DwarfVersion : dwarf::DWARF_VERSION; in DwarfDebug()
268 UseGNUTLSOpcode = tuneForGDB() || DwarfVersion < 3; in DwarfDebug()
271 UseDWARF2Bitfields = (DwarfVersion < 4) || tuneForGDB(); in DwarfDebug()
273 Asm->OutStreamer->getContext().setDwarfVersion(DwarfVersion); in DwarfDebug()
DDwarfDebug.h258 unsigned DwarfVersion; variable
518 unsigned getDwarfVersion() const { return DwarfVersion; } in getDwarfVersion()
DDwarfExpression.cpp165 if (DwarfVersion >= 4) in AddStackValue()
/external/llvm/include/llvm/MC/
DMCTargetOptionsCommandFlags.h42 cl::opt<int> DwarfVersion("dwarf-version", cl::desc("Dwarf version"),
66 Options.DwarfVersion = DwarfVersion; in InitMCTargetOptionsFromFlags()
DMCTargetOptions.h43 int DwarfVersion; variable
65 ARE_EQUAL(DwarfVersion) &&
DMCContext.h171 uint16_t DwarfVersion; variable
532 void setDwarfVersion(uint16_t v) { DwarfVersion = v; } in setDwarfVersion()
533 uint16_t getDwarfVersion() const { return DwarfVersion; } in getDwarfVersion()
/external/llvm/tools/llvm-mc/
Dllvm-mc.cpp450 unsigned DwarfVersion = MCOptions.DwarfVersion ? MCOptions.DwarfVersion : 4; in main() local
451 if (DwarfVersion < 2 || DwarfVersion > 4) { in main()
452 errs() << ProgName << ": Dwarf version " << DwarfVersion in main()
456 Ctx.setDwarfVersion(DwarfVersion); in main()
/external/clang/tools/driver/
Dcc1as_main.cpp90 unsigned DwarfVersion; member
148 DwarfVersion = 0; in AssemblerInvocation()
203 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 2, Diags); in CreateFromArgs()
355 Ctx.setDwarfVersion(Opts.DwarfVersion); in ExecuteAssembler()
/external/llvm/lib/MC/
DMCTargetOptions.cpp20 DwarfVersion(0), ABIName() {} in MCTargetOptions()
DMCContext.cpp50 GenDwarfForAssembly(false), GenDwarfFileNumber(0), DwarfVersion(4), in MCContext()
DMCDwarf.cpp1244 static unsigned getCIEVersion(bool IsEH, unsigned DwarfVersion) { in getCIEVersion() argument
1247 switch (DwarfVersion) { in getCIEVersion()
/external/llvm/include/llvm/CodeGen/
DDIE.h693 dwarf::Form BestForm(unsigned DwarfVersion) const { in BestForm() argument
694 if (DwarfVersion > 3) in BestForm()
/external/clang/lib/Driver/
DTools.cpp2789 unsigned DwarfVersion, in RenderDebugEnablingArgs() argument
2804 if (DwarfVersion > 0) in RenderDebugEnablingArgs()
2806 Args.MakeArgString("-dwarf-version=" + Twine(DwarfVersion))); in RenderDebugEnablingArgs()
2939 unsigned DwarfVersion = DwarfVersionNum(Value); in CollectArgsForIntegratedAssembler() local
2940 if (DwarfVersion == 0) { // Send it onward, and let cc1as complain. in CollectArgsForIntegratedAssembler()
2945 DwarfVersion, llvm::DebuggerKind::Default); in CollectArgsForIntegratedAssembler()
4441 unsigned DwarfVersion = 0; in ConstructJob() local
4521 DwarfVersion = DwarfVersionNum(A->getSpelling()); in ConstructJob()
4528 } else if (DwarfVersion == 0 && in ConstructJob()
4530 DwarfVersion = getToolChain().GetDefaultDwarfVersion(); in ConstructJob()
[all …]
/external/clang/include/clang/Frontend/
DCodeGenOptions.def220 VALUE_CODEGENOPT(DwarfVersion, 3, 0)
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp511 void switchToDebugInfoSection(unsigned DwarfVersion);
659 void DwarfStreamer::switchToDebugInfoSection(unsigned DwarfVersion) { in switchToDebugInfoSection() argument
661 MC->setDwarfVersion(DwarfVersion); in switchToDebugInfoSection()
/external/clang/lib/CodeGen/
DCodeGenModule.cpp417 if (CodeGenOpts.DwarfVersion) { in Release()
421 CodeGenOpts.DwarfVersion); in Release()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp492 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 0, Diags); in ParseCodeGenArgs()