Searched refs:LVLineKind (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVLine.h | 23 enum class LVLineKind { enum 36 using LVLineKindSet = std::set<LVLineKind>; 37 using LVLineDispatch = std::map<LVLineKind, LVLineGetFunction>; 43 LVProperties<LVLineKind> Kinds; 62 KIND(LVLineKind, IsBasicBlock); 63 KIND(LVLineKind, IsDiscriminator); 64 KIND(LVLineKind, IsEndSequence); 65 KIND(LVLineKind, IsEpilogueBegin); 66 KIND(LVLineKind, IsLineDebug); 67 KIND(LVLineKind, IsLineAssembler); [all …]
|
| /freebsd/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}};
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
| H A D | Options.cpp | 312 cl::list<LVLineKind> cmdline::SelectLines( 317 clEnumValN(LVLineKind::IsAlwaysStepInto, "AlwaysStepInto", 319 clEnumValN(LVLineKind::IsBasicBlock, "BasicBlock", "Basic block."), 320 clEnumValN(LVLineKind::IsDiscriminator, "Discriminator", 322 clEnumValN(LVLineKind::IsEndSequence, "EndSequence", "End sequence."), 323 clEnumValN(LVLineKind::IsEpilogueBegin, "EpilogueBegin.", 325 clEnumValN(LVLineKind::IsLineDebug, "LineDebug", "Debug line."), 326 clEnumValN(LVLineKind::IsLineAssembler, "LineAssembler", 328 clEnumValN(LVLineKind::IsNeverStepInto, "NeverStepInto", 330 clEnumValN(LVLineKind::IsNewStatement, "NewStatement", [all …]
|
| H A D | Options.h | 56 extern llvm::cl::list<LVLineKind> SelectLines;
|