Home
last modified time | relevance | path

Searched refs:InstLoad (Results 1 – 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInst.h650 class InstLoad : public InstHighLevel {
651 InstLoad() = delete;
652 InstLoad(const InstLoad &) = delete;
653 InstLoad &operator=(const InstLoad &) = delete;
656 static InstLoad *create(Cfg *Func, Variable *Dest, Operand *SourceAddr,
660 return new (Func->allocate<InstLoad>()) InstLoad(Func, Dest, SourceAddr);
667 InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr);
DIceASanInstrumentation.h53 void instrumentLoad(LoweringContext &Context, InstLoad *Instr) override;
DIceInstrumentation.h71 virtual void instrumentLoad(LoweringContext &, class InstLoad *) {} in instrumentLoad() argument
DIceInstrumentation.cpp94 instrumentLoad(Context, llvm::cast<InstLoad>(Instr)); in instrumentInst()
DIceASanInstrumentation.cpp365 InstLoad *Instr) { in instrumentLoad()
368 auto *NewLoad = InstLoad::create(Context.getNode()->getCfg(), in instrumentLoad()
DIceInst.cpp382 InstLoad::InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr) in InstLoad() function in Ice::InstLoad
845 void InstLoad::dump(const Cfg *Func) const { in dump()
DIceTargetLowering.cpp332 if (llvm::isa<InstLoad>(*Context.getCur())) in doAddressOpt()
411 lowerLoad(llvm::cast<InstLoad>(Instr)); in lower()
DIceTargetLowering.h370 virtual void lowerLoad(const InstLoad *Instr) = 0;
DWasmTranslator.cpp286 Entry->appendInst(InstLoad::create(Func, WasmMemoryV, WasmMemoryPtr)); in Start()
1212 Control()->appendInst(InstLoad::create(Func, LoadResult, RealAddr)); in LoadMem()
DIceTargetLoweringX8664.cpp575 auto *Load = llvm::dyn_cast<InstLoad>(I1); in findRMW()
689 if (auto *Load = llvm::dyn_cast<InstLoad>(CurInst)) { in doLoadOpt()
3395 auto *Load = InstLoad::create(Func, Dest, Instr->getArg(0)); in lowerIntrinsic()
4984 void TargetX8664::lowerLoad(const InstLoad *Load) { in lowerLoad()
5012 if (Op0Def == nullptr || !llvm::isa<InstLoad>(Op0Def)) in doAddressOptOther()
5021 llvm::isa<InstLoad>(Op1Def)) { in doAddressOptOther()
5035 Context.insert<InstLoad>(Dest, OptAddr); in doAddressOptLoad()
DIceTargetLoweringX8632.cpp566 auto *Load = llvm::dyn_cast<InstLoad>(I1); in findRMW()
680 if (auto *Load = llvm::dyn_cast<InstLoad>(CurInst)) { in doLoadOpt()
3856 auto *Load = InstLoad::create(Func, Dest, Instr->getArg(0)); in lowerIntrinsic()
5574 void TargetX8632::lowerLoad(const InstLoad *Load) { in lowerLoad()
5602 if (Op0Def == nullptr || !llvm::isa<InstLoad>(Op0Def)) in doAddressOptOther()
5611 llvm::isa<InstLoad>(Op1Def)) { in doAddressOptOther()
5625 Context.insert<InstLoad>(Dest, OptAddr); in doAddressOptLoad()
DIceTargetLoweringMIPS32.h750 void lowerLoad(const InstLoad *Instr) override;
DIceConverter.cpp334 return Ice::InstLoad::create(Func.get(), Dest, Src); in convertLoadInstruction()
DIceTargetLoweringX8664.h272 void lowerLoad(const InstLoad *Instr) override;
DIceTargetLoweringX8632.h276 void lowerLoad(const InstLoad *Instr) override;
DIceTargetLoweringARM32.h285 void lowerLoad(const InstLoad *Instr) override;
DIceTargetLoweringARM32.cpp5276 void TargetARM32::lowerLoad(const InstLoad *Load) { in lowerLoad()
5711 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad()
5717 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
DIceTargetLoweringMIPS32.cpp5147 void TargetMIPS32::lowerLoad(const InstLoad *Instr) { in lowerLoad()
5375 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad()
5381 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
DPNaClTranslator.cpp2610 CurrentNode->appendInst(Ice::InstLoad::create( in ProcessRecord()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DOptimizer.cpp687 if(llvm::isa<Ice::InstLoad>(&instruction)) in isLoad()
DSubzeroReactor.cpp188 auto load = Ice::InstLoad::create(function, result, ptr, align); in createLoad()
4790 auto load = Ice::InstLoad::create(awaitFunc, promiseVal, promise); in generateAwaitFunction()