Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp842 const APInt &CIVal = ConstInt->getValue(); in PPCEmitCmp() local
843 Imm = (IsZExt) ? (int64_t)CIVal.getZExtValue() : in PPCEmitCmp()
844 (int64_t)CIVal.getSExtValue(); in PPCEmitCmp()
1305 const APInt &CIVal = ConstInt->getValue(); in SelectBinaryIntOp() local
1306 int Imm = (int)CIVal.getSExtValue(); in SelectBinaryIntOp()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFastISel.cpp1360 const APInt &CIVal = ConstInt->getValue(); in ARMEmitCmp() local
1361 Imm = (isZExt) ? (int)CIVal.getZExtValue() : (int)CIVal.getSExtValue(); in ARMEmitCmp()