paul@354 | 1 | /* Native functions for integer operations. |
paul@354 | 2 | |
paul@583 | 3 | Copyright (C) 2016, 2017 Paul Boddie <paul@boddie.org.uk> |
paul@354 | 4 | |
paul@354 | 5 | This program is free software; you can redistribute it and/or modify it under |
paul@354 | 6 | the terms of the GNU General Public License as published by the Free Software |
paul@354 | 7 | Foundation; either version 3 of the License, or (at your option) any later |
paul@354 | 8 | version. |
paul@354 | 9 | |
paul@354 | 10 | This program is distributed in the hope that it will be useful, but WITHOUT |
paul@354 | 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
paul@354 | 12 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
paul@354 | 13 | details. |
paul@354 | 14 | |
paul@354 | 15 | You should have received a copy of the GNU General Public License along with |
paul@354 | 16 | this program. If not, see <http://www.gnu.org/licenses/>. |
paul@354 | 17 | */ |
paul@354 | 18 | |
paul@354 | 19 | #ifndef __NATIVE_INT_H__ |
paul@354 | 20 | #define __NATIVE_INT_H__ |
paul@354 | 21 | |
paul@354 | 22 | #include "types.h" |
paul@354 | 23 | |
paul@354 | 24 | /* Integer operations. */ |
paul@354 | 25 | |
paul@767 | 26 | __attr __fn_native_int_is_int(__attr __self, __attr obj); |
paul@664 | 27 | __attr __fn_native_int_int_add(__attr __self, __attr _data, __attr other); |
paul@664 | 28 | __attr __fn_native_int_int_sub(__attr __self, __attr _data, __attr other); |
paul@664 | 29 | __attr __fn_native_int_int_mul(__attr __self, __attr _data, __attr other); |
paul@664 | 30 | __attr __fn_native_int_int_div(__attr __self, __attr _data, __attr other); |
paul@664 | 31 | __attr __fn_native_int_int_mod(__attr __self, __attr _data, __attr other); |
paul@664 | 32 | __attr __fn_native_int_int_neg(__attr __self, __attr _data); |
paul@664 | 33 | __attr __fn_native_int_int_pow(__attr __self, __attr _data, __attr other); |
paul@354 | 34 | |
paul@664 | 35 | __attr __fn_native_int_int_and(__attr __self, __attr _data, __attr other); |
paul@664 | 36 | __attr __fn_native_int_int_not(__attr __self, __attr _data); |
paul@664 | 37 | __attr __fn_native_int_int_or(__attr __self, __attr _data, __attr other); |
paul@664 | 38 | __attr __fn_native_int_int_xor(__attr __self, __attr _data, __attr other); |
paul@354 | 39 | |
paul@798 | 40 | __attr __fn_native_int_int_lshift(__attr __self, __attr _data, __attr other); |
paul@798 | 41 | __attr __fn_native_int_int_rshift(__attr __self, __attr _data, __attr other); |
paul@798 | 42 | |
paul@767 | 43 | __attr __fn_native_int_int_eq(__attr __self, __attr _data, __attr other); |
paul@767 | 44 | __attr __fn_native_int_int_ge(__attr __self, __attr _data, __attr other); |
paul@664 | 45 | __attr __fn_native_int_int_gt(__attr __self, __attr _data, __attr other); |
paul@767 | 46 | __attr __fn_native_int_int_le(__attr __self, __attr _data, __attr other); |
paul@767 | 47 | __attr __fn_native_int_int_lt(__attr __self, __attr _data, __attr other); |
paul@664 | 48 | __attr __fn_native_int_int_ne(__attr __self, __attr _data, __attr other); |
paul@354 | 49 | |
paul@664 | 50 | __attr __fn_native_int_int_str(__attr __self, __attr _data); |
paul@354 | 51 | |
paul@354 | 52 | /* Module initialisation. */ |
paul@354 | 53 | |
paul@354 | 54 | void __main_native_int(); |
paul@354 | 55 | |
paul@354 | 56 | #endif /* __NATIVE_INT_H__ */ |