HomeSort by relevance Sort by last modified time
    Searched refs:DwarfVersion (Results 1 - 17 of 17) sorted by null

  /external/llvm/lib/MC/
MCTargetOptions.cpp 20 DwarfVersion(0), ABIName() {}
MCContext.cpp 43 GenDwarfForAssembly(false), GenDwarfFileNumber(0), DwarfVersion(4),
MCDwarf.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfExpression.h 35 unsigned DwarfVersion;
39 unsigned DwarfVersion)
40 : TRI(TRI), DwarfVersion(DwarfVersion) {}
112 unsigned DwarfVersion, ByteStreamer &BS)
113 : DwarfExpression(TRI, DwarfVersion), BS(BS) {}
DwarfExpression.cpp 175 if (DwarfVersion >= 4)
183 if (DwarfVersion >= 4)
DwarfDebug.h 287 unsigned DwarfVersion;
553 unsigned getDwarfVersion() const { return DwarfVersion; }
DwarfDebug.cpp 255 unsigned DwarfVersionNumber = Asm->TM.Options.MCOptions.DwarfVersion;
256 DwarfVersion = DwarfVersionNumber ? DwarfVersionNumber
259 DwarfVersion = DwarfVersion ? DwarfVersion : dwarf::DWARF_VERSION;
266 UseGNUTLSOpcode = tuneForGDB() || DwarfVersion < 3;
268 Asm->OutStreamer->getContext().setDwarfVersion(DwarfVersion);
    [all...]
  /external/llvm/include/llvm/MC/
MCTargetOptions.h 39 int DwarfVersion;
61 ARE_EQUAL(DwarfVersion) &&
MCTargetOptionsCommandFlags.h 42 cl::opt<int> DwarfVersion("dwarf-version", cl::desc("Dwarf version"),
66 Options.DwarfVersion = DwarfVersion;
MCContext.h 161 uint16_t DwarfVersion;
503 void setDwarfVersion(uint16_t v) { DwarfVersion = v; }
504 uint16_t getDwarfVersion() const { return DwarfVersion; }
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 442 unsigned DwarfVersion = MCOptions.DwarfVersion ? MCOptions.DwarfVersion : 4;
443 if (DwarfVersion < 2 || DwarfVersion > 4) {
444 errs() << ProgName << ": Dwarf version " << DwarfVersion
448 Ctx.setDwarfVersion(DwarfVersion);
  /external/clang/tools/driver/
cc1as_main.cpp 91 unsigned DwarfVersion;
149 DwarfVersion = 0;
203 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 0, Diags);
354 Ctx.setDwarfVersion(Opts.DwarfVersion);
  /external/llvm/include/llvm/CodeGen/
DIE.h 712 dwarf::Form BestForm(unsigned DwarfVersion) const {
713 if (DwarfVersion > 3)
  /external/clang/lib/Driver/
Tools.cpp     [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 508 /// the MC Dwarf version to \p DwarfVersion.
509 void switchToDebugInfoSection(unsigned DwarfVersion);
656 /// the MC Dwarf version to \p DwarfVersion.
657 void DwarfStreamer::switchToDebugInfoSection(unsigned DwarfVersion) {
659 MC->setDwarfVersion(DwarfVersion);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 396 if (CodeGenOpts.DwarfVersion) {
400 CodeGenOpts.DwarfVersion);
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 415 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 0, Diags);
    [all...]

Completed in 296 milliseconds