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

  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86AvoidStoreForwardingBlocks.cpp 102 void breakBlockedCopies(MachineInstr *LoadInst, MachineInstr *StoreInst,
105 void buildCopies(int Size, MachineInstr *LoadInst, int64_t LdDispImm,
109 void buildCopy(MachineInstr *LoadInst, unsigned NLoadOpcode, int64_t LoadDisp,
339 findPotentialBlockers(MachineInstr *LoadInst) {
343 for (auto PBInst = std::next(MachineBasicBlock::reverse_iterator(LoadInst)),
344 E = LoadInst->getParent()->rend();
361 MachineBasicBlock *MBB = LoadInst->getParent();
385 void X86AvoidSFBPass::buildCopy(MachineInstr *LoadInst, unsigned NLoadOpcode,
390 MachineOperand &LoadBase = getBaseOperand(LoadInst);
392 MachineBasicBlock *MBB = LoadInst->getParent()
    [all...]
X86InstructionSelector.cpp 1402 MachineInstr *LoadInst = nullptr;
1417 LoadInst =
1435 LoadInst = addConstantPoolReference(
1441 constrainSelectedInstRegOperands(*LoadInst, TII, TRI, RBI);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 1568 const MCInstrDesc& LoadInst = TII.get( isPPC64 ? PPC::LD
1755 BuildMI(MBB, StackUpdateLoc, dl, LoadInst, RBReg)
1785 BuildMI(MBB, StackUpdateLoc, dl, LoadInst, ScratchReg)
1802 BuildMI(MBB, MBBI, dl, LoadInst, FPReg)
1806 BuildMI(MBB, MBBI, dl, LoadInst, ScratchReg)
1812 BuildMI(MBB, MBBI, dl, LoadInst, PPC::R30)
1817 BuildMI(MBB, MBBI, dl, LoadInst, BPReg)
1843 BuildMI(MBB, MBBI, dl, LoadInst, ScratchReg)
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 169 // LoadInst Class
174 class LoadInst : public UnaryInstruction {
188 LoadInst *cloneImpl() const;
191 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr,
193 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd);
194 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
196 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
198 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
200 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
202 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 1384 // LoadInst Implementation
1387 void LoadInst::AssertOK() {
1407 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name,
1409 : LoadInst(Ty, Ptr, Name, /*isVolatile=*/false, InsertBef) {}
1411 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name,
1413 : LoadInst(Ty, Ptr, Name, /*isVolatile=*/false, InsertAE) {}
1415 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 2780 auto LoadInst =
2782 Data = SDValue(LoadInst, 0);
2783 Chain = SDValue(LoadInst, 1);
2784 transferMemOperands(N, LoadInst);
2790 auto LoadInst =
2792 transferMemOperands(N, LoadInst);
2798 SDValue(LoadInst, 0)));
2800 ReplaceUses(SDValue(N, i++), SDValue(LoadInst, 1));
2801 ReplaceUses(SDValue(N, i), SDValue(LoadInst, HasWriteback ? 2 : 1));

Completed in 27 milliseconds