Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Jan 2015 16:15:31 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r377527 - head/www/webkit-gtk2/files
Message-ID:  <201501201615.t0KGFVs3092479@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501201615.t0KGFVs3092479>