aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/StructReturn.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2015-07-08 11:42:39 +0200
committerXavier Leroy <xavier.leroy@inria.fr>2015-07-08 11:42:39 +0200
commitf869da75c970aec78975f7154c806f29e3012b7a (patch)
tree32bd1fc3fc05e51d7d339956b04196f80e0f2116 /cparser/StructReturn.ml
parent3eb2b3b7bb464d9844f7c161fbcff53f597348b9 (diff)
downloadcompcert-f869da75c970aec78975f7154c806f29e3012b7a.tar.gz
compcert-f869da75c970aec78975f7154c806f29e3012b7a.zip
Turn off copy optimization when returning a composite by reference.
The copy optimization is not correct in case of overlap between destination and source. We would need to use an hypothetical __builtin_memmove_aligned that can cope with overlap to implement the copy at return of callee.
Diffstat (limited to 'cparser/StructReturn.ml')
-rw-r--r--cparser/StructReturn.ml14
1 files changed, 10 insertions, 4 deletions
diff --git a/cparser/StructReturn.ml b/cparser/StructReturn.ml
index 660f1d9b..5e5602f3 100644
--- a/cparser/StructReturn.ml
+++ b/cparser/StructReturn.ml
@@ -299,10 +299,15 @@ let rec transf_expr env ctx e =
transf_call env ctx None fn args e.etyp
(* Function calls returning a composite by reference: add first argument.
- ctx = Effects: lv = f(...) -> f(&lv, ...) [copy optimization]
+ ctx = Effects: lv = f(...) -> f(&newtemp, ...), lv = newtemp
f(...) -> f(&newtemp, ...)
ctx = Val: lv = f(...) -> f(&newtemp, ...), lv = newtemp
f(...) -> f(&newtemp, ...), newtemp
+
+ We used to do a copy optimization:
+ ctx = Effects: lv = f(...) -> f(&lv, ...)
+ but it is not correct in case of overlap (see test/regression/struct12.c)
+
Function calls returning a composite by value:
ctx = Effects: lv = f(...) -> newtemp = f(...), lv = newtemp
f(...) -> f(...)
@@ -332,13 +337,14 @@ and transf_call env ctx opt_lhs fn args ty =
| Effects, None ->
let tmp = new_temp ~name:"_res" ty in
{edesc = ECall(fn', eaddrof tmp :: args'); etyp = TVoid []}
- | Effects, Some lhs ->
- {edesc = ECall(fn', eaddrof lhs :: args'); etyp = TVoid []}
+ (* Copy optimization, turned off as explained above *)
+ (* | Effects, Some lhs ->
+ {edesc = ECall(fn', eaddrof lhs :: args'); etyp = TVoid []} *)
| Val, None ->
let tmp = new_temp ~name:"_res" ty in
ecomma {edesc = ECall(fn', eaddrof tmp :: args'); etyp = TVoid []}
tmp
- | Val, Some lhs ->
+ | _, Some lhs ->
let tmp = new_temp ~name:"_res" ty in
ecomma {edesc = ECall(fn', eaddrof tmp :: args'); etyp = TVoid []}
(eassign lhs tmp)