Searched defs:CIVal (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp836 const APInt &CIVal = ConstInt->getValue(); local
837 Imm = (IsZExt) ? (long)CIVal.getZExtValue() : (long)CIVal.getSExtValue();
1209 const APInt &CIVal = ConstInt->getValue(); local
1210 int Imm = (int)CIVal.getSExtValue();
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp2841 const APInt *CI2Val, *CIVal = &CI->getValue(); local
2844 if (!CIVal->isPowerOf2()) {
2861 if (CIVal->isSignBit() && *CI2Val == 1) {
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp1370 const APInt &CIVal = ConstInt->getValue(); local
1371 Imm = (isZExt) ? (int)CIVal.getZExtValue() : (int)CIVal.getSExtValue();

Completed in 257 milliseconds