Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceInst.h644 class InstLoad : public InstHighLevel {
645 InstLoad() = delete;
646 InstLoad(const InstLoad &) = delete;
647 InstLoad &operator=(const InstLoad &) = delete;
650 static InstLoad *create(Cfg *Func, Variable *Dest, Operand *SourceAddr,
654 return new (Func->allocate<InstLoad>()) InstLoad(Func, Dest, SourceAddr);
662 InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr);
DIceASanInstrumentation.h53 void instrumentLoad(LoweringContext &Context, InstLoad *Instr) override;
DIceInstrumentation.h72 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.cpp392 InstLoad::InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr) in InstLoad() function in Ice::InstLoad
862 void InstLoad::dump(const Cfg *Func) const { in dump()
DIceTargetLowering.cpp363 if (llvm::isa<InstLoad>(*Context.getCur())) in doAddressOpt()
455 lowerLoad(llvm::cast<InstLoad>(Instr)); in lower()
DIceTargetLowering.h412 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.h720 auto *Load = llvm::dyn_cast<InstLoad>(I1);
827 if (auto *Load = llvm::dyn_cast<InstLoad>(CurInst)) {
4130 auto *Load = InstLoad::create(Func, Dest, Instr->getArg(0));
5969 void TargetX86Base<TraitsType>::lowerLoad(const InstLoad *Load) {
5998 if (Op0Def == nullptr || !llvm::isa<InstLoad>(Op0Def))
6007 llvm::isa<InstLoad>(Op1Def)) {
6022 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.cpp5209 void TargetMIPS32::lowerLoad(const InstLoad *Instr) { in lowerLoad()
5437 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad()
5443 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
DIceTargetLoweringARM32.cpp5475 void TargetARM32::lowerLoad(const InstLoad *Load) { in lowerLoad()
5911 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad()
5917 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
DPNaClTranslator.cpp2610 CurrentNode->appendInst(Ice::InstLoad::create( in ProcessRecord()
/external/swiftshader/src/Reactor/
DOptimizer.cpp592 if(llvm::isa<Ice::InstLoad>(&instruction)) in isLoad()
631 if(auto *load = llvm::dyn_cast<Ice::InstLoad>(instruction)) in loadAddress()
690 if(auto *instLoad = llvm::dyn_cast<Ice::InstLoad>(load)) in loadTypeMatchesStore()
DSubzeroReactor.cpp896 auto load = Ice::InstLoad::create(::function, result, ptr, align); in createLoad()
1495 auto load = Ice::InstLoad::create(::function, result, ptr, alignment); in createConstantVector()