Searched refs:DebuggerKind (Results 1 – 16 of 16) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/ |
| H A D | TargetOptions.h | 97 enum class DebuggerKind { enum 368 DebuggerKind DebuggerTuning = DebuggerKind::Default;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfDebug.h | 448 DebuggerKind DebuggerTuning = DebuggerKind::Default; 838 bool tuneForGDB() const { return DebuggerTuning == DebuggerKind::GDB; } in tuneForGDB() 839 bool tuneForLLDB() const { return DebuggerTuning == DebuggerKind::LLDB; } in tuneForLLDB() 840 bool tuneForSCE() const { return DebuggerTuning == DebuggerKind::SCE; } in tuneForSCE() 841 bool tuneForDBX() const { return DebuggerTuning == DebuggerKind::DBX; } in tuneForDBX()
|
| H A D | DwarfDebug.cpp | 329 DebuggerKind Tuning, in computeAccelTableKind() 344 if (Tuning == DebuggerKind::LLDB) in computeAccelTableKind() 359 if (Asm->TM.Options.DebuggerTuning != DebuggerKind::Default) in DwarfDebug() 362 DebuggerTuning = DebuggerKind::LLDB; in DwarfDebug() 364 DebuggerTuning = DebuggerKind::SCE; in DwarfDebug() 366 DebuggerTuning = DebuggerKind::DBX; in DwarfDebug() 368 DebuggerTuning = DebuggerKind::GDB; in DwarfDebug()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | CommandFlags.cpp | 87 CGOPT(DebuggerKind, DebuggerTuningOpt) in CGOPT() 395 static cl::opt<DebuggerKind> DebuggerTuningOpt( in CGOPT() 397 cl::init(DebuggerKind::Default), in CGOPT() 399 clEnumValN(DebuggerKind::GDB, "gdb", "gdb"), in CGOPT() 400 clEnumValN(DebuggerKind::LLDB, "lldb", "lldb"), in CGOPT() 401 clEnumValN(DebuggerKind::DBX, "dbx", "dbx"), in CGOPT() 402 clEnumValN(DebuggerKind::SCE, "sce", "SCE targets (e.g. PS4)"))); in CGOPT()
|
| H A D | TargetOptionsImpl.cpp | 55 return (SupportsDebugEntryValues && DebuggerTuning != DebuggerKind::SCE) || in ShouldEmitDebugEntryValues()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| H A D | AIX.h | 80 llvm::DebuggerKind getDefaultDebuggerTuning() const override { in getDefaultDebuggerTuning() 81 return llvm::DebuggerKind::DBX; in getDefaultDebuggerTuning()
|
| H A D | Fuchsia.h | 59 llvm::DebuggerKind getDefaultDebuggerTuning() const override { in getDefaultDebuggerTuning() 60 return llvm::DebuggerKind::GDB; in getDefaultDebuggerTuning()
|
| H A D | PS4CPU.h | 82 llvm::DebuggerKind getDefaultDebuggerTuning() const override { in getDefaultDebuggerTuning() 83 return llvm::DebuggerKind::SCE; in getDefaultDebuggerTuning()
|
| H A D | MSVC.h | 68 llvm::DebuggerKind getDefaultDebuggerTuning() const override { in getDefaultDebuggerTuning() 69 return llvm::DebuggerKind::Default; in getDefaultDebuggerTuning()
|
| H A D | Darwin.h | 559 llvm::DebuggerKind getDefaultDebuggerTuning() const override { in getDefaultDebuggerTuning() 560 return llvm::DebuggerKind::LLDB; in getDefaultDebuggerTuning()
|
| H A D | Clang.cpp | 1027 llvm::DebuggerKind DebuggerTuning) { in RenderDebugEnablingArgs() 1054 case llvm::DebuggerKind::GDB: in RenderDebugEnablingArgs() 1057 case llvm::DebuggerKind::LLDB: in RenderDebugEnablingArgs() 1060 case llvm::DebuggerKind::SCE: in RenderDebugEnablingArgs() 1063 case llvm::DebuggerKind::DBX: in RenderDebugEnablingArgs() 2542 DwarfVersion, llvm::DebuggerKind::Default); in CollectArgsForIntegratedAssembler() 3890 llvm::DebuggerKind DebuggerTuning = TC.getDefaultDebuggerTuning(); in renderDebugOptions() 3932 DebuggerTuning = llvm::DebuggerKind::LLDB; in renderDebugOptions() 3934 DebuggerTuning = llvm::DebuggerKind::SCE; in renderDebugOptions() 3936 DebuggerTuning = llvm::DebuggerKind::DBX; in renderDebugOptions() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | CommandFlags.h | 119 llvm::DebuggerKind getDebuggerTuningOpt();
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
| H A D | ToolChain.h | 519 virtual llvm::DebuggerKind getDefaultDebuggerTuning() const { in getDefaultDebuggerTuning() 520 return llvm::DebuggerKind::GDB; in getDefaultDebuggerTuning()
|
| H A D | Options.td | 4750 NormalizedValuesScope<"llvm::DebuggerKind">, NormalizedValues<["GDB", "LLDB", "SCE", "DBX"]>,
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | CodeGenOptions.def | 345 ENUM_CODEGENOPT(DebuggerTuning, llvm::DebuggerKind, 3, 346 llvm::DebuggerKind::Default)
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 627 if (CGM.getCodeGenOpts().getDebuggerTuning() == llvm::DebuggerKind::LLDB) { in CreateCompileUnit() 4993 if (CGM.getCodeGenOpts().getDebuggerTuning() != llvm::DebuggerKind::LLDB) in EmitImportDecl() 5162 (CGM.getCodeGenOpts().getDebuggerTuning() == llvm::DebuggerKind::LLDB || in getCallSiteRelatedAttrs() 5163 CGM.getCodeGenOpts().getDebuggerTuning() == llvm::DebuggerKind::GDB); in getCallSiteRelatedAttrs()
|