Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineFunction.cpp189 JumpTableInfo = nullptr; in init()
244 if (JumpTableInfo) { in clear()
245 JumpTableInfo->~MachineJumpTableInfo(); in clear()
246 Allocator.Deallocate(JumpTableInfo); in clear()
268 if (JumpTableInfo) return JumpTableInfo; in getOrCreateJumpTableInfo()
270 JumpTableInfo = new (Allocator) in getOrCreateJumpTableInfo()
272 return JumpTableInfo; in getOrCreateJumpTableInfo()
424 if (JumpTableInfo) in DeleteMachineBasicBlock()
425 JumpTableInfo->RemoveMBBFromJumpTables(MBB); in DeleteMachineBasicBlock()
535 if (JumpTableInfo) in print()
[all …]
H A DMIRPrinter.cpp229 if (const auto *JumpTableInfo = MF.getJumpTableInfo()) in print() local
230 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo); in print()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineFunction.h251 MachineJumpTableInfo *JumpTableInfo;
581 const MachineJumpTableInfo *getJumpTableInfo() const { return JumpTableInfo; }
582 MachineJumpTableInfo *getJumpTableInfo() { return JumpTableInfo; }
H A DMIRYamlMapping.h706 MachineJumpTable JumpTableInfo;
739 if (!YamlIO.outputting() || !MF.JumpTableInfo.Entries.empty())
740 YamlIO.mapOptional("jumpTable", MF.JumpTableInfo, MachineJumpTable());
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp487 if (!YamlMF.JumpTableInfo.Entries.empty() && in initializeMachineFunction()
488 initializeJumpTableInfo(PFS, YamlMF.JumpTableInfo)) in initializeMachineFunction()