/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfExpression.h | 34 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()
|
D | DwarfDebug.cpp | 257 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()
|
D | DwarfDebug.h | 258 unsigned DwarfVersion; variable 518 unsigned getDwarfVersion() const { return DwarfVersion; } in getDwarfVersion()
|
D | DwarfExpression.cpp | 165 if (DwarfVersion >= 4) in AddStackValue()
|
/external/llvm/include/llvm/MC/ |
D | MCTargetOptionsCommandFlags.h | 42 cl::opt<int> DwarfVersion("dwarf-version", cl::desc("Dwarf version"), 66 Options.DwarfVersion = DwarfVersion; in InitMCTargetOptionsFromFlags()
|
D | MCTargetOptions.h | 43 int DwarfVersion; variable 65 ARE_EQUAL(DwarfVersion) &&
|
D | MCContext.h | 171 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/ |
D | llvm-mc.cpp | 450 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/ |
D | cc1as_main.cpp | 90 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/ |
D | MCTargetOptions.cpp | 20 DwarfVersion(0), ABIName() {} in MCTargetOptions()
|
D | MCContext.cpp | 50 GenDwarfForAssembly(false), GenDwarfFileNumber(0), DwarfVersion(4), in MCContext()
|
D | MCDwarf.cpp | 1244 static unsigned getCIEVersion(bool IsEH, unsigned DwarfVersion) { in getCIEVersion() argument 1247 switch (DwarfVersion) { in getCIEVersion()
|
/external/llvm/include/llvm/CodeGen/ |
D | DIE.h | 693 dwarf::Form BestForm(unsigned DwarfVersion) const { in BestForm() argument 694 if (DwarfVersion > 3) in BestForm()
|
/external/clang/lib/Driver/ |
D | Tools.cpp | 2789 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/ |
D | CodeGenOptions.def | 220 VALUE_CODEGENOPT(DwarfVersion, 3, 0)
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 511 void switchToDebugInfoSection(unsigned DwarfVersion); 659 void DwarfStreamer::switchToDebugInfoSection(unsigned DwarfVersion) { in switchToDebugInfoSection() argument 661 MC->setDwarfVersion(DwarfVersion); in switchToDebugInfoSection()
|
/external/clang/lib/CodeGen/ |
D | CodeGenModule.cpp | 417 if (CodeGenOpts.DwarfVersion) { in Release() 421 CodeGenOpts.DwarfVersion); in Release()
|
/external/clang/lib/Frontend/ |
D | CompilerInvocation.cpp | 492 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 0, Diags); in ParseCodeGenArgs()
|