summaryrefslogtreecommitdiff
path: root/ia32/Unusedglob1.ml
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2014-07-23 08:54:56 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2014-07-23 08:54:56 +0000
commit2a0168fea37b68ad14e2cb60bf215111e49d4870 (patch)
tree2f59373790d8ce3a5df66ef7a692271cf0666c6c /ia32/Unusedglob1.ml
parent00805153cf9b88aa07cc6694b17d93f5ba2e7de8 (diff)
Merge of "newspilling" branch:
- Support single-precision floats as first-class values - Introduce chunks Many32, Many64 and types Tany32, Tany64 to support saving and restoring registers without knowing the exact types (int/single/float) of their contents, just their sizes. - Memory model: generalize the opaque encoding of pointers to apply to any value, not just pointers, if chunks Many32/Many64 are selected. - More properties of FP arithmetic proved. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2537 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'ia32/Unusedglob1.ml')
-rw-r--r--ia32/Unusedglob1.ml6
1 files changed, 4 insertions, 2 deletions
diff --git a/ia32/Unusedglob1.ml b/ia32/Unusedglob1.ml
index 8332a30..eb0298b 100644
--- a/ia32/Unusedglob1.ml
+++ b/ia32/Unusedglob1.ml
@@ -29,12 +29,14 @@ let referenced_builtin ef =
let referenced_instr = function
| Pmov_rm (_, a) | Pmov_mr (a, _)
+ | Pmov_rm_a (_, a) | Pmov_mr_a (a, _)
| Pmovsd_fm (_, a) | Pmovsd_mf(a, _)
- | Pfld_m a | Pfstp_m a
+ | Pmovss_fm (_, a) | Pmovss_mf(a, _)
+ | Pfldl_m a | Pflds_m a | Pfstpl_m a | Pfstps_m a
| Pmovb_mr (a, _) | Pmovw_mr (a, _)
| Pmovzb_rm (_, a) | Pmovsb_rm (_, a)
| Pmovzw_rm (_, a) | Pmovsw_rm (_, a)
- | Pcvtss2sd_fm (_, a) | Pcvtsd2ss_mf (a, _) | Plea (_, a) -> referenced_addr a
+ | Plea (_, a) -> referenced_addr a
| Pjmp_s(s, _) -> [s]
| Pcall_s(s, _) -> [s]
| Pbuiltin(ef, args, res) -> referenced_builtin ef