Skip to content
Snippets Groups Projects
Commit ee41c6ea authored by xleroy's avatar xleroy
Browse files

Meilleur traitement des fonctions forward declared. Ajout d'un warning sur le...

Meilleur traitement des fonctions forward declared.  Ajout d'un warning sur le nombre d'arguments d'une fonction externe, qui est actuellement limite par le back-end

git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@124 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
parent b6bdb4b4
No related branches found
No related tags found
No related merge requests found
......@@ -160,6 +160,17 @@ let globals_for_strings globs =
(fun s id l -> CList.Coq_cons(global_for_string s id, l))
stringTable globs
(** Checking restrictions on external functions *)
let acceptableExtFun targs =
let rec acceptable nint nfloat = function
| Tnil -> true
| Tcons(Tfloat _, rem) ->
nfloat > 0 && acceptable (nint - 2) (nfloat - 1) rem
| Tcons(_, rem) ->
nint > 0 && acceptable (nint - 1) nfloat rem
in acceptable 8 10 targs
(** ** Handling of stubs for variadic functions *)
let stub_function_table = Hashtbl.create 47
......@@ -174,6 +185,8 @@ let register_stub_function name tres targs =
try
(stub_name, Hashtbl.find stub_function_table stub_name)
with Not_found ->
if not (acceptableExtFun targs) then
warning (name ^ ": too many parameters for a variadic function, will fail during Cminor -> PPC translation");
let rec types_of_types = function
| Tnil -> Tnil
| Tcons(Tfloat _, tl) -> Tcons(Tfloat F64, types_of_types tl)
......@@ -851,6 +864,8 @@ let convertExtFun v =
updateLoc(v.vdecl);
match convertTyp v.vtype with
| Tfunction(args, res) ->
if not (acceptableExtFun args) then
warning (v.vname ^ ": too many parameters for an external function, will fail during Cminor -> PPC translation");
let id = intern_string v.vname in
Datatypes.Coq_pair (id, External(id, args, res))
| _ ->
......@@ -912,6 +927,7 @@ let cleanupGlobals globs =
List.fold_right
(fun g def ->
match g with GVar (v, init, loc) -> v.vname :: def
| GFun (fdec, loc) -> fdec.svar.vname :: def
| _ -> def)
globs [] in
List.filter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment