Searched refs:apfLHS (Results 1 – 1 of 1) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 845 APFloat apfLHS = APFloat(Sem, LHS.IntVal); in getConstantValue() local 849 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue() 850 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 853 apfLHS.subtract(APFloat(Sem, RHS.IntVal), in getConstantValue() 855 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 858 apfLHS.multiply(APFloat(Sem, RHS.IntVal), in getConstantValue() 860 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 863 apfLHS.divide(APFloat(Sem, RHS.IntVal), in getConstantValue() 865 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 868 apfLHS.mod(APFloat(Sem, RHS.IntVal)); in getConstantValue() [all …]
|