svn commit: r377527 - head/www/webkit-gtk2/files

Sean Bruno sbruno at FreeBSD.org
Tue Jan 20 16:15:32 UTC 2015


Author: sbruno
Date: Tue Jan 20 16:15:30 2015
New Revision: 377527
URL: https://svnweb.freebsd.org/changeset/ports/377527
QAT: https://qat.redports.org/buildarchive/r377527/

Log:
  With the update to 1.4.8, the JIT infrastructure was revamped to look a lot like
  the source for webkit-gtk3.  Update the ARM assembler patch for the new file location
  and delete the old one.
  
  PR:		196908
  Reviewed by:	kwm
  Approved by:	mentor (implicit)

Added:
  head/www/webkit-gtk2/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h   (contents, props changed)
Deleted:
  head/www/webkit-gtk2/files/patch-Source__JavaScriptCore__jit__ExecutableAllocator.h

Added: head/www/webkit-gtk2/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/webkit-gtk2/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h	Tue Jan 20 16:15:30 2015	(r377527)
@@ -0,0 +1,11 @@
+--- Source/JavaScriptCore/assembler/ARMAssembler.h.orig	2015-01-19 21:25:28.000000000 +0000
++++ Source/JavaScriptCore/assembler/ARMAssembler.h	2015-01-19 21:25:57.000000000 +0000
+@@ -1121,6 +1121,8 @@ namespace JSC {
+             linuxPageFlush(current, end);
+ #elif OS(WINCE)
+             CacheRangeFlush(code, size, CACHE_SYNC_ALL);
++#elif CPU(ARM_TRADITIONAL) && OS(FREEBSD) && COMPILER(CLANG)
++	__clear_cache(code, reinterpret_cast<char*>(code) + size);
+ #else
+ #error "The cacheFlush support is missing on this platform."
+ #endif


More information about the svn-ports-all mailing list