Home
last modified time | relevance | path

Searched refs:InstStore (Results 1 – 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceASanInstrumentation.cpp71 ICE_TLS_DEFINE_FIELD(std::vector<InstStore *> *, ASanInstrumentation,
220 ICE_TLS_SET_FIELD(LocalDtors, new std::vector<InstStore *>()); in instrumentFuncStart()
334 Context.insert(InstStore::create(Func, PoisonConst, PoisonAddrVar)); in instrumentFuncStart()
336 ->emplace_back(InstStore::create(Func, ZeroConst, PoisonAddrVar)); in instrumentFuncStart()
381 InstStore *Instr) { in instrumentStore()
385 InstStore::create(Context.getNode()->getCfg(), instrumentReloc(Reloc), in instrumentStore()
464 for (InstStore *RzUnpoison : *ICE_TLS_GET_FIELD(LocalDtors)) { in instrumentRet()
465 Context.insert(InstStore::create(Func, RzUnpoison->getData(), in instrumentRet()
DIceASanInstrumentation.h54 void instrumentStore(LoweringContext &Context, InstStore *Instr) override;
60 ICE_TLS_DECLARE_FIELD(std::vector<InstStore *> *, LocalDtors);
DIceInst.h755 class InstStore : public InstHighLevel {
756 InstStore() = delete;
757 InstStore(const InstStore &) = delete;
758 InstStore &operator=(const InstStore &) = delete;
761 static InstStore *create(Cfg *Func, Operand *Data, Operand *Addr,
765 return new (Func->allocate<InstStore>()) InstStore(Func, Data, Addr);
774 InstStore(Cfg *Func, Operand *Data, Operand *Addr);
DIceInst.cpp479 InstStore::InstStore(Cfg *Func, Operand *Data, Operand *Addr) in InstStore() function in Ice::InstStore
487 Variable *InstStore::getRmwBeacon() const { in getRmwBeacon()
491 void InstStore::setRmwBeacon(Variable *Beacon) { in setRmwBeacon()
856 void InstStore::dump(const Cfg *Func) const { in dump()
DIceInstrumentation.h75 virtual void instrumentStore(LoweringContext &, class InstStore *) {} in instrumentStore() argument
DIceInstrumentation.cpp106 instrumentStore(Context, llvm::cast<InstStore>(Instr)); in instrumentInst()
DIceTargetLowering.cpp334 else if (llvm::isa<InstStore>(*Context.getCur())) in doAddressOpt()
426 lowerStore(llvm::cast<InstStore>(Instr)); in lower()
DIceTargetLowering.h375 virtual void lowerStore(const InstStore *Instr) = 0;
DIceTargetLoweringMIPS32.h755 void lowerStore(const InstStore *Instr) override;
DIceConverter.cpp340 return Ice::InstStore::create(Func.get(), Val, Addr); in convertStoreInstruction()
DIceTargetLoweringX8664.cpp577 auto *Store = llvm::dyn_cast<InstStore>(I3); in findRMW()
2283 InstStore::create(Func, legalize(StackArgs[i]), StackArgLocations[i])); in lowerCall()
3426 auto *Store = InstStore::create(Func, Value, Ptr); in lowerIntrinsic()
5828 void TargetX8664::lowerStore(const InstStore *Instr) { in lowerStore()
5844 auto *Instr = llvm::cast<InstStore>(Context.getCur()); in doAddressOptStore()
5849 auto *NewStore = Context.insert<InstStore>(Data, OptAddr); in doAddressOptStore()
DIceTargetLoweringX8632.cpp568 auto *Store = llvm::dyn_cast<InstStore>(I3); in findRMW()
2473 InstStore::create(Func, legalize(StackArgs[i]), StackArgLocations[i])); in lowerCall()
3900 auto *Store = InstStore::create(Func, Value, Ptr); in lowerIntrinsic()
6441 void TargetX8632::lowerStore(const InstStore *Instr) { in lowerStore()
6463 auto *Instr = llvm::cast<InstStore>(Context.getCur()); in doAddressOptStore()
6468 auto *NewStore = Context.insert<InstStore>(Data, OptAddr); in doAddressOptStore()
DIceTargetLoweringX8664.h277 void lowerStore(const InstStore *Instr) override;
DIceTargetLoweringX8632.h281 void lowerStore(const InstStore *Instr) override;
DIceTargetLoweringARM32.h290 void lowerStore(const InstStore *Instr) override;
DIceTargetLoweringARM32.cpp3586 lowerStore(InstStore::create(Func, StackArg.first, Addr)); in lowerCall()
5954 void TargetARM32::lowerStore(const InstStore *Instr) { in lowerStore()
5974 assert(llvm::isa<InstStore>(Instr)); in doAddressOptStore()
5980 Context.insert<InstStore>(Src, Mem); in doAddressOptStore()
DIceTargetLoweringMIPS32.cpp3427 lowerStore(InstStore::create(Func, StackArg.first, Addr)); in lowerCall()
5533 void TargetMIPS32::lowerStore(const InstStore *Instr) { in lowerStore()
5561 assert(llvm::isa<InstStore>(Instr)); in doAddressOptStore()
5567 Context.insert<InstStore>(Src, Mem); in doAddressOptStore()
DWasmTranslator.cpp1260 Control()->appendInst(InstStore::create(Func, StoreVal, RealAddr)); in StoreMem()
DPNaClTranslator.cpp2626 Ice::InstStore::create(Func.get(), Value, Address, Alignment)); in ProcessRecord()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DOptimizer.cpp697 if(llvm::isa<Ice::InstStore>(&instruction)) in isStore()
DSubzeroReactor.cpp1522 auto store = Ice::InstStore::create(::function, V(value), V(ptr), align); in createStore()
4793 auto store = Ice::InstStore::create(awaitFunc, promiseVal, outPtr); in generateAwaitFunction()