1 | // $Source$ |
---|
2 | // $Revision: 1027 $ |
---|
3 | // $Date: 2003-07-17 12:15:17 +0000 (Thu, 17 Jul 2003) $ |
---|
4 | // $Author: pooh $ |
---|
5 | |
---|
6 | #include <rf_core.hh> |
---|
7 | #include <rf_short_int.hh> |
---|
8 | #include <rf_integer.ih> |
---|
9 | #include <inttypes.h> |
---|
10 | #include <gmp.h> |
---|
11 | |
---|
12 | namespace refal |
---|
13 | { |
---|
14 | |
---|
15 | using namespace rfrt; |
---|
16 | using namespace rftype; |
---|
17 | |
---|
18 | namespace Arithm |
---|
19 | { |
---|
20 | |
---|
21 | RF_FUNC (Div, (RF_ARG s_Int1, s_Int2), (RF_RES s_Res)) |
---|
22 | |
---|
23 | Term* p_Int1 = s_Int1.get_first(); |
---|
24 | Term* p_Int2 = s_Int2.get_first(); |
---|
25 | |
---|
26 | if (p_Int1->get_type() == type_short_int) { |
---|
27 | intptr_t i1 = static_cast<ShortInt*>(p_Int1)->to_int(); |
---|
28 | if (p_Int2->get_type() == type_short_int) { |
---|
29 | intptr_t i2 = static_cast<ShortInt*>(p_Int2)->to_int(); |
---|
30 | s_Res = ShortInt::create_expr(i1 / i2); |
---|
31 | } else if (p_Int2->get_type() == type_int) { |
---|
32 | Integer* i2 = static_cast<Integer*>(p_Int2); |
---|
33 | s_Res = Integer::create_expr(i1 / (*i2)); |
---|
34 | } else { |
---|
35 | RF_LIB_ERROR("Invalid argument"); |
---|
36 | } |
---|
37 | } else if (p_Int1->get_type() == type_int) { |
---|
38 | Integer* i1 = static_cast<Integer*>(p_Int1); |
---|
39 | if (p_Int2->get_type() == type_short_int) { |
---|
40 | intptr_t i2 = static_cast<ShortInt*>(p_Int2)->to_int(); |
---|
41 | s_Res = Integer::create_expr((*i1) / i2); |
---|
42 | } else if (p_Int2->get_type() == type_int) { |
---|
43 | Integer* i2 = static_cast<Integer*>(p_Int2); |
---|
44 | s_Res = Integer::create_expr((*i1) / (*i2)); |
---|
45 | } else { |
---|
46 | RF_LIB_ERROR("Invalid argument"); |
---|
47 | } |
---|
48 | } else { |
---|
49 | RF_LIB_ERROR("Invalid argument"); |
---|
50 | } |
---|
51 | RF_END |
---|
52 | } |
---|
53 | |
---|
54 | } |
---|