Lines Matching refs:MachineJumpTableInfo

242     JumpTableInfo->~MachineJumpTableInfo();  in clear()
263 MachineJumpTableInfo *MachineFunction::
268 MachineJumpTableInfo((MachineJumpTableInfo::JTEntryKind)EntryKind); in getOrCreateJumpTableInfo()
812 unsigned MachineJumpTableInfo::getEntrySize(const DataLayout &TD) const { in getEntrySize()
816 case MachineJumpTableInfo::EK_BlockAddress: in getEntrySize()
818 case MachineJumpTableInfo::EK_GPRel64BlockAddress: in getEntrySize()
820 case MachineJumpTableInfo::EK_GPRel32BlockAddress: in getEntrySize()
821 case MachineJumpTableInfo::EK_LabelDifference32: in getEntrySize()
822 case MachineJumpTableInfo::EK_Custom32: in getEntrySize()
824 case MachineJumpTableInfo::EK_Inline: in getEntrySize()
831 unsigned MachineJumpTableInfo::getEntryAlignment(const DataLayout &TD) const { in getEntryAlignment()
836 case MachineJumpTableInfo::EK_BlockAddress: in getEntryAlignment()
838 case MachineJumpTableInfo::EK_GPRel64BlockAddress: in getEntryAlignment()
840 case MachineJumpTableInfo::EK_GPRel32BlockAddress: in getEntryAlignment()
841 case MachineJumpTableInfo::EK_LabelDifference32: in getEntryAlignment()
842 case MachineJumpTableInfo::EK_Custom32: in getEntryAlignment()
844 case MachineJumpTableInfo::EK_Inline: in getEntryAlignment()
851 unsigned MachineJumpTableInfo::createJumpTableIndex( in createJumpTableIndex()
860 bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old, in ReplaceMBBInJumpTables()
871 bool MachineJumpTableInfo::ReplaceMBBInJumpTable(unsigned Idx, in ReplaceMBBInJumpTable()
885 void MachineJumpTableInfo::print(raw_ostream &OS) const { in print()
900 LLVM_DUMP_METHOD void MachineJumpTableInfo::dump() const { print(dbgs()); } in dump()