From c4877832826fa26aea9c236f16bdc2de16c98150 Mon Sep 17 00:00:00 2001 From: xleroy Date: Sun, 15 Jan 2012 08:57:09 +0000 Subject: Added volatile_read_global and volatile_store_global builtins. Finished updating IA32 and ARM ports. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1792 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- common/PrintAST.ml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'common/PrintAST.ml') diff --git a/common/PrintAST.ml b/common/PrintAST.ml index e065976..baa5578 100644 --- a/common/PrintAST.ml +++ b/common/PrintAST.ml @@ -32,6 +32,12 @@ let name_of_external = function | EF_builtin(name, sg) -> extern_atom name | EF_vload chunk -> sprintf "volatile load %s" (name_of_chunk chunk) | EF_vstore chunk -> sprintf "volatile store %s" (name_of_chunk chunk) + | EF_vload_global(chunk, id, ofs) -> + sprintf "volatile load %s global %s %ld" + (name_of_chunk chunk) (extern_atom id) (camlint_of_coqint ofs) + | EF_vstore_global(chunk, id, ofs) -> + sprintf "volatile store %s global %s %ld" + (name_of_chunk chunk) (extern_atom id) (camlint_of_coqint ofs) | EF_malloc -> "malloc" | EF_free -> "free" | EF_memcpy(sz, al) -> -- cgit v1.2.3