Searched refs:InstJumpTable (Results 1 – 16 of 16) sorted by relevance
/third_party/skia/third_party/externals/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 | 1024 class InstJumpTable : public InstHighLevel { 1025 InstJumpTable() = delete; 1026 InstJumpTable(const InstJumpTable &) = delete; 1027 InstJumpTable &operator=(const InstJumpTable &) = delete; 1030 static InstJumpTable *create(Cfg *Func, SizeT NumTargets, CfgNode *Default) { in create() 1031 return new (Func->allocate<InstJumpTable>()) in create() 1032 InstJumpTable(Func, NumTargets, Default); in create() 1069 InstJumpTable(Cfg *Func, SizeT NumTargets, CfgNode *Default);
|
D | IceCfg.h | 140 void addJumpTable(InstJumpTable *JumpTable) { in addJumpTable() 325 CfgVector<InstJumpTable *> JumpTables;
|
D | IceSwitchLowering.cpp | 79 InstJumpTable::create(Func, TotalRange, Instr->getLabelDefault()); in clusterizeSwitch()
|
D | IceInst.cpp | 590 InstJumpTable::InstJumpTable(Cfg *Func, SizeT NumTargets, CfgNode *Default) in InstJumpTable() function in Ice::InstJumpTable 600 bool InstJumpTable::repointEdges(CfgNode *OldNode, CfgNode *NewNode) { in repointEdges() 611 JumpTableData InstJumpTable::toJumpTableData(Assembler *Asm) const { in toJumpTableData() 999 void InstJumpTable::dump(const Cfg *Func) const { in dump()
|
D | IceDefs.h | 68 class InstJumpTable; variable
|
D | IceTargetLowering.h | 312 const InstJumpTable *JumpTable) const = 0;
|
D | IceCfg.cpp | 1642 for (const InstJumpTable *JumpTable : JumpTables) { in emitJumpTables() 1648 for (const InstJumpTable *JumpTable : JumpTables) in emitJumpTables()
|
D | IceTargetLoweringMIPS32.h | 132 const InstJumpTable *JumpTable) const override;
|
D | IceTargetLoweringX8632.h | 368 const InstJumpTable *JumpTable) const override;
|
D | IceTargetLoweringX8664.h | 364 const InstJumpTable *JumpTable) const override;
|
D | IceTargetLoweringARM32.h | 151 const InstJumpTable *JumpTable) const override;
|
D | IceTargetLoweringX8664.cpp | 5903 InstJumpTable *JumpTable = Case.getJumpTable(); in lowerCaseCluster() 6889 const InstJumpTable *JumpTable) const { in emitJumpTable()
|
D | IceTargetLoweringX8632.cpp | 6525 InstJumpTable *JumpTable = Case.getJumpTable(); in lowerCaseCluster() 7616 const InstJumpTable *JumpTable) const { in emitJumpTable()
|
D | IceTargetLoweringMIPS32.cpp | 1048 const InstJumpTable *JumpTable) const { in emitJumpTable()
|
D | IceTargetLoweringARM32.cpp | 1066 const InstJumpTable *JumpTable) const { in emitJumpTable()
|