Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64FastISel.cpp206 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
212 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
217 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
244 unsigned RHSReg, bool RHSIsKill, bool WantResult = true);
246 unsigned RHSReg, bool RHSIsKill,
254 bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
1202 unsigned RHSReg = getRegForValue(SI->getOperand(0)); in emitAddSub() local
1203 if (!RHSReg) in emitAddSub()
1206 return emitAddSub_rx(UseAdd, RetVT, LHSReg, LHSIsKill, RHSReg, in emitAddSub()
1210 unsigned RHSReg = getRegForValue(RHS); in emitAddSub() local
[all …]
/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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMInstructionSelector.cpp54 ARMCC::CondCodes Cond, unsigned LHSReg, unsigned RHSReg,
392 unsigned LHSReg, unsigned RHSReg, in validOpRegPair() argument
395 return MRI.getType(LHSReg) == MRI.getType(RHSReg) && in validOpRegPair()
397 validReg(MRI, RHSReg, ExpectedSize, ExpectedRegBankID); in validOpRegPair()
434 auto RHSReg = MIB->getOperand(3).getReg(); in selectCmp() local
435 if (!validOpRegPair(MRI, LHSReg, RHSReg, Helper.OperandSize, in selectCmp()
445 if (!insertComparison(Helper, I, ResReg, ARMConds.first, LHSReg, RHSReg, in selectCmp()
452 RHSReg, ZeroReg)) in selectCmp()
454 if (!insertComparison(Helper, I, ResReg, ARMConds.second, LHSReg, RHSReg, in selectCmp()
466 unsigned LHSReg, unsigned RHSReg, in insertComparison() argument
[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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86FastISel.cpp2140 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitCMoveSelect() local
2146 if (!LHSReg || !RHSReg) in X86FastEmitCMoveSelect()
2151 unsigned ResultReg = fastEmitInst_rr(Opc, RC, RHSReg, RHSIsKill, in X86FastEmitCMoveSelect()
2216 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitSSESelect() local
2225 if (!LHSReg || !RHSReg || !CmpLHS || !CmpRHS) in X86FastEmitSSESelect()
2251 unsigned MovReg = fastEmitInst_rrrr(MovOpcode, VR128X, RHSReg, RHSIsKill, in X86FastEmitSSESelect()
2274 unsigned VBlendReg = fastEmitInst_rrr(BlendOpcode, VR128, RHSReg, RHSIsKill, in X86FastEmitSSESelect()
2286 RHSReg, RHSIsKill); in X86FastEmitSSESelect()
2359 unsigned RHSReg = getRegForValue(RHS); in X86FastEmitPseudoSelect() local
2362 if (!LHSReg || !RHSReg) 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()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsFastISel.cpp319 unsigned RHSReg; in emitLogicalOp() local
321 RHSReg = materializeInt(C, MVT::i32); in emitLogicalOp()
323 RHSReg = getRegForValue(RHS); in emitLogicalOp()
324 if (!RHSReg) in emitLogicalOp()
331 emitInst(Opc, ResultReg).addReg(LHSReg).addReg(RHSReg); in emitLogicalOp()