Home
last modified time | relevance | path

Searched refs:JumpTableInfo (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp234 JumpTableInfo = nullptr; in init()
293 if (JumpTableInfo) { in clear()
294 JumpTableInfo->~MachineJumpTableInfo(); in clear()
295 Allocator.Deallocate(JumpTableInfo); in clear()
317 if (JumpTableInfo) return JumpTableInfo; in getOrCreateJumpTableInfo()
319 JumpTableInfo = new (Allocator) in getOrCreateJumpTableInfo()
321 return JumpTableInfo; in getOrCreateJumpTableInfo()
481 if (JumpTableInfo) in deleteMachineBasicBlock()
482 JumpTableInfo->RemoveMBBFromJumpTables(MBB); in deleteMachineBasicBlock()
623 if (JumpTableInfo) in print()
[all …]
H A DMIRPrinter.cpp241 if (const auto *JumpTableInfo = MF.getJumpTableInfo()) in print() local
242 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo); in print()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h138 struct JumpTableInfo { struct
177 std::vector<JumpTableInfo> JumpTables;
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFunction.h279 MachineJumpTableInfo *JumpTableInfo;
740 const MachineJumpTableInfo *getJumpTableInfo() const { return JumpTableInfo; }
741 MachineJumpTableInfo *getJumpTableInfo() { return JumpTableInfo; }
H A DMIRYamlMapping.h756 MachineJumpTable JumpTableInfo;
804 if (!YamlIO.outputting() || !MF.JumpTableInfo.Entries.empty())
805 YamlIO.mapOptional("jumpTable", MF.JumpTableInfo, MachineJumpTable());
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp556 if (!YamlMF.JumpTableInfo.Entries.empty() && in initializeMachineFunction()
557 initializeJumpTableInfo(PFS, YamlMF.JumpTableInfo)) in initializeMachineFunction()