/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceInst.h | 650 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);
|
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 | 382 InstLoad::InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr) in InstLoad() function in Ice::InstLoad 845 void InstLoad::dump(const Cfg *Func) const { in dump()
|
D | IceTargetLowering.cpp | 332 if (llvm::isa<InstLoad>(*Context.getCur())) in doAddressOpt() 411 lowerLoad(llvm::cast<InstLoad>(Instr)); in lower()
|
D | IceTargetLowering.h | 370 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 | IceTargetLoweringX8664.cpp | 575 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()
|
D | IceTargetLoweringX8632.cpp | 566 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()
|
D | IceTargetLoweringMIPS32.h | 750 void lowerLoad(const InstLoad *Instr) override;
|
D | IceConverter.cpp | 334 return Ice::InstLoad::create(Func.get(), Dest, Src); in convertLoadInstruction()
|
D | IceTargetLoweringX8664.h | 272 void lowerLoad(const InstLoad *Instr) override;
|
D | IceTargetLoweringX8632.h | 276 void lowerLoad(const InstLoad *Instr) override;
|
D | IceTargetLoweringARM32.h | 285 void lowerLoad(const InstLoad *Instr) override;
|
D | IceTargetLoweringARM32.cpp | 5276 void TargetARM32::lowerLoad(const InstLoad *Load) { in lowerLoad() 5711 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad() 5717 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
|
D | IceTargetLoweringMIPS32.cpp | 5147 void TargetMIPS32::lowerLoad(const InstLoad *Instr) { in lowerLoad() 5375 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad() 5381 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
|
D | PNaClTranslator.cpp | 2610 CurrentNode->appendInst(Ice::InstLoad::create( in ProcessRecord()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | Optimizer.cpp | 687 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()
|