Home | History | Annotate | Download | only in src

Lines Matching defs:InstJumpTable

1070 class InstJumpTable : public InstHighLevel {
1071 InstJumpTable() = delete;
1072 InstJumpTable(const InstJumpTable &) = delete;
1073 InstJumpTable &operator=(const InstJumpTable &) = delete;
1076 static InstJumpTable *create(Cfg *Func, SizeT NumTargets, CfgNode *Default) {
1077 return new (Func->allocate<InstJumpTable>())
1078 InstJumpTable(Func, NumTargets, Default);
1097 // InstJumpTable.
1100 // InstJumpTable is just a placeholder for the switch targets, and it does not
1115 InstJumpTable(Cfg *Func, SizeT NumTargets, CfgNode *Default);