Searched refs:apfLHS (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 825 APFloat apfLHS = APFloat(Sem, LHS.IntVal); in getConstantValue() local 829 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue() 830 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 833 apfLHS.subtract(APFloat(Sem, RHS.IntVal), in getConstantValue() 835 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 838 apfLHS.multiply(APFloat(Sem, RHS.IntVal), in getConstantValue() 840 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 843 apfLHS.divide(APFloat(Sem, RHS.IntVal), in getConstantValue() 845 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue() 848 apfLHS.mod(APFloat(Sem, RHS.IntVal), in getConstantValue() [all …]
|