Lines Matching refs:MachineJumpTableInfo

293     JumpTableInfo->~MachineJumpTableInfo();  in clear()
314 MachineJumpTableInfo *MachineFunction::
319 MachineJumpTableInfo((MachineJumpTableInfo::JTEntryKind)EntryKind); in getOrCreateJumpTableInfo()
1248 unsigned MachineJumpTableInfo::getEntrySize(const DataLayout &TD) const { in getEntrySize()
1252 case MachineJumpTableInfo::EK_BlockAddress: in getEntrySize()
1254 case MachineJumpTableInfo::EK_GPRel64BlockAddress: in getEntrySize()
1255 case MachineJumpTableInfo::EK_LabelDifference64: in getEntrySize()
1257 case MachineJumpTableInfo::EK_GPRel32BlockAddress: in getEntrySize()
1258 case MachineJumpTableInfo::EK_LabelDifference32: in getEntrySize()
1259 case MachineJumpTableInfo::EK_Custom32: in getEntrySize()
1261 case MachineJumpTableInfo::EK_Inline: in getEntrySize()
1268 unsigned MachineJumpTableInfo::getEntryAlignment(const DataLayout &TD) const { in getEntryAlignment()
1273 case MachineJumpTableInfo::EK_BlockAddress: in getEntryAlignment()
1275 case MachineJumpTableInfo::EK_GPRel64BlockAddress: in getEntryAlignment()
1276 case MachineJumpTableInfo::EK_LabelDifference64: in getEntryAlignment()
1278 case MachineJumpTableInfo::EK_GPRel32BlockAddress: in getEntryAlignment()
1279 case MachineJumpTableInfo::EK_LabelDifference32: in getEntryAlignment()
1280 case MachineJumpTableInfo::EK_Custom32: in getEntryAlignment()
1282 case MachineJumpTableInfo::EK_Inline: in getEntryAlignment()
1289 unsigned MachineJumpTableInfo::createJumpTableIndex( in createJumpTableIndex()
1298 bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old, in ReplaceMBBInJumpTables()
1308 bool MachineJumpTableInfo::RemoveMBBFromJumpTables(MachineBasicBlock *MBB) { in RemoveMBBFromJumpTables()
1320 bool MachineJumpTableInfo::ReplaceMBBInJumpTable(unsigned Idx, in ReplaceMBBInJumpTable()
1334 void MachineJumpTableInfo::print(raw_ostream &OS) const { in print()
1351 LLVM_DUMP_METHOD void MachineJumpTableInfo::dump() const { print(dbgs()); } in dump()