Home
last modified time | relevance | path

Searched refs:MemInst (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp598 ParseMemoryInst MemInst(Inst, TTI); in processNode() local
600 if (MemInst.isValid() && MemInst.isLoad()) { in processNode()
603 if (MemInst.isVolatile() || !MemInst.isUnordered()) { in processNode()
610 LoadValue InVal = AvailableLoads.lookup(MemInst.getPointerOperand()); in processNode()
612 InVal.MatchingId == MemInst.getMatchingId() && in processNode()
614 !MemInst.isVolatile() && MemInst.isUnordered() && in processNode()
616 InVal.IsAtomic >= MemInst.isAtomic()) { in processNode()
632 MemInst.getPointerOperand(), in processNode()
633 LoadValue(Inst, CurrentGeneration, MemInst.getMatchingId(), in processNode()
634 MemInst.isAtomic())); in processNode()
[all …]
/external/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp3544 MCInst MemInst; in createCpRestoreMemOp() local
3545 MemInst.setOpcode(IsLoad ? Mips::LW : Mips::SW); in createCpRestoreMemOp()
3546 MemInst.addOperand(MCOperand::createReg(Mips::GP)); in createCpRestoreMemOp()
3547 MemInst.addOperand(MCOperand::createReg(Mips::SP)); in createCpRestoreMemOp()
3548 MemInst.addOperand(MCOperand::createImm(StackOffset)); in createCpRestoreMemOp()
3549 expandMemInst(MemInst, IDLoc, Instructions, IsLoad, true /*HasImmOpnd*/); in createCpRestoreMemOp()