/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfExpression.h | 35 unsigned DwarfVersion; variable 39 unsigned DwarfVersion) in DwarfExpression() argument 40 : TRI(TRI), DwarfVersion(DwarfVersion) {} in DwarfExpression() 112 unsigned DwarfVersion, ByteStreamer &BS) in DebugLocDwarfExpression() argument 113 : DwarfExpression(TRI, DwarfVersion), BS(BS) {} in DebugLocDwarfExpression()
|
D | DwarfExpression.cpp | 175 if (DwarfVersion >= 4) in AddSignedConstant() 183 if (DwarfVersion >= 4) in AddUnsignedConstant()
|
D | DwarfDebug.h | 287 unsigned DwarfVersion; variable 553 unsigned getDwarfVersion() const { return DwarfVersion; } in getDwarfVersion()
|
D | DwarfDebug.cpp | 255 unsigned DwarfVersionNumber = Asm->TM.Options.MCOptions.DwarfVersion; in DwarfDebug() 256 DwarfVersion = DwarfVersionNumber ? DwarfVersionNumber in DwarfDebug() 259 DwarfVersion = DwarfVersion ? DwarfVersion : dwarf::DWARF_VERSION; in DwarfDebug() 266 UseGNUTLSOpcode = tuneForGDB() || DwarfVersion < 3; in DwarfDebug() 268 Asm->OutStreamer->getContext().setDwarfVersion(DwarfVersion); in DwarfDebug()
|
/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 | 39 int DwarfVersion; variable 61 ARE_EQUAL(DwarfVersion) &&
|
D | MCContext.h | 161 uint16_t DwarfVersion; variable 503 void setDwarfVersion(uint16_t v) { DwarfVersion = v; } in setDwarfVersion() 504 uint16_t getDwarfVersion() const { return DwarfVersion; } in getDwarfVersion()
|
/external/llvm/tools/llvm-mc/ |
D | llvm-mc.cpp | 442 unsigned DwarfVersion = MCOptions.DwarfVersion ? MCOptions.DwarfVersion : 4; in main() local 443 if (DwarfVersion < 2 || DwarfVersion > 4) { in main() 444 errs() << ProgName << ": Dwarf version " << DwarfVersion in main() 448 Ctx.setDwarfVersion(DwarfVersion); in main()
|
/external/llvm/lib/MC/ |
D | MCTargetOptions.cpp | 20 DwarfVersion(0), ABIName() {} in MCTargetOptions()
|
D | MCContext.cpp | 43 GenDwarfForAssembly(false), GenDwarfFileNumber(0), DwarfVersion(4), in MCContext()
|
D | MCDwarf.cpp | 1238 static unsigned getCIEVersion(bool IsEH, unsigned DwarfVersion) { in getCIEVersion() argument 1241 switch (DwarfVersion) { in getCIEVersion()
|
/external/clang/tools/driver/ |
D | cc1as_main.cpp | 91 unsigned DwarfVersion; member 149 DwarfVersion = 0; in AssemblerInvocation() 203 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 0, Diags); in CreateFromArgs() 354 Ctx.setDwarfVersion(Opts.DwarfVersion); in ExecuteAssembler()
|
/external/llvm/include/llvm/CodeGen/ |
D | DIE.h | 712 dwarf::Form BestForm(unsigned DwarfVersion) const { in BestForm() argument 713 if (DwarfVersion > 3) in BestForm()
|
/external/clang/lib/Driver/ |
D | Tools.cpp | 2530 unsigned DwarfVersion, in RenderDebugEnablingArgs() argument 2545 if (DwarfVersion > 0) in RenderDebugEnablingArgs() 2547 Args.MakeArgString("-dwarf-version=" + Twine(DwarfVersion))); in RenderDebugEnablingArgs() 2652 unsigned DwarfVersion = DwarfVersionNum(Value); in CollectArgsForIntegratedAssembler() local 2653 if (DwarfVersion == 0) { // Send it onward, and let cc1as complain. in CollectArgsForIntegratedAssembler() 2657 Args, CmdArgs, CodeGenOptions::LimitedDebugInfo, DwarfVersion, in CollectArgsForIntegratedAssembler() 4038 unsigned DwarfVersion = 0; in ConstructJob() local 4119 DwarfVersion = DwarfVersionNum(A->getSpelling()); in ConstructJob() 4126 } else if (DwarfVersion == 0 && in ConstructJob() 4128 DwarfVersion = getToolChain().GetDefaultDwarfVersion(); in ConstructJob() [all …]
|
/external/clang/include/clang/Frontend/ |
D | CodeGenOptions.def | 194 VALUE_CODEGENOPT(DwarfVersion, 3, 0)
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 509 void switchToDebugInfoSection(unsigned DwarfVersion); 657 void DwarfStreamer::switchToDebugInfoSection(unsigned DwarfVersion) { in switchToDebugInfoSection() argument 659 MC->setDwarfVersion(DwarfVersion); in switchToDebugInfoSection()
|
/external/clang/lib/CodeGen/ |
D | CodeGenModule.cpp | 396 if (CodeGenOpts.DwarfVersion) { in Release() 400 CodeGenOpts.DwarfVersion); in Release()
|
/external/clang/lib/Frontend/ |
D | CompilerInvocation.cpp | 415 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 0, Diags); in ParseCodeGenArgs()
|