]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/os-windows-x86.64.cpp
io.streams.256color: faster by caching styles
[factor.git] / vm / os-windows-x86.64.cpp
index 42e1416ca7ca3413e4cec49c7e08b093e2219fa4..a2ce092b9c1ea89a1e6becbdbf6838d3678b1eba 100644 (file)
@@ -26,19 +26,19 @@ struct seh_data {
 };
 
 void factor_vm::c_to_factor_toplevel(cell quot) {
-  /* The annoying thing about Win64 SEH is that the offsets in
-   * function tables are 32-bit integers, and the exception handler
-   * itself must reside between the start and end pointers, so
-   * we stick everything at the beginning of the code heap and
-   * generate a small trampoline that jumps to the real
-   * exception handler. */
+  // The annoying thing about Win64 SEH is that the offsets in
+  // function tables are 32-bit integers, and the exception handler
+  // itself must reside between the start and end pointers, so
+  // we stick everything at the beginning of the code heap and
+  // generate a small trampoline that jumps to the real
+  // exception handler.
 
   seh_data* seh_area = (seh_data*)code->seh_area;
   cell base = code->seg->start;
 
-  /* Should look at generating this with the Factor assembler */
+  // Should look at generating this with the Factor assembler
 
-  /* mov rax,0 */
+  // mov rax,0
   seh_area->handler[0] = 0x48;
   seh_area->handler[1] = 0xb8;
   seh_area->handler[2] = 0x0;
@@ -50,12 +50,12 @@ void factor_vm::c_to_factor_toplevel(cell quot) {
   seh_area->handler[8] = 0x0;
   seh_area->handler[9] = 0x0;
 
-  /* jmp rax */
+  // jmp rax
   seh_area->handler[10] = 0x48;
   seh_area->handler[11] = 0xff;
   seh_area->handler[12] = 0xe0;
 
-  /* Store address of exception handler in the operand of the 'mov' */
+  // Store address of exception handler in the operand of the 'mov'
   cell handler = (cell)&factor::exception_handler;
   memcpy(&seh_area->handler[2], &handler, sizeof(cell));