Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp825 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 …]