Searched refs:DwarfVersion (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCTargetOptionsCommandFlags.inc31 static cl::opt<int> DwarfVersion("dwarf-version", cl::desc("Dwarf version"),
56 Options.DwarfVersion = DwarfVersion;
H A DMCTargetOptions.h56 int DwarfVersion = 0; member in class:llvm::MCTargetOptions
H A DMCDwarf.h231 uint16_t DwarfVersion,
291 Optional<MD5::MD5Result> Checksum, uint16_t DwarfVersion,
295 DwarfVersion));
317 uint16_t DwarfVersion,
321 uint16_t DwarfVersion, unsigned FileNumber = 0) {
323 DwarfVersion, FileNumber));
290 getFile(StringRef Directory, StringRef FileName, Optional<MD5::MD5Result> Checksum, uint16_t DwarfVersion, Optional<StringRef> Source) argument
319 getFile(StringRef &Directory, StringRef &FileName, Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source, uint16_t DwarfVersion, unsigned FileNumber = 0) argument
H A DMCContext.h185 uint16_t DwarfVersion = 4; member in class:llvm::MCContext
659 void setDwarfVersion(uint16_t v) { DwarfVersion = v; }
660 uint16_t getDwarfVersion() const { return DwarfVersion; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.h137 unsigned DwarfVersion : 4;
273 DwarfExpression(unsigned DwarfVersion, DwarfCompileUnit &CU)
276 DwarfVersion(DwarfVersion) {}
378 DebugLocDwarfExpression(unsigned DwarfVersion, BufferByteStreamer &BS,
380 : DwarfExpression(DwarfVersion, CU), OutBS(BS) {}
H A DDwarfExpression.cpp181 if (DwarfVersion >= 4)
258 if (isEntryValue() && !isParameterValue() && DwarfVersion >= 4)
266 if (DwarfVersion < 4)
452 if (DwarfVersion >= 5) {
H A DDwarfDebug.cpp325 static AccelTableKind computeAccelTableKind(unsigned DwarfVersion,
340 if (DwarfVersion >= 5)
384 unsigned DwarfVersionNumber = Asm->TM.Options.MCOptions.DwarfVersion;
385 unsigned DwarfVersion = DwarfVersionNumber ? DwarfVersionNumber
388 DwarfVersion =
389 TT.isNVPTX() ? 2 : (DwarfVersion ? DwarfVersion : dwarf::DWARF_VERSION);
404 DwarfVersion, GenerateTypeUnits, DebuggerTuning, A->TM.getTargetTriple());
411 UseGNUTLSOpcode = tuneForGDB() || DwarfVersion < 3;
414 UseDWARF2Bitfields = (DwarfVersion <
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFExpression.h54 enum DwarfVersion : uint8_t {
64 DwarfVersion Version; ///< Dwarf version where the Op was introduced.
67 Description(DwarfVersion Version = DwarfNA, Encoding Op1 = SizeNA,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp381 unsigned DwarfVersion = MCOptions.DwarfVersion ? MCOptions.DwarfVersion : 4; local
382 if (DwarfVersion < 2 || DwarfVersion > 5) {
383 errs() << ProgName << ": Dwarf version " << DwarfVersion local
387 Ctx.setDwarfVersion(DwarfVersion);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinker.h102 unsigned DwarfVersion) = 0;
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp94 unsigned DwarfVersion; member in struct:__anon941::AssemblerInvocation
163 DwarfVersion = 0;
240 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 2, Diags);
418 Ctx.setDwarfVersion(Opts.DwarfVersion);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp69 uint16_t DwarfVersion = getVersion(); local
70 assert(DwarfVersion != 0 &&
72 if (DwarfVersion >= 5)
79 uint16_t DwarfVersion = getVersion(); local
80 assert(DwarfVersion != 0 &&
83 if (DwarfVersion >= 5)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp541 uint16_t DwarfVersion,
543 return Header.tryGetFile(Directory, FileName, Checksum, Source, DwarfVersion,
559 uint16_t DwarfVersion,
574 if (isRootFile(RootFile, Directory, FileName, Checksum) && DwarfVersion >= 5)
1545 static unsigned getCIEVersion(bool IsEH, unsigned DwarfVersion) { argument
1548 switch (DwarfVersion) {
537 tryGetFile(StringRef &Directory, StringRef &FileName, Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source, uint16_t DwarfVersion, unsigned FileNumber) argument
555 tryGetFile(StringRef &Directory, StringRef &FileName, Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source, uint16_t DwarfVersion, unsigned FileNumber) argument
H A DMCContext.cpp657 return Table.tryGetFile(Directory, FileName, Checksum, Source, DwarfVersion,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h915 dwarf::Form BestForm(unsigned DwarfVersion) const {
916 if (DwarfVersion > 3)
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp993 unsigned DwarfVersion,
1014 if (DwarfVersion > 0)
1016 Args.MakeArgString("-dwarf-version=" + Twine(DwarfVersion)));
2419 unsigned DwarfVersion = DwarfVersionNum(Value); local
2420 if (DwarfVersion == 0) { // Send it onward, and let cc1as complain.
2425 DwarfVersion, llvm::DebuggerKind::Default);
6651 unsigned DwarfVersion = 0; local
6657 DwarfVersion = DwarfVersionNum(A->getSpelling());
6661 if (DwarfVersion == 0)
6662 DwarfVersion
991 RenderDebugEnablingArgs(const ArgList &Args, ArgStringList &CmdArgs, codegenoptions::DebugInfoKind DebugInfoKind, unsigned DwarfVersion, llvm::DebuggerKind DebuggerTuning) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp366 CGM.getCodeGenOpts().DwarfVersion < 5)
3513 if (CGM.getCodeGenOpts().DwarfVersion < 5 && !OMD->isDirectMethod())
4767 if (CGM.getCodeGenOpts().DwarfVersion >= 5 || SubprogramDirect.getInt())
4843 CGM.getCodeGenOpts().DwarfVersion == 4 &&
4847 if (!SupportsDWARFv4Ext && CGM.getCodeGenOpts().DwarfVersion < 5 &&
H A DCodeGenModule.cpp482 if (CodeGenOpts.DwarfVersion) {
484 CodeGenOpts.DwarfVersion);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp756 Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 0, Diags);

Completed in 327 milliseconds