summaryrefslogtreecommitdiff
path: root/powerpc/Machregsaux.ml
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-04-10 12:15:43 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-04-10 12:15:43 +0000
commita32ed5df6aa31aa5a38a55af9d75880e906721f2 (patch)
tree737bf6863dde159547d11941fde0af70ffad3278 /powerpc/Machregsaux.ml
parentbae0ed25d01388093ebcb4b32db0b6d1169f17db (diff)
Coloring: allow to exclude user-specified registers from allocation.
CPragmas (PPC/EABI only): add #pragma reserve_register git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1314 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'powerpc/Machregsaux.ml')
-rw-r--r--powerpc/Machregsaux.ml45
1 files changed, 45 insertions, 0 deletions
diff --git a/powerpc/Machregsaux.ml b/powerpc/Machregsaux.ml
new file mode 100644
index 0000000..b729d10
--- /dev/null
+++ b/powerpc/Machregsaux.ml
@@ -0,0 +1,45 @@
+(* *********************************************************************)
+(* *)
+(* The Compcert verified compiler *)
+(* *)
+(* Xavier Leroy, INRIA Paris-Rocquencourt *)
+(* *)
+(* Copyright Institut National de Recherche en Informatique et en *)
+(* Automatique. All rights reserved. This file is distributed *)
+(* under the terms of the INRIA Non-Commercial License Agreement. *)
+(* *)
+(* *********************************************************************)
+
+(** Auxiliary functions on machine registers *)
+
+open Machregs
+
+let register_names = [
+ ("R3", R3); ("R4", R4); ("R5", R5); ("R6", R6);
+ ("R7", R7); ("R8", R8); ("R9", R9); ("R10", R10);
+ ("R14", R14); ("R15", R15); ("R16", R16);
+ ("R17", R17); ("R18", R18); ("R19", R19); ("R20", R20);
+ ("R21", R21); ("R22", R22); ("R23", R23); ("R24", R24);
+ ("R25", R25); ("R26", R26); ("R27", R27); ("R28", R28);
+ ("R29", R29); ("R30", R30); ("R31", R31);
+ ("F1", F1); ("F2", F2); ("F3", F3); ("F4", F4);
+ ("F5", F5); ("F6", F6); ("F7", F7); ("F8", F8);
+ ("F9", F9); ("F10", F10); ("F14", F14); ("F15", F15);
+ ("F16", F16); ("F17", F17); ("F18", F18); ("F19", F19);
+ ("F20", F20); ("F21", F21); ("F22", F22); ("F23", F23);
+ ("F24", F24); ("F25", F25); ("F26", F26); ("F27", F27);
+ ("F28", F28); ("F29", F29); ("F30", F30); ("F31", F31);
+ ("R11", IT1); ("R0", IT2);
+ ("F11", FT1); ("F12", FT2); ("F0", FT3)
+]
+
+let register_by_name s =
+ try
+ Some(List.assoc (String.uppercase s) register_names)
+ with Not_found ->
+ None
+
+let can_reserve_register r =
+ List.mem r Conventions.int_callee_save_regs
+ || List.mem r Conventions.float_callee_save_regs
+