Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceInst.h652 class InstLoad : public InstHighLevel {
653 InstLoad() = delete;
654 InstLoad(const InstLoad &) = delete;
655 InstLoad &operator=(const InstLoad &) = delete;
658 static InstLoad *create(Cfg *Func, Variable *Dest, Operand *SourceAddr,
662 return new (Func->allocate<InstLoad>()) InstLoad(Func, Dest, SourceAddr);
669 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.cpp384 InstLoad::InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr) in InstLoad() function in Ice::InstLoad
854 void InstLoad::dump(const Cfg *Func) const { in dump()
DIceTargetLowering.cpp363 if (llvm::isa<InstLoad>(*Context.getCur())) in doAddressOpt()
442 lowerLoad(llvm::cast<InstLoad>(Instr)); in lower()
DIceTargetLowering.h405 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()
DIceConverter.cpp334 return Ice::InstLoad::create(Func.get(), Dest, Src); in convertLoadInstruction()
DIceTargetLoweringX86BaseImpl.h717 auto *Load = llvm::dyn_cast<InstLoad>(I1);
825 if (auto *Load = llvm::dyn_cast<InstLoad>(CurInst)) {
4205 auto *Load = InstLoad::create(Func, Dest, Instr->getArg(0));
6048 void TargetX86Base<TraitsType>::lowerLoad(const InstLoad *Load) {
6077 if (Op0Def == nullptr || !llvm::isa<InstLoad>(Op0Def))
6086 llvm::isa<InstLoad>(Op1Def)) {
6101 Context.insert<InstLoad>(Dest, OptAddr);
DIceTargetLoweringMIPS32.h782 void lowerLoad(const InstLoad *Instr) override;
DIceTargetLoweringARM32.h286 void lowerLoad(const InstLoad *Instr) override;
DIceTargetLoweringX86Base.h279 void lowerLoad(const InstLoad *Instr) override;
DIceTargetLoweringMIPS32.cpp5194 void TargetMIPS32::lowerLoad(const InstLoad *Instr) { in lowerLoad()
5422 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad()
5428 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
DIceTargetLoweringARM32.cpp5472 void TargetARM32::lowerLoad(const InstLoad *Load) { in lowerLoad()
5908 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad()
5914 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
DPNaClTranslator.cpp2610 CurrentNode->appendInst(Ice::InstLoad::create( in ProcessRecord()
/external/swiftshader/src/Reactor/
DOptimizer.cpp680 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()