/external/swiftshader/third_party/subzero/src/ |
D | IceInst.h | 775 class InstSwitch : public InstHighLevel { 776 InstSwitch() = delete; 777 InstSwitch(const InstSwitch &) = delete; 778 InstSwitch &operator=(const InstSwitch &) = delete; 781 static InstSwitch *create(Cfg *Func, SizeT NumCases, Operand *Source, in create() 783 return new (Func->allocate<InstSwitch>()) in create() 784 InstSwitch(Func, NumCases, Source, LabelDefault); in create() 805 InstSwitch(Cfg *Func, SizeT NumCases, Operand *Source, CfgNode *LabelDefault);
|
D | IceInst.cpp | 506 InstSwitch::InstSwitch(Cfg *Func, SizeT NumCases, Operand *Source, in InstSwitch() function in Ice::InstSwitch 520 void InstSwitch::addBranch(SizeT CaseIndex, uint64_t Value, CfgNode *Label) { in addBranch() 526 NodeList InstSwitch::getTerminatorEdges() const { in getTerminatorEdges() 544 bool InstSwitch::repointEdges(CfgNode *OldNode, CfgNode *NewNode) { in repointEdges() 892 void InstSwitch::dump(const Cfg *Func) const { in dump()
|
D | IceSwitchLowering.cpp | 25 const InstSwitch *Instr) { in clusterizeSwitch()
|
D | IceInstrumentation.h | 77 virtual void instrumentSwitch(LoweringContext &, class InstSwitch *) {} in instrumentSwitch() argument
|
D | IceSwitchLowering.h | 66 static CaseClusterArray clusterizeSwitch(Cfg *Func, const InstSwitch *Instr);
|
D | IceInstrumentation.cpp | 109 instrumentSwitch(Context, llvm::cast<InstSwitch>(Instr)); in instrumentInst()
|
D | IceDefs.h | 70 class InstSwitch; variable
|
D | IceConverter.cpp | 541 Ice::InstSwitch *Switch = in convertSwitchInstruction() 542 Ice::InstSwitch::create(Func.get(), NumCases, Source, LabelDefault); in convertSwitchInstruction()
|
D | WasmTranslator.cpp | 987 InstSwitch *CurrentSwitch = nullptr; 998 CurrentSwitch = InstSwitch::create(Func, Count - 1, Key, Default); in Switch() 1140 auto *Switch = InstSwitch::create(Func, IndirectTable.size(), in CallIndirect()
|
D | IceTargetLowering.h | 418 virtual void lowerSwitch(const InstSwitch *Instr) = 0;
|
D | IceTargetLowering.cpp | 473 lowerSwitch(llvm::cast<InstSwitch>(Instr)); in lower()
|
D | IceTargetLoweringMIPS32.h | 788 void lowerSwitch(const InstSwitch *Instr) override;
|
D | IceCfgNode.cpp | 35 if (llvm::isa<InstSwitch>(Instr) || llvm::isa<InstBr>(Instr)) { in appendInst()
|
D | PNaClTranslator.cpp | 2507 std::unique_ptr<Ice::InstSwitch> Switch( in ProcessRecord() 2508 Ice::InstSwitch::create(Func.get(), NumCases, Cond, DefaultLabel)); in ProcessRecord()
|
D | IceTargetLoweringARM32.h | 292 void lowerSwitch(const InstSwitch *Instr) override;
|
D | IceTargetLoweringX86Base.h | 285 void lowerSwitch(const InstSwitch *Instr) override;
|
D | IceTargetLoweringMIPS32.cpp | 5641 void TargetMIPS32::lowerSwitch(const InstSwitch *Instr) { in lowerSwitch()
|
D | IceTargetLoweringARM32.cpp | 6192 void TargetARM32::lowerSwitch(const InstSwitch *Instr) { in lowerSwitch()
|
D | IceTargetLoweringX86BaseImpl.h | 7051 void TargetX86Base<TraitsType>::lowerSwitch(const InstSwitch *Instr) {
|
/external/swiftshader/src/Reactor/ |
D | SubzeroReactor.cpp | 153 class SwitchCases : public Ice::InstSwitch {}; 1278 auto switchInst = Ice::InstSwitch::create(::function, numCases, control, defaultBranch); in createSwitch()
|