Searched refs:InstLoad (Results 1 – 19 of 19) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceInst.h | 652 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);
|
D | IceASanInstrumentation.h | 53 void instrumentLoad(LoweringContext &Context, InstLoad *Instr) override;
|
D | IceInstrumentation.h | 71 virtual void instrumentLoad(LoweringContext &, class InstLoad *) {} in instrumentLoad() argument
|
D | IceInstrumentation.cpp | 94 instrumentLoad(Context, llvm::cast<InstLoad>(Instr)); in instrumentInst()
|
D | IceASanInstrumentation.cpp | 365 InstLoad *Instr) { in instrumentLoad() 368 auto *NewLoad = InstLoad::create(Context.getNode()->getCfg(), in instrumentLoad()
|
D | IceInst.cpp | 384 InstLoad::InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr) in InstLoad() function in Ice::InstLoad 854 void InstLoad::dump(const Cfg *Func) const { in dump()
|
D | IceTargetLowering.cpp | 363 if (llvm::isa<InstLoad>(*Context.getCur())) in doAddressOpt() 442 lowerLoad(llvm::cast<InstLoad>(Instr)); in lower()
|
D | IceTargetLowering.h | 405 virtual void lowerLoad(const InstLoad *Instr) = 0;
|
D | WasmTranslator.cpp | 286 Entry->appendInst(InstLoad::create(Func, WasmMemoryV, WasmMemoryPtr)); in Start() 1212 Control()->appendInst(InstLoad::create(Func, LoadResult, RealAddr)); in LoadMem()
|
D | IceConverter.cpp | 334 return Ice::InstLoad::create(Func.get(), Dest, Src); in convertLoadInstruction()
|
D | IceTargetLoweringX86BaseImpl.h | 717 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);
|
D | IceTargetLoweringMIPS32.h | 782 void lowerLoad(const InstLoad *Instr) override;
|
D | IceTargetLoweringARM32.h | 286 void lowerLoad(const InstLoad *Instr) override;
|
D | IceTargetLoweringX86Base.h | 279 void lowerLoad(const InstLoad *Instr) override;
|
D | IceTargetLoweringMIPS32.cpp | 5194 void TargetMIPS32::lowerLoad(const InstLoad *Instr) { in lowerLoad() 5422 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad() 5428 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
|
D | IceTargetLoweringARM32.cpp | 5472 void TargetARM32::lowerLoad(const InstLoad *Load) { in lowerLoad() 5908 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad() 5914 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
|
D | PNaClTranslator.cpp | 2610 CurrentNode->appendInst(Ice::InstLoad::create( in ProcessRecord()
|
/external/swiftshader/src/Reactor/ |
D | Optimizer.cpp | 680 if(llvm::isa<Ice::InstLoad>(&instruction)) in isLoad()
|
D | SubzeroReactor.cpp | 188 auto load = Ice::InstLoad::create(function, result, ptr, align); in createLoad() 4790 auto load = Ice::InstLoad::create(awaitFunc, promiseVal, promise); in generateAwaitFunction()
|