Searched refs:InstLoad (Results 1 – 19 of 19) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceInst.h | 644 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);
|
D | IceASanInstrumentation.h | 53 void instrumentLoad(LoweringContext &Context, InstLoad *Instr) override;
|
D | IceInstrumentation.h | 72 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 | 392 InstLoad::InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr) in InstLoad() function in Ice::InstLoad 862 void InstLoad::dump(const Cfg *Func) const { in dump()
|
D | IceTargetLowering.cpp | 363 if (llvm::isa<InstLoad>(*Context.getCur())) in doAddressOpt() 455 lowerLoad(llvm::cast<InstLoad>(Instr)); in lower()
|
D | IceTargetLowering.h | 412 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 | 720 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);
|
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 | 5209 void TargetMIPS32::lowerLoad(const InstLoad *Instr) { in lowerLoad() 5437 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad() 5443 Context.insert<InstLoad>(Dest, Mem); in doAddressOptLoad()
|
D | IceTargetLoweringARM32.cpp | 5475 void TargetARM32::lowerLoad(const InstLoad *Load) { in lowerLoad() 5911 assert(llvm::isa<InstLoad>(Instr)); in doAddressOptLoad() 5917 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 | 592 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()
|
D | SubzeroReactor.cpp | 896 auto load = Ice::InstLoad::create(::function, result, ptr, align); in createLoad() 1495 auto load = Ice::InstLoad::create(::function, result, ptr, alignment); in createConstantVector()
|