Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
DExecutionEngine.cpp742 APFloat apfLHS = APFloat(LHS.IntVal); in getConstantValue() local
746 apfLHS.add(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
747 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
750 apfLHS.subtract(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
751 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
754 apfLHS.multiply(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
755 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
758 apfLHS.divide(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
759 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
762 apfLHS.mod(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
[all …]
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp843 APFloat apfLHS = APFloat(Sem, LHS.IntVal); in getConstantValue() local
847 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
848 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
851 apfLHS.subtract(APFloat(Sem, RHS.IntVal), in getConstantValue()
853 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
856 apfLHS.multiply(APFloat(Sem, RHS.IntVal), in getConstantValue()
858 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
861 apfLHS.divide(APFloat(Sem, RHS.IntVal), in getConstantValue()
863 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
866 apfLHS.mod(APFloat(Sem, RHS.IntVal)); in getConstantValue()
[all …]