pike.git
/
src
/
builtin.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/builtin.cmod:2845:
*! @member int "native_byteorder" *! The byte order used by the native cpu. *! Usually @expr{1234@} (aka little endian) or *! @expr{4321@} (aka bigendian). *! @member int "int_size" *! The number of bits in the native integer type. *! Usually @expr{32@} or @expr{64@}. *! @member int "float_size" *! The number of bits in the native floating point type. *! Usually @expr{32@} or @expr{64@}.
-
*! @member int(
0
..1) "auto_bignum"
-
*!
Present
if integers
larger than the native size are
automatically
-
*! converted into bignums.
+
*! @member int(
1
..1) "auto_bignum"
+
*!
Integers
larger than the native size are
now always
+
*!
automatically
converted into bignums.
*! @endmapping */ PIKEFUN mapping(string:int|string) get_runtime_info() optflags OPT_TRY_OPTIMIZE; { pop_n_elems(args); push_static_text("bytecode_method"); push_text(PIKE_BYTECODE_METHOD_NAME); push_static_text("abi"); push_int(sizeof(void *) * 8);