Lines Matching refs:StoreInst
545 StoreInst *StoreInst::create(Value *V, Value *Ptr, MaybeAlign Align, in create()
555 StoreInst *StoreInst::create(Value *V, Value *Ptr, MaybeAlign Align, in create()
566 bool StoreInst::classof(const Value *From) { in classof()
570 Value *StoreInst::getValueOperand() const { in getValueOperand()
571 return Ctx.getValue(cast<llvm::StoreInst>(Val)->getValueOperand()); in getValueOperand()
574 Value *StoreInst::getPointerOperand() const { in getPointerOperand()
575 return Ctx.getValue(cast<llvm::StoreInst>(Val)->getPointerOperand()); in getPointerOperand()
579 void StoreInst::dump(raw_ostream &OS) const { in dump()
584 void StoreInst::dump() const { in dump()
767 auto *LLVMSt = cast<llvm::StoreInst>(LLVMV); in getOrCreateValueInternal()
768 It->second = std::unique_ptr<StoreInst>(new StoreInst(LLVMSt, *this)); in getOrCreateValueInternal()
804 StoreInst *Context::createStoreInst(llvm::StoreInst *SI) { in createStoreInst()
805 auto NewPtr = std::unique_ptr<StoreInst>(new StoreInst(SI, *this)); in createStoreInst()
806 return cast<StoreInst>(registerValue(std::move(NewPtr))); in createStoreInst()