Searched defs:StoreInst (Results 1 - 6 of 6) sorted by relevance

/external/llvm/unittests/Transforms/Utils/
H A DMemorySSA.cpp83 StoreInst *StoreInst = B.CreateStore(B.getInt8(16), PointerArg); local
97 MemoryDef *StoreAccess = cast<MemoryDef>(MSSA.getMemoryAccess(StoreInst));
124 StoreInst *StoreInst = B.CreateStore(B.getInt8(16), PointerArg); local
134 MemoryDef *StoreAccess = cast<MemoryDef>(MSSA.getMemoryAccess(StoreInst));
167 StoreInst *StoreInst = B.CreateStore(B.getInt8(16), PointerArg); local
180 MemoryDef *StoreAccess = cast<MemoryDef>(MSSA.getMemoryAccess(StoreInst));
228 StoreInst *S
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp418 MachineInstr &StoreInst) {
420 unsigned StOpc = StoreInst.getOpcode();
602 MachineInstr &StoreInst,
604 assert(isMatchingStore(LoadInst, StoreInst) && "Expect only matched ld/st.");
606 int StoreSize = getMemScale(StoreInst);
607 int UnscaledStOffset = TII->isUnscaledLdSt(StoreInst)
608 ? getLdStOffsetOp(StoreInst).getImm()
609 : getLdStOffsetOp(StoreInst).getImm() * StoreSize;
417 isMatchingStore(MachineInstr &LoadInst, MachineInstr &StoreInst) argument
/external/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.cpp756 const MCInstrDesc& StoreInst = TII.get(isPPC64 ? PPC::STD local
882 BuildMI(MBB, MBBI, dl, StoreInst)
889 BuildMI(MBB, MBBI, dl, StoreInst)
896 BuildMI(MBB, MBBI, dl, StoreInst)
903 BuildMI(MBB, MBBI, dl, StoreInst)
/external/swiftshader/third_party/LLVM/include/llvm/
H A DInstructions.h250 // StoreInst Class
253 /// StoreInst - an instruction for storing to memory
255 class StoreInst : public Instruction { class in namespace:llvm
259 virtual StoreInst *clone_impl() const;
265 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
266 StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
267 StoreInst(Value *Val, Value *Ptr, bool isVolatile = false,
269 StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
270 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
272 StoreInst(Valu
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstructions.cpp1077 // StoreInst Implementation
1080 void StoreInst::AssertOK() {
1092 StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore) function in class:StoreInst
1094 OperandTraits<StoreInst>::op_begin(this),
1095 OperandTraits<StoreInst>::operands(this),
1105 StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd) function in class:StoreInst
1107 OperandTraits<StoreInst>::op_begin(this),
1108 OperandTraits<StoreInst>
1118 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, function in class:StoreInst
1132 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, function in class:StoreInst
1146 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, function in class:StoreInst
1162 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, function in class:StoreInst
1176 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, function in class:StoreInst
1190 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, function in class:StoreInst
[all...]
/external/llvm/include/llvm/IR/
H A DInstructions.h300 // StoreInst Class
303 /// StoreInst - an instruction for storing to memory
305 class StoreInst : public Instruction { class in namespace:llvm
312 StoreInst *cloneImpl() const;
319 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
320 StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
321 StoreInst(Value *Val, Value *Ptr, bool isVolatile = false,
323 StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
324 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
326 StoreInst(Valu
[all...]

Completed in 253 milliseconds