Title: [197876] trunk/Source/_javascript_Core
Revision
197876
Author
oli...@apple.com
Date
2016-03-09 13:09:51 -0800 (Wed, 09 Mar 2016)

Log Message

Wincairo buildfix
https://bugs.webkit.org/show_bug.cgi?id=155245

Reviewed by Mark Lam.

Fix up exports for a few symbols

* jit/ExecutableAllocator.h:
* jit/ExecutableAllocatorFixedVMPool.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (197875 => 197876)


--- trunk/Source/_javascript_Core/ChangeLog	2016-03-09 20:55:28 UTC (rev 197875)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-03-09 21:09:51 UTC (rev 197876)
@@ -1,3 +1,15 @@
+2016-03-09  Oliver Hunt  <oli...@apple.com>
+
+        Wincairo buildfix
+        https://bugs.webkit.org/show_bug.cgi?id=155245
+
+        Reviewed by Mark Lam.
+
+        Fix up exports for a few symbols
+
+        * jit/ExecutableAllocator.h:
+        * jit/ExecutableAllocatorFixedVMPool.cpp:
+
 2016-03-09  Mark Lam  <mark....@apple.com>
 
         Add dumping of function _expression_ names in CodeBlock bytecode dump.

Modified: trunk/Source/_javascript_Core/jit/ExecutableAllocator.h (197875 => 197876)


--- trunk/Source/_javascript_Core/jit/ExecutableAllocator.h	2016-03-09 20:55:28 UTC (rev 197875)
+++ trunk/Source/_javascript_Core/jit/ExecutableAllocator.h	2016-03-09 21:09:51 UTC (rev 197876)
@@ -89,11 +89,11 @@
 static const double executablePoolReservationFraction = 0.25;
 #endif
 
-extern uintptr_t startOfFixedExecutableMemoryPool;
-extern uintptr_t endOfFixedExecutableMemoryPool;
+extern JS_EXPORTDATA uintptr_t startOfFixedExecutableMemoryPool;
+extern JS_EXPORTDATA uintptr_t endOfFixedExecutableMemoryPool;
 
 #if ENABLE(SEPARATED_WX_HEAP)
-extern uintptr_t jitWriteFunctionAddress;
+extern JS_EXPORTDATA uintptr_t jitWriteFunctionAddress;
 #endif
 #endif // ENABLE(EXECUTABLE_ALLOCATOR_FIXED)
 

Modified: trunk/Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp (197875 => 197876)


--- trunk/Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp	2016-03-09 20:55:28 UTC (rev 197875)
+++ trunk/Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp	2016-03-09 21:09:51 UTC (rev 197876)
@@ -85,11 +85,11 @@
 
 namespace JSC {
 
-JS_EXPORT_PRIVATE uintptr_t startOfFixedExecutableMemoryPool;
-JS_EXPORT_PRIVATE uintptr_t endOfFixedExecutableMemoryPool;
+JS_EXPORTDATA uintptr_t startOfFixedExecutableMemoryPool;
+JS_EXPORTDATA uintptr_t endOfFixedExecutableMemoryPool;
 
 #if ENABLE(SEPARATED_WX_HEAP)
-JS_EXPORT_PRIVATE uintptr_t jitWriteFunctionAddress;
+JS_EXPORTDATA uintptr_t jitWriteFunctionAddress;
 #endif
 
 class FixedVMPoolExecutableAllocator : public MetaAllocator {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to