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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp187 JumpTableInfo = nullptr;
242 if (JumpTableInfo) {
243 JumpTableInfo->~MachineJumpTableInfo();
244 Allocator.Deallocate(JumpTableInfo);
262 /// Get the JumpTableInfo for this function.
266 if (JumpTableInfo) return JumpTableInfo;
268 JumpTableInfo = new (Allocator)
270 return JumpTableInfo;
512 if (JumpTableInfo)
[all...]
H A DMIRPrinter.cpp221 if (const auto *JumpTableInfo = MF.getJumpTableInfo())
222 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFunction.h244 MachineJumpTableInfo *JumpTableInfo; member in class:llvm::MachineFunction
492 const MachineJumpTableInfo *getJumpTableInfo() const { return JumpTableInfo; }
493 MachineJumpTableInfo *getJumpTableInfo() { return JumpTableInfo; }
495 /// getOrCreateJumpTableInfo - Get the JumpTableInfo for this function, if it
H A DMIRYamlMapping.h595 MachineJumpTable JumpTableInfo; member in struct:llvm::yaml::MachineFunction
626 if (!YamlIO.outputting() || !MF.JumpTableInfo.Entries.empty())
627 YamlIO.mapOptional("jumpTable", MF.JumpTableInfo, MachineJumpTable());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp449 if (!YamlMF.JumpTableInfo.Entries.empty() &&
450 initializeJumpTableInfo(PFS, YamlMF.JumpTableInfo))

Completed in 125 milliseconds