Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp755 APFloat apfLHS = APFloat(Sem, LHS.IntVal); in getConstantValue() local
759 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
760 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
763 apfLHS.subtract(APFloat(Sem, RHS.IntVal), in getConstantValue()
765 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
768 apfLHS.multiply(APFloat(Sem, RHS.IntVal), in getConstantValue()
770 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
773 apfLHS.divide(APFloat(Sem, RHS.IntVal), in getConstantValue()
775 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
778 apfLHS.mod(APFloat(Sem, RHS.IntVal), in getConstantValue()
[all …]