Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineFunction.cpp186 JumpTableInfo = nullptr; in init()
241 if (JumpTableInfo) { in clear()
242 JumpTableInfo->~MachineJumpTableInfo(); in clear()
243 Allocator.Deallocate(JumpTableInfo); in clear()
265 if (JumpTableInfo) return JumpTableInfo; in getOrCreateJumpTableInfo()
267 JumpTableInfo = new (Allocator) in getOrCreateJumpTableInfo()
269 return JumpTableInfo; in getOrCreateJumpTableInfo()
470 if (JumpTableInfo) in print()
471 JumpTableInfo->print(OS); in print()
590 assert(JumpTableInfo && "No jump tables"); in getJTISymbol()
[all …]
H A DMIRPrinter.cpp217 if (const auto *JumpTableInfo = MF.getJumpTableInfo()) in print() local
218 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo); in print()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h507 MachineJumpTable JumpTableInfo;
535 if (!YamlIO.outputting() || !MF.JumpTableInfo.Entries.empty())
536 YamlIO.mapOptional("jumpTable", MF.JumpTableInfo, MachineJumpTable());
H A DMachineFunction.h247 MachineJumpTableInfo *JumpTableInfo;
470 const MachineJumpTableInfo *getJumpTableInfo() const { return JumpTableInfo; }
471 MachineJumpTableInfo *getJumpTableInfo() { return JumpTableInfo; }
/freebsd-12.1/contrib/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp401 if (!YamlMF.JumpTableInfo.Entries.empty() && in initializeMachineFunction()
402 initializeJumpTableInfo(PFS, YamlMF.JumpTableInfo)) in initializeMachineFunction()