diff options
author | Mike Pall <mike> | 2011-06-03 17:12:46 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-06-03 17:15:44 +0200 |
commit | eec28aa9fdf5f733a4f7d2628fc060eac66ab713 (patch) | |
tree | d37d099e35e86df696d0b130cf98b098cd604d12 /src/buildvm_x64.h | |
parent | 77bb8de93da29cc3b1a3fbc2f605f8b70841657b (diff) | |
download | luajit-eec28aa9fdf5f733a4f7d2628fc060eac66ab713.tar.gz luajit-eec28aa9fdf5f733a4f7d2628fc060eac66ab713.tar.bz2 luajit-eec28aa9fdf5f733a4f7d2628fc060eac66ab713.zip |
Move math helpers to lj_vmmath.c. Add missing log2/exp2 for Symbian.
Diffstat (limited to 'src/buildvm_x64.h')
-rw-r--r-- | src/buildvm_x64.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/buildvm_x64.h b/src/buildvm_x64.h index 918e514a..4a96493f 100644 --- a/src/buildvm_x64.h +++ b/src/buildvm_x64.h | |||
@@ -879,7 +879,7 @@ enum { | |||
879 | GLOB_ff_math_log, | 879 | GLOB_ff_math_log, |
880 | GLOB_ff_math_log10, | 880 | GLOB_ff_math_log10, |
881 | GLOB_ff_math_exp, | 881 | GLOB_ff_math_exp, |
882 | GLOB_vm_exp, | 882 | GLOB_vm_exp_x87, |
883 | GLOB_ff_math_sin, | 883 | GLOB_ff_math_sin, |
884 | GLOB_ff_math_cos, | 884 | GLOB_ff_math_cos, |
885 | GLOB_ff_math_tan, | 885 | GLOB_ff_math_tan, |
@@ -939,7 +939,7 @@ enum { | |||
939 | GLOB_vm_ceil_sse, | 939 | GLOB_vm_ceil_sse, |
940 | GLOB_vm_trunc_sse, | 940 | GLOB_vm_trunc_sse, |
941 | GLOB_vm_mod, | 941 | GLOB_vm_mod, |
942 | GLOB_vm_exp2, | 942 | GLOB_vm_exp2_x87, |
943 | GLOB_vm_exp2raw, | 943 | GLOB_vm_exp2raw, |
944 | GLOB_vm_pow_sse, | 944 | GLOB_vm_pow_sse, |
945 | GLOB_vm_powi_sse, | 945 | GLOB_vm_powi_sse, |
@@ -1040,7 +1040,7 @@ static const char *const globnames[] = { | |||
1040 | "ff_math_log", | 1040 | "ff_math_log", |
1041 | "ff_math_log10", | 1041 | "ff_math_log10", |
1042 | "ff_math_exp", | 1042 | "ff_math_exp", |
1043 | "vm_exp", | 1043 | "vm_exp_x87", |
1044 | "ff_math_sin", | 1044 | "ff_math_sin", |
1045 | "ff_math_cos", | 1045 | "ff_math_cos", |
1046 | "ff_math_tan", | 1046 | "ff_math_tan", |
@@ -1100,7 +1100,7 @@ static const char *const globnames[] = { | |||
1100 | "vm_ceil_sse", | 1100 | "vm_ceil_sse", |
1101 | "vm_trunc_sse", | 1101 | "vm_trunc_sse", |
1102 | "vm_mod", | 1102 | "vm_mod", |
1103 | "vm_exp2", | 1103 | "vm_exp2_x87", |
1104 | "vm_exp2raw", | 1104 | "vm_exp2raw", |
1105 | "vm_pow_sse", | 1105 | "vm_pow_sse", |
1106 | "vm_powi_sse", | 1106 | "vm_powi_sse", |
@@ -1132,9 +1132,9 @@ static const char *const extnames[] = { | |||
1132 | "lj_tab_next", | 1132 | "lj_tab_next", |
1133 | "lj_tab_getinth@8", | 1133 | "lj_tab_getinth@8", |
1134 | "lj_ffh_coroutine_wrap_err@8", | 1134 | "lj_ffh_coroutine_wrap_err@8", |
1135 | "lj_wrapper_sinh", | 1135 | "lj_vm_sinh", |
1136 | "lj_wrapper_cosh", | 1136 | "lj_vm_cosh", |
1137 | "lj_wrapper_tanh", | 1137 | "lj_vm_tanh", |
1138 | "lj_str_new", | 1138 | "lj_str_new", |
1139 | "lj_tab_len@4", | 1139 | "lj_tab_len@4", |
1140 | "lj_gc_step@4", | 1140 | "lj_gc_step@4", |