Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp826 APFloat apfLHS = APFloat(Sem, LHS.IntVal); in getConstantValue() local
830 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
831 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
834 apfLHS.subtract(APFloat(Sem, RHS.IntVal), in getConstantValue()
836 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
839 apfLHS.multiply(APFloat(Sem, RHS.IntVal), in getConstantValue()
841 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
844 apfLHS.divide(APFloat(Sem, RHS.IntVal), in getConstantValue()
846 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
849 apfLHS.mod(APFloat(Sem, RHS.IntVal), in getConstantValue()
[all …]