Searched refs:apfLHS (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 851 APFloat apfLHS = APFloat(Sem, LHS.IntVal); in getConstantValue() local 855 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue() 856 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 859 apfLHS.subtract(APFloat(Sem, RHS.IntVal), in getConstantValue() 861 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 864 apfLHS.multiply(APFloat(Sem, RHS.IntVal), in getConstantValue() 866 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 869 apfLHS.divide(APFloat(Sem, RHS.IntVal), in getConstantValue() 871 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 874 apfLHS.mod(APFloat(Sem, RHS.IntVal)); in getConstantValue() [all …]
|