Home
last modified time | relevance | path

Searched refs:RHSReg (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Target/AArch64/
DAArch64FastISel.cpp162 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
168 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
173 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
198 unsigned RHSReg, bool RHSIsKill, bool WantResult = true);
200 unsigned RHSReg, bool RHSIsKill,
208 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
1156 unsigned RHSReg = getRegForValue(SI->getOperand(0)); in emitAddSub() local
1157 if (!RHSReg) in emitAddSub()
1160 return emitAddSub_rx(UseAdd, RetVT, LHSReg, LHSIsKill, RHSReg, in emitAddSub()
1164 unsigned RHSReg = getRegForValue(RHS); in emitAddSub() local
[all …]
/external/llvm/lib/Target/X86/
DX86FastISel.cpp2035 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitCMoveSelect() local
2041 if (!LHSReg || !RHSReg) in X86FastEmitCMoveSelect()
2045 unsigned ResultReg = fastEmitInst_rr(Opc, RC, RHSReg, RHSIsKill, in X86FastEmitCMoveSelect()
2110 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitSSESelect() local
2119 if (!LHSReg || !RHSReg || !CmpLHS || !CmpRHS) in X86FastEmitSSESelect()
2141 unsigned VBlendReg = fastEmitInst_rrr(BlendOpcode, VR128, RHSReg, RHSIsKill, in X86FastEmitSSESelect()
2152 RHSReg, RHSIsKill); in X86FastEmitSSESelect()
2210 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitPseudoSelect() local
2213 if (!LHSReg || !RHSReg) in X86FastEmitPseudoSelect()
2219 fastEmitInst_rri(Opc, RC, RHSReg, RHSIsKill, LHSReg, LHSIsKill, CC); in X86FastEmitPseudoSelect()
[all …]
/external/llvm/lib/Target/Mips/
DMipsFastISel.cpp271 unsigned RHSReg; in emitLogicalOp() local
273 RHSReg = materializeInt(C, MVT::i32); in emitLogicalOp()
275 RHSReg = getRegForValue(RHS); in emitLogicalOp()
276 if (!RHSReg) in emitLogicalOp()
283 emitInst(Opc, ResultReg).addReg(LHSReg).addReg(RHSReg); in emitLogicalOp()