HomeSort by: relevance | last modified time | path
    Searched defs:StoreInst (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86AvoidStoreForwardingBlocks.cpp 102 void breakBlockedCopies(MachineInstr *LoadInst, MachineInstr *StoreInst,
106 MachineInstr *StoreInst, int64_t StDispImm,
110 MachineInstr *StoreInst, unsigned NStoreOpcode,
386 int64_t LoadDisp, MachineInstr *StoreInst,
391 MachineOperand &StoreBase = getBaseOperand(StoreInst);
394 MachineMemOperand *SMMO = *StoreInst->memoperands_begin();
413 MachineInstr *StInst = StoreInst;
414 auto PrevInstrIt = prev_nodbg(MachineBasicBlock::instr_iterator(StoreInst),
430 MachineOperand &StoreSrcVReg = StoreInst->getOperand(X86::AddrNumOperands);
437 int64_t LdDispImm, MachineInstr *StoreInst,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 658 const MCInstrDesc& StoreInst = TII.get(isPPC64 ? PPC::STD
824 BuildMI(MBB, MBBI, dl, StoreInst)
829 BuildMI(MBB, MBBI, dl, StoreInst)
834 BuildMI(MBB, MBBI, dl, StoreInst)
844 BuildMI(MBB, StackUpdateLoc, dl, StoreInst)
1050 BuildMI(MBB, MBBI, dl, StoreInst)
1055 BuildMI(MBB, MBBI, dl, StoreInst)
1060 BuildMI(MBB, MBBI, dl, StoreInst)
1075 BuildMI(MBB, MBBI, dl, StoreInst)
1080 BuildMI(MBB, MBBI, dl, StoreInst)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 299 // StoreInst Class
303 class StoreInst : public Instruction {
317 StoreInst *cloneImpl() const;
320 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
321 StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
322 StoreInst(Value *Val, Value *Ptr, bool isVolatile, Instruction *InsertBefore);
323 StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
324 StoreInst(Value *Val, Value *Ptr, bool isVolatile, Align Align,
326 StoreInst(Value *Val, Value *Ptr, bool isVolatile, Align Align,
328 StoreInst(Value *Val, Value *Ptr, bool isVolatile, Align Align
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 1460 // StoreInst Implementation
1463 void StoreInst::AssertOK() {
1474 StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
1475 : StoreInst(val, addr, /*isVolatile=*/false, InsertBefore) {}
1477 StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
1478 : StoreInst(val, addr, /*isVolatile=*/false, InsertAtEnd) {}
1480 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile
    [all...]

Completed in 20 milliseconds