Searched refs:LVLineKind (Results 1 – 4 of 4) sorted by relevance
| /src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVLine.h | 22 enum class LVLineKind { enum 35 using LVLineKindSet = std::set<LVLineKind>; 36 using LVLineDispatch = std::map<LVLineKind, LVLineGetFunction>; 42 LVProperties<LVLineKind> Kinds; 61 KIND(LVLineKind, IsBasicBlock); 62 KIND(LVLineKind, IsDiscriminator); 63 KIND(LVLineKind, IsEndSequence); 64 KIND(LVLineKind, IsEpilogueBegin); 65 KIND(LVLineKind, IsLineDebug); 66 KIND(LVLineKind, IsLineAssembler); [all …]
|
| /src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVLine.cpp | 50 {LVLineKind::IsBasicBlock, &LVLine::getIsBasicBlock}, 51 {LVLineKind::IsDiscriminator, &LVLine::getIsDiscriminator}, 52 {LVLineKind::IsEndSequence, &LVLine::getIsEndSequence}, 53 {LVLineKind::IsLineDebug, &LVLine::getIsLineDebug}, 54 {LVLineKind::IsLineAssembler, &LVLine::getIsLineAssembler}, 55 {LVLineKind::IsNewStatement, &LVLine::getIsNewStatement}, 56 {LVLineKind::IsEpilogueBegin, &LVLine::getIsEpilogueBegin}, 57 {LVLineKind::IsPrologueEnd, &LVLine::getIsPrologueEnd}, 58 {LVLineKind::IsAlwaysStepInto, &LVLine::getIsAlwaysStepInto}, 59 {LVLineKind::IsNeverStepInto, &LVLine::getIsNeverStepInto}};
|
| /src/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
| H A D | Options.cpp | 309 cl::list<LVLineKind> cmdline::SelectLines( 314 clEnumValN(LVLineKind::IsAlwaysStepInto, "AlwaysStepInto", 316 clEnumValN(LVLineKind::IsBasicBlock, "BasicBlock", "Basic block."), 317 clEnumValN(LVLineKind::IsDiscriminator, "Discriminator", 319 clEnumValN(LVLineKind::IsEndSequence, "EndSequence", "End sequence."), 320 clEnumValN(LVLineKind::IsEpilogueBegin, "EpilogueBegin.", 322 clEnumValN(LVLineKind::IsLineDebug, "LineDebug", "Debug line."), 323 clEnumValN(LVLineKind::IsLineAssembler, "LineAssembler", 325 clEnumValN(LVLineKind::IsNeverStepInto, "NeverStepInto", 327 clEnumValN(LVLineKind::IsNewStatement, "NewStatement", [all …]
|
| H A D | Options.h | 56 extern llvm::cl::list<LVLineKind> SelectLines;
|