Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp848 APFloat apfLHS = APFloat(Sem, LHS.IntVal); in getConstantValue() local
852 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
853 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
856 apfLHS.subtract(APFloat(Sem, RHS.IntVal), in getConstantValue()
858 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
861 apfLHS.multiply(APFloat(Sem, RHS.IntVal), in getConstantValue()
863 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
866 apfLHS.divide(APFloat(Sem, RHS.IntVal), in getConstantValue()
868 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
871 apfLHS.mod(APFloat(Sem, RHS.IntVal)); in getConstantValue()
[all …]