Home
last modified time | relevance | path

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

/external/llvm/lib/Target/AArch64/
DAArch64FastISel.cpp163 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
169 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
174 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
199 unsigned RHSReg, bool RHSIsKill, bool WantResult = true);
201 unsigned RHSReg, bool RHSIsKill,
209 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
1164 unsigned RHSReg = getRegForValue(SI->getOperand(0)); in emitAddSub() local
1165 if (!RHSReg) in emitAddSub()
1168 return emitAddSub_rx(UseAdd, RetVT, LHSReg, LHSIsKill, RHSReg, in emitAddSub()
1172 unsigned RHSReg = getRegForValue(RHS); in emitAddSub() local
[all …]
/external/llvm/lib/Target/X86/
DX86FastISel.cpp1862 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitCMoveSelect() local
1868 if (!LHSReg || !RHSReg) in X86FastEmitCMoveSelect()
1872 unsigned ResultReg = fastEmitInst_rr(Opc, RC, RHSReg, RHSIsKill, in X86FastEmitCMoveSelect()
1937 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitSSESelect() local
1946 if (!LHSReg || !RHSReg || !CmpLHS || !CmpRHS) in X86FastEmitSSESelect()
1968 unsigned VBlendReg = fastEmitInst_rrr(BlendOpcode, VR128, RHSReg, RHSIsKill, in X86FastEmitSSESelect()
1979 RHSReg, RHSIsKill); in X86FastEmitSSESelect()
2037 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitPseudoSelect() local
2040 if (!LHSReg || !RHSReg) in X86FastEmitPseudoSelect()
2046 fastEmitInst_rri(Opc, RC, RHSReg, RHSIsKill, LHSReg, LHSIsKill, CC); in X86FastEmitPseudoSelect()
[all …]
/external/llvm/lib/Target/Mips/
DMipsFastISel.cpp257 unsigned RHSReg; in emitLogicalOp() local
259 RHSReg = materializeInt(C, MVT::i32); in emitLogicalOp()
261 RHSReg = getRegForValue(RHS); in emitLogicalOp()
262 if (!RHSReg) in emitLogicalOp()
269 emitInst(Opc, ResultReg).addReg(LHSReg).addReg(RHSReg); in emitLogicalOp()