Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp7421 int64_t ExpVal = Exponent; in applyExpandFPowI() local
7423 if (ExpVal == 0) { in applyExpandFPowI()
7429 if (ExpVal < 0) in applyExpandFPowI()
7430 ExpVal = -ExpVal; in applyExpandFPowI()
7439 while (ExpVal > 0) { in applyExpandFPowI()
7440 if (ExpVal & 1) { in applyExpandFPowI()
7448 ExpVal >>= 1; in applyExpandFPowI()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1748 Value *ExpVal = Exp == 0 ? nullptr : ConstantInt::get(IRB.getInt32Ty(), Exp); in generateCrashCode() local
1756 {Addr, SizeArgument, ExpVal}); in generateCrashCode()
1763 IRB, AsanErrorCallback[IsWrite][1][AccessSizeIndex], {Addr, ExpVal}); in generateCrashCode()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.cpp5704 int ExpVal = APF.getExactLog2Abs(); in renderFPPow2ToExponent() local
5705 assert(ExpVal != INT_MIN); in renderFPPow2ToExponent()
5706 MIB.addImm(ExpVal); in renderFPPow2ToExponent()