Title: [191125] trunk/Source/_javascript_Core
Revision
191125
Author
mark....@apple.com
Date
2015-10-15 12:31:12 -0700 (Thu, 15 Oct 2015)

Log Message

Fix some typos in comments.
https://bugs.webkit.org/show_bug.cgi?id=150181

Rubber stamped by Michael Saboff.

* jit/JITStubsARM.h:
* jit/JITStubsARMv7.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (191124 => 191125)


--- trunk/Source/_javascript_Core/ChangeLog	2015-10-15 18:38:58 UTC (rev 191124)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-10-15 19:31:12 UTC (rev 191125)
@@ -1,5 +1,15 @@
 2015-10-15  Mark Lam  <mark....@apple.com>
 
+        Fix some typos in comments.
+        https://bugs.webkit.org/show_bug.cgi?id=150181
+
+        Rubber stamped by Michael Saboff.
+
+        * jit/JITStubsARM.h:
+        * jit/JITStubsARMv7.h:
+
+2015-10-15  Mark Lam  <mark....@apple.com>
+
         Refactoring: give the MASM probe CPUState methods shorter names.
         https://bugs.webkit.org/show_bug.cgi?id=150177
 

Modified: trunk/Source/_javascript_Core/jit/JITStubsARM.h (191124 => 191125)


--- trunk/Source/_javascript_Core/jit/JITStubsARM.h	2015-10-15 18:38:58 UTC (rev 191124)
+++ trunk/Source/_javascript_Core/jit/JITStubsARM.h	2015-10-15 19:31:12 UTC (rev 191125)
@@ -111,7 +111,7 @@
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r4) == PROBE_CPU_R4_OFFSET, ProbeContext_cpu_r4_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r5) == PROBE_CPU_R5_OFFSET, ProbeContext_cpu_r5_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r6) == PROBE_CPU_R6_OFFSET, ProbeContext_cpu_r6_offset_matches_ctiMasmProbeTrampoline);
-COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r7) == PROBE_CPU_R7_OFFSET, ProbeContext_cpu_r70_offset_matches_ctiMasmProbeTrampoline);
+COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r7) == PROBE_CPU_R7_OFFSET, ProbeContext_cpu_r7_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r8) == PROBE_CPU_R8_OFFSET, ProbeContext_cpu_r8_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r9) == PROBE_CPU_R9_OFFSET, ProbeContext_cpu_r9_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r10) == PROBE_CPU_R10_OFFSET, ProbeContext_cpu_r10_offset_matches_ctiMasmProbeTrampoline);

Modified: trunk/Source/_javascript_Core/jit/JITStubsARMv7.h (191124 => 191125)


--- trunk/Source/_javascript_Core/jit/JITStubsARMv7.h	2015-10-15 18:38:58 UTC (rev 191124)
+++ trunk/Source/_javascript_Core/jit/JITStubsARMv7.h	2015-10-15 19:31:12 UTC (rev 191125)
@@ -126,7 +126,7 @@
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r4) == PROBE_CPU_R4_OFFSET, ProbeContext_cpu_r4_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r5) == PROBE_CPU_R5_OFFSET, ProbeContext_cpu_r5_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r6) == PROBE_CPU_R6_OFFSET, ProbeContext_cpu_r6_offset_matches_ctiMasmProbeTrampoline);
-COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r7) == PROBE_CPU_R7_OFFSET, ProbeContext_cpu_r70_offset_matches_ctiMasmProbeTrampoline);
+COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r7) == PROBE_CPU_R7_OFFSET, ProbeContext_cpu_r7_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r8) == PROBE_CPU_R8_OFFSET, ProbeContext_cpu_r8_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r9) == PROBE_CPU_R9_OFFSET, ProbeContext_cpu_r9_offset_matches_ctiMasmProbeTrampoline);
 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.r10) == PROBE_CPU_R10_OFFSET, ProbeContext_cpu_r10_offset_matches_ctiMasmProbeTrampoline);
@@ -261,10 +261,10 @@
     //    ProbeContext.cpu.lr, not the return address).
     //
     //    The solution is to store the return address on the stack and load the
-    //     pc from there.
+    //    pc from there.
     //
     // 2. Issue 1 means we will need to write to the stack location at
-    //    ProbeContext.cpu.sp - 4. But if the user probe function had  modified
+    //    ProbeContext.cpu.sp - 4. But if the user probe function had modified
     //    the value of ProbeContext.cpu.sp to point in the range between
     //    &ProbeContext.cpu.ip thru &ProbeContext.cpu.aspr, then the action for
     //    Issue 1 may trash the values to be restored before we can restore
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to