/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DebugLocEntry.h | 50 enum EntryType EntryKind; variable 67 DbgValueLocEntry(int64_t i) : EntryKind(E_Integer) { Constant.Int = i; } in DbgValueLocEntry() 68 DbgValueLocEntry(const ConstantFP *CFP) : EntryKind(E_ConstantFP) { in DbgValueLocEntry() 71 DbgValueLocEntry(const ConstantInt *CIP) : EntryKind(E_ConstantInt) { in DbgValueLocEntry() 74 DbgValueLocEntry(MachineLocation Loc) : EntryKind(E_Location), Loc(Loc) {} in DbgValueLocEntry() 76 : EntryKind(E_TargetIndexLocation), TIL(Loc) {} in DbgValueLocEntry() 78 bool isLocation() const { return EntryKind == E_Location; } in isLocation() 80 return EntryKind == E_Location && Loc.isIndirect(); in isIndirectLocation() 83 return EntryKind == E_TargetIndexLocation; in isTargetIndexLocation() 85 bool isInt() const { return EntryKind == E_Integer; } in isInt() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugRnglists.cpp | 84 EntryKind = Encoding; in extract() 102 if (RLE.EntryKind == dwarf::DW_RLE_end_of_list) in getAbsoluteRanges() 104 if (RLE.EntryKind == dwarf::DW_RLE_base_addressx) { in getAbsoluteRanges() 110 if (RLE.EntryKind == dwarf::DW_RLE_base_address) { in getAbsoluteRanges() 120 switch (RLE.EntryKind) { in getAbsoluteRanges() 193 auto EncodingString = dwarf::RangeListEncodingString(EntryKind); in dump() 198 if (EntryKind != dwarf::DW_RLE_end_of_list) in dump() 204 switch (EntryKind) { in dump()
|
H A D | DWARFDebugPubTable.cpp | 111 StringRef EntryKind = dwarf::GDBIndexEntryKindString(E.Descriptor.Kind); in dump() local 113 << format("%-8s", EntryKind.data()) << ' '; in dump()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | DbgEntityHistoryCalculator.h | 76 enum EntryKind { DbgValue, Clobber }; enum 78 Entry(const MachineInstr *Instr, EntryKind Kind) in Entry() 83 EntryKind getEntryKind() const { return Instr.getInt(); } in getEntryKind() 92 PointerIntPair<const MachineInstr *, 1, EntryKind> Instr;
|
H A D | MachineJumpTableInfo.h | 86 JTEntryKind EntryKind; 89 explicit MachineJumpTableInfo(JTEntryKind Kind): EntryKind(Kind) {} 91 JTEntryKind getEntryKind() const { return EntryKind; }
|
H A D | MIRYamlMapping.h | 131 MachineJumpTableInfo::JTEntryKind &EntryKind) { 132 IO.enumCase(EntryKind, "block-address", 134 IO.enumCase(EntryKind, "gp-rel64-block-address", 136 IO.enumCase(EntryKind, "gp-rel32-block-address", 138 IO.enumCase(EntryKind, "label-difference32", 140 IO.enumCase(EntryKind, "label-difference64", 142 IO.enumCase(EntryKind, "inline", MachineJumpTableInfo::EK_Inline); 143 IO.enumCase(EntryKind, "custom32", MachineJumpTableInfo::EK_Custom32);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugRnglists.h | 44 bool isSentinel() const { return EntryKind == dwarf::DW_RLE_end_of_list; } in isSentinel()
|
H A D | DWARFListTable.h | 30 uint8_t EntryKind; member 270 dwarf::RangeListEncodingString(Entry.EntryKind).size()); in dump()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | VirtualFileSystem.h | 768 enum EntryKind { EK_Directory, EK_DirectoryRemap, EK_File }; enum 796 EntryKind Kind; 800 Entry(EntryKind K, StringRef Name) : Kind(K), Name(Name) {} in Entry() 804 EntryKind getKind() const { return Kind; } in getKind() 846 RemapEntry(EntryKind K, StringRef Name, StringRef ExternalContentsPath, in RemapEntry()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | CheckExprLifetime.cpp | 186 enum EntryKind { enum 204 IndirectLocalPathEntry(EntryKind K, Expr *E) : Kind(K), E(E) {} in IndirectLocalPathEntry() 205 IndirectLocalPathEntry(EntryKind K, Expr *E, const Decl *D) in IndirectLocalPathEntry() 207 IndirectLocalPathEntry(EntryKind K, Expr *E, const LambdaCapture *Capture) in IndirectLocalPathEntry()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineFunction.cpp | 316 getOrCreateJumpTableInfo(unsigned EntryKind) { in getOrCreateJumpTableInfo() argument 320 MachineJumpTableInfo((MachineJumpTableInfo::JTEntryKind)EntryKind); in getOrCreateJumpTableInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | ValueMapper.cpp | 68 enum EntryKind { enum
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | VirtualFileSystem.cpp | 1826 RedirectingFileSystem::EntryKind Kind; in parseEntry()
|