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

  /external/llvm/lib/MC/
MCTargetOptions.cpp 19 AsmVerbose(false), DwarfVersion(0), ABIName() {}
MCContext.cpp 39 GenDwarfForAssembly(false), GenDwarfFileNumber(0), DwarfVersion(4),
  /external/llvm/include/llvm/MC/
MCTargetOptionsCommandFlags.h 36 cl::opt<int> DwarfVersion("dwarf-version", cl::desc("Dwarf version"),
53 Options.DwarfVersion = DwarfVersion;
MCTargetOptions.h 37 int DwarfVersion;
57 ARE_EQUAL(DwarfVersion) &&
MCContext.h 155 uint16_t DwarfVersion;
495 void setDwarfVersion(uint16_t v) { DwarfVersion = v; }
496 uint16_t getDwarfVersion() const { return DwarfVersion; }
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfExpression.h 35 unsigned DwarfVersion;
39 unsigned DwarfVersion)
40 : TRI(TRI), DwarfVersion(DwarfVersion) {}
111 unsigned DwarfVersion, ByteStreamer &BS)
112 : DwarfExpression(TRI, DwarfVersion), BS(BS) {}
DwarfExpression.cpp 175 if (DwarfVersion >= 4)
183 if (DwarfVersion >= 4)
DwarfDebug.h 288 unsigned DwarfVersion;
548 unsigned getDwarfVersion() const { return DwarfVersion; }
DwarfDebug.cpp 228 unsigned DwarfVersionNumber = Asm->TM.Options.MCOptions.DwarfVersion;
229 DwarfVersion = DwarfVersionNumber ? DwarfVersionNumber
234 UseGNUTLSOpcode = !(IsDarwin || IsPS4) || DwarfVersion < 3;
236 Asm->OutStreamer.getContext().setDwarfVersion(DwarfVersion);
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 413 unsigned DwarfVersion = MCOptions.DwarfVersion ? MCOptions.DwarfVersion : 4;
414 if (DwarfVersion < 2 || DwarfVersion > 4) {
415 errs() << ProgName << ": Dwarf version " << DwarfVersion
419 Ctx.setDwarfVersion(DwarfVersion);
  /external/clang/tools/driver/
cc1as_main.cpp 91 unsigned DwarfVersion;
144 DwarfVersion = 3;
201 Opts.DwarfVersion = 2;
203 Opts.DwarfVersion = 3;
205 Opts.DwarfVersion = 4;
342 Ctx.setDwarfVersion(Opts.DwarfVersion);
  /external/llvm/include/llvm/CodeGen/
DIE.h 487 dwarf::Form BestForm(unsigned DwarfVersion) const {
488 if (DwarfVersion > 3)
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 409 /// the MC Dwarf version to \p DwarfVersion.
410 void switchToDebugInfoSection(unsigned DwarfVersion);
541 /// the MC Dwarf version to \p DwarfVersion.
542 void DwarfStreamer::switchToDebugInfoSection(unsigned DwarfVersion) {
544 MC->setDwarfVersion(DwarfVersion);
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 399 Opts.DwarfVersion = 2;
401 Opts.DwarfVersion = 3;
403 Opts.DwarfVersion = 4;
406 Opts.DwarfVersion = 4;
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 368 if (CodeGenOpts.DwarfVersion)
372 CodeGenOpts.DwarfVersion);
    [all...]

Completed in 313 milliseconds