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,
1159 unsigned RHSReg = getRegForValue(SI->getOperand(0)); in emitAddSub() local
1160 if (!RHSReg) in emitAddSub()
1163 return emitAddSub_rx(UseAdd, RetVT, LHSReg, LHSIsKill, RHSReg, in emitAddSub()
1167 unsigned RHSReg = getRegForValue(RHS); in emitAddSub() local
[all …]
/external/llvm/lib/Target/X86/
DX86FastISel.cpp1838 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitCMoveSelect() local
1844 if (!LHSReg || !RHSReg) in X86FastEmitCMoveSelect()
1848 unsigned ResultReg = fastEmitInst_rr(Opc, RC, RHSReg, RHSIsKill, in X86FastEmitCMoveSelect()
1913 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitSSESelect() local
1922 if (!LHSReg || !RHSReg || !CmpLHS || !CmpRHS) in X86FastEmitSSESelect()
1941 ResultReg = fastEmitInst_rrr(BlendOpcode, RC, RHSReg, RHSIsKill, in X86FastEmitSSESelect()
1949 RHSReg, RHSIsKill); in X86FastEmitSSESelect()
2007 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitPseudoSelect() local
2010 if (!LHSReg || !RHSReg) in X86FastEmitPseudoSelect()
2016 fastEmitInst_rri(Opc, RC, RHSReg, RHSIsKill, LHSReg, LHSIsKill, CC); in X86FastEmitPseudoSelect()
[all …]
/external/llvm/lib/Target/Mips/
DMipsFastISel.cpp239 unsigned RHSReg; in emitLogicalOp() local
244 RHSReg = materializeInt(C, MVT::i32); in emitLogicalOp()
246 RHSReg = getRegForValue(RHS); in emitLogicalOp()
248 if (!RHSReg) in emitLogicalOp()
251 emitInst(Opc, ResultReg).addReg(LHSReg).addReg(RHSReg); in emitLogicalOp()