summaryrefslogtreecommitdiffstats
path: root/asmrun/power-elf.S
diff options
context:
space:
mode:
Diffstat (limited to 'asmrun/power-elf.S')
-rw-r--r--asmrun/power-elf.S22
1 files changed, 11 insertions, 11 deletions
diff --git a/asmrun/power-elf.S b/asmrun/power-elf.S
index 34ef6cc21..0b3493688 100644
--- a/asmrun/power-elf.S
+++ b/asmrun/power-elf.S
@@ -33,7 +33,7 @@ caml_call_gc:
/* Set up stack frame */
stwu 1, -0x1A0(1)
/* 0x1A0 = 4*32 (int regs) + 8*32 (float regs) + 32 (space for C call) */
- /* Record return address into Caml code */
+ /* Record return address into OCaml code */
mflr 0
Storeglobal(0, caml_last_return_address, 11)
/* Record lowest stack address */
@@ -169,7 +169,7 @@ caml_call_gc:
Loadglobal(0, caml_last_return_address, 11)
addic 0, 0, -16 /* Restart the allocation (4 instructions) */
mtlr 0
- /* Say we are back into Caml code */
+ /* Say we are back into OCaml code */
li 12, 0
Storeglobal(12, caml_last_return_address, 11)
/* Deallocate stack frame */
@@ -177,7 +177,7 @@ caml_call_gc:
/* Return */
blr
-/* Call a C function from Caml */
+/* Call a C function from OCaml */
.globl caml_c_call
.type caml_c_call, @function
@@ -199,7 +199,7 @@ caml_c_call:
/* Reload allocation pointer and allocation limit*/
Loadglobal(31, caml_young_ptr, 11)
Loadglobal(30, caml_young_limit, 11)
- /* Say we are back into Caml code */
+ /* Say we are back into OCaml code */
li 12, 0
Storeglobal(12, caml_last_return_address, 11)
/* Return to caller */
@@ -210,11 +210,11 @@ caml_c_call:
.globl caml_raise_exception
.type caml_raise_exception, @function
caml_raise_exception:
- /* Reload Caml global registers */
+ /* Reload OCaml global registers */
Loadglobal(1, caml_exception_pointer, 11)
Loadglobal(31, caml_young_ptr, 11)
Loadglobal(30, caml_young_limit, 11)
- /* Say we are back into Caml code */
+ /* Say we are back into OCaml code */
li 0, 0
Storeglobal(0, caml_last_return_address, 11)
/* Pop trap frame */
@@ -225,7 +225,7 @@ caml_raise_exception:
/* Branch to handler */
blr
-/* Start the Caml program */
+/* Start the OCaml program */
.globl caml_start_program
.type caml_start_program, @function
@@ -287,7 +287,7 @@ caml_start_program:
stw 9, 0(1)
stw 10, 4(1)
stw 11, 8(1)
- /* Build an exception handler to catch exceptions escaping out of Caml */
+ /* Build an exception handler to catch exceptions escaping out of OCaml */
bl .L103
b .L104
.L103:
@@ -300,10 +300,10 @@ caml_start_program:
/* Reload allocation pointers */
Loadglobal(31, caml_young_ptr, 11)
Loadglobal(30, caml_young_limit, 11)
- /* Say we are back into Caml code */
+ /* Say we are back into OCaml code */
li 0, 0
Storeglobal(0, caml_last_return_address, 11)
- /* Call the Caml code */
+ /* Call the OCaml code */
mtlr 12
.L105:
blrl
@@ -375,7 +375,7 @@ caml_start_program:
ori 3, 3, 2
b .L106
-/* Callback from C to Caml */
+/* Callback from C to OCaml */
.globl caml_callback_exn
.type caml_callback_exn, @function