/external/swiftshader/third_party/subzero/src/ |
D | IceASanInstrumentation.cpp | 71 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() 384 auto *NewStore = InstStore::create( in instrumentStore() 463 for (InstStore *RzUnpoison : *ICE_TLS_GET_FIELD(LocalDtors)) { in instrumentRet() 465 InstStore::create(Func, RzUnpoison->getData(), RzUnpoison->getAddr())); in instrumentRet()
|
D | IceASanInstrumentation.h | 54 void instrumentStore(LoweringContext &Context, InstStore *Instr) override; 60 ICE_TLS_DECLARE_FIELD(std::vector<InstStore *> *, LocalDtors);
|
D | IceInst.h | 750 class InstStore : public InstHighLevel { 751 InstStore() = delete; 752 InstStore(const InstStore &) = delete; 753 InstStore &operator=(const InstStore &) = delete; 756 static InstStore *create(Cfg *Func, Operand *Data, Operand *Addr, 760 return new (Func->allocate<InstStore>()) InstStore(Func, Data, Addr); 771 InstStore(Cfg *Func, Operand *Data, Operand *Addr);
|
D | IceInstrumentation.h | 76 virtual void instrumentStore(LoweringContext &, class InstStore *) {} in instrumentStore() argument
|
D | IceInst.cpp | 489 InstStore::InstStore(Cfg *Func, Operand *Data, Operand *Addr) in InstStore() function in Ice::InstStore 497 Variable *InstStore::getRmwBeacon() const { in getRmwBeacon() 501 void InstStore::setRmwBeacon(Variable *Beacon) { in setRmwBeacon() 873 void InstStore::dump(const Cfg *Func) const { in dump()
|
D | IceInstrumentation.cpp | 106 instrumentStore(Context, llvm::cast<InstStore>(Instr)); in instrumentInst()
|
D | IceTargetLowering.cpp | 365 else if (llvm::isa<InstStore>(*Context.getCur())) in doAddressOpt() 470 lowerStore(llvm::cast<InstStore>(Instr)); in lower()
|
D | IceTargetLowering.h | 417 virtual void lowerStore(const InstStore *Instr) = 0;
|
D | IceConverter.cpp | 340 return Ice::InstStore::create(Func.get(), Val, Addr); in convertStoreInstruction()
|
D | IceTargetLoweringMIPS32.h | 787 void lowerStore(const InstStore *Instr) override;
|
D | IceTargetLoweringX86BaseImpl.h | 722 auto *Store = llvm::dyn_cast<InstStore>(I3); 2677 InstStore::create(Func, legalize(StackArgs[i]), StackArgLocations[i])); 4174 auto *Store = InstStore::create(Func, Value, Ptr); 6884 void TargetX86Base<TraitsType>::lowerStore(const InstStore *Instr) { 6907 auto *Instr = llvm::cast<InstStore>(Context.getCur()); 6912 auto *NewStore = Context.insert<InstStore>(Data, OptAddr);
|
D | IceTargetLoweringARM32.h | 291 void lowerStore(const InstStore *Instr) override;
|
D | IceTargetLoweringMIPS32.cpp | 3475 lowerStore(InstStore::create(Func, StackArg.first, Addr)); in lowerCall() 5603 void TargetMIPS32::lowerStore(const InstStore *Instr) { in lowerStore() 5631 assert(llvm::isa<InstStore>(Instr)); in doAddressOptStore() 5637 Context.insert<InstStore>(Src, Mem); in doAddressOptStore()
|
D | IceTargetLoweringARM32.cpp | 3773 lowerStore(InstStore::create(Func, StackArg.first, Addr)); in lowerCall() 6162 void TargetARM32::lowerStore(const InstStore *Instr) { in lowerStore() 6182 assert(llvm::isa<InstStore>(Instr)); in doAddressOptStore() 6188 Context.insert<InstStore>(Src, Mem); in doAddressOptStore()
|
D | WasmTranslator.cpp | 1260 Control()->appendInst(InstStore::create(Func, StoreVal, RealAddr)); in StoreMem()
|
D | IceTargetLoweringX86Base.h | 284 void lowerStore(const InstStore *Instr) override;
|
D | PNaClTranslator.cpp | 2626 Ice::InstStore::create(Func.get(), Value, Address, Alignment)); in ProcessRecord()
|
/external/swiftshader/src/Reactor/ |
D | Optimizer.cpp | 602 if(llvm::isa<Ice::InstStore>(&instruction)) in isStore() 614 if(auto *store = llvm::dyn_cast<Ice::InstStore>(instruction)) in storeAddress() 648 if(auto *store = llvm::dyn_cast<Ice::InstStore>(instruction)) in storeData() 665 if(auto *instStore = llvm::dyn_cast<Ice::InstStore>(store)) in storeSize() 688 if(auto *instStore = llvm::dyn_cast<Ice::InstStore>(store)) in loadTypeMatchesStore()
|
D | SubzeroReactor.cpp | 965 auto store = Ice::InstStore::create(::function, value, ptr, align); in createStore()
|