Searched refs:InstJumpTable (Results 1 – 14 of 14) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceSwitchLowering.h | 46 CaseCluster(uint64_t Low, uint64_t High, InstJumpTable *JT) in CaseCluster() 56 InstJumpTable *getJumpTable() const { in getJumpTable() 74 InstJumpTable *JT; /// Jump table targets.
|
D | IceInst.h | 1075 class InstJumpTable : public InstHighLevel { 1076 InstJumpTable() = delete; 1077 InstJumpTable(const InstJumpTable &) = delete; 1078 InstJumpTable &operator=(const InstJumpTable &) = delete; 1081 static InstJumpTable *create(Cfg *Func, SizeT NumTargets, CfgNode *Default) { in create() 1082 return new (Func->allocate<InstJumpTable>()) in create() 1083 InstJumpTable(Func, NumTargets, Default); in create() 1120 InstJumpTable(Cfg *Func, SizeT NumTargets, CfgNode *Default);
|
D | IceCfg.h | 140 void addJumpTable(InstJumpTable *JumpTable) { in addJumpTable() 326 CfgVector<InstJumpTable *> JumpTables;
|
D | IceSwitchLowering.cpp | 79 InstJumpTable::create(Func, TotalRange, Instr->getLabelDefault()); in clusterizeSwitch()
|
D | IceInst.cpp | 599 InstJumpTable::InstJumpTable(Cfg *Func, SizeT NumTargets, CfgNode *Default) in InstJumpTable() function in Ice::InstJumpTable 609 bool InstJumpTable::repointEdges(CfgNode *OldNode, CfgNode *NewNode) { in repointEdges() 620 JumpTableData InstJumpTable::toJumpTableData(Assembler *Asm) const { in toJumpTableData() 1060 void InstJumpTable::dump(const Cfg *Func) const { in dump()
|
D | IceDefs.h | 68 class InstJumpTable; variable
|
D | IceCfg.cpp | 1612 for (const InstJumpTable *JT : JumpTables) in markNodesForSandboxing() 1648 for (const InstJumpTable *JumpTable : JumpTables) { in emitJumpTables() 1654 for (const InstJumpTable *JumpTable : JumpTables) in emitJumpTables()
|
D | IceTargetLowering.h | 312 const InstJumpTable *JumpTable) const = 0;
|
D | IceTargetLoweringMIPS32.h | 132 const InstJumpTable *JumpTable) const override;
|
D | IceTargetLoweringARM32.h | 152 const InstJumpTable *JumpTable) const override;
|
D | IceTargetLoweringX86Base.h | 393 const InstJumpTable *JumpTable) const override;
|
D | IceTargetLoweringX86BaseImpl.h | 7027 InstJumpTable *JumpTable = Case.getJumpTable(); 8247 const Cfg *, const InstJumpTable *JumpTable) const {
|
D | IceTargetLoweringMIPS32.cpp | 1063 const InstJumpTable *JumpTable) const { in emitJumpTable()
|
D | IceTargetLoweringARM32.cpp | 1215 const InstJumpTable *JumpTable) const { in emitJumpTable()
|