From 30d287947efab771a850c16a1fb60fc65b2ae148 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 8 Feb 2002 20:00:40 +0000 Subject: interpret.cc (convert): New function. * interpret.cc (convert): New function. (continue1) [insn_d2i, insn_d2l, insn_f2i, insn_f2l]: Use convert. Include Long.h. From-SVN: r49621 --- libjava/interpret.cc | 41 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 4 deletions(-) (limited to 'libjava/interpret.cc') diff --git a/libjava/interpret.cc b/libjava/interpret.cc index 7a847c5..6f93bc6 100644 --- a/libjava/interpret.cc +++ b/libjava/interpret.cc @@ -21,6 +21,7 @@ details. */ #include #include #include +#include #include #include #include @@ -67,6 +68,22 @@ static inline void dupx (_Jv_word *sp, int n, int x) }; +// Used to convert from floating types to integral types. +template +static inline TO +convert (FROM val, TO min, TO max) +{ + TO ret; + if (val >= (FROM) max) + ret = max; + else if (val <= (FROM) min) + ret = min; + else if (val != val) + ret = 0; + else + ret = (TO) val; + return ret; +} #define PUSHA(V) (sp++)->o = (V) #define PUSHI(V) (sp++)->i = (V) @@ -1534,11 +1551,19 @@ void _Jv_InterpMethod::continue1 (_Jv_InterpMethodInvocation *inv) NEXT_INSN; insn_f2i: - { jint value = (jint)POPF (); PUSHI(value); } + { + using namespace java::lang; + jint value = convert (POPF (), Integer::MIN_VALUE, Integer::MAX_VALUE); + PUSHI(value); + } NEXT_INSN; insn_f2l: - { jlong value = (jlong)POPF (); PUSHL(value); } + { + using namespace java::lang; + jlong value = convert (POPF (), Long::MIN_VALUE, Long::MAX_VALUE); + PUSHI(value); + } NEXT_INSN; insn_f2d: @@ -1546,11 +1571,19 @@ void _Jv_InterpMethod::continue1 (_Jv_InterpMethodInvocation *inv) NEXT_INSN; insn_d2i: - { jint value = (jint)POPD (); PUSHI(value); } + { + using namespace java::lang; + jint value = convert (POPD (), Integer::MIN_VALUE, Integer::MAX_VALUE); + PUSHI(value); + } NEXT_INSN; insn_d2l: - { jlong value = (jlong)POPD (); PUSHL(value); } + { + using namespace java::lang; + jlong value = convert (POPD (), Long::MIN_VALUE, Long::MAX_VALUE); + PUSHL(value); + } NEXT_INSN; insn_d2f: -- cgit v1.1