[Midnightbsd-cvs] mports [21597] trunk/www/node4/files: add missing patches
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Aug 13 12:57:48 EDT 2016
Revision: 21597
http://svnweb.midnightbsd.org/mports/?rev=21597
Author: laffer1
Date: 2016-08-13 12:57:48 -0400 (Sat, 13 Aug 2016)
Log Message:
-----------
add missing patches
Added Paths:
-----------
trunk/www/node4/files/
trunk/www/node4/files/patch-deps_v8_src_compiler_instruction.h
trunk/www/node4/files/patch-deps_v8_src_compiler_js-type-feedback.h
trunk/www/node4/files/patch-deps_v8_src_zone-containers.h
Added: trunk/www/node4/files/patch-deps_v8_src_compiler_instruction.h
===================================================================
--- trunk/www/node4/files/patch-deps_v8_src_compiler_instruction.h (rev 0)
+++ trunk/www/node4/files/patch-deps_v8_src_compiler_instruction.h 2016-08-13 16:57:48 UTC (rev 21597)
@@ -0,0 +1,11 @@
+--- deps/v8/src/compiler/instruction.h.orig 2016-04-01 00:47:45 UTC
++++ deps/v8/src/compiler/instruction.h
+@@ -1011,7 +1011,7 @@ class InstructionBlock final : public Zo
+
+ typedef ZoneDeque<Constant> ConstantDeque;
+ typedef std::map<int, Constant, std::less<int>,
+- zone_allocator<std::pair<int, Constant> > > ConstantMap;
++ zone_allocator<std::pair<const int, Constant> > > ConstantMap;
+
+ typedef ZoneDeque<Instruction*> InstructionDeque;
+ typedef ZoneDeque<ReferenceMap*> ReferenceMapDeque;
Property changes on: trunk/www/node4/files/patch-deps_v8_src_compiler_instruction.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node4/files/patch-deps_v8_src_compiler_js-type-feedback.h
===================================================================
--- trunk/www/node4/files/patch-deps_v8_src_compiler_js-type-feedback.h (rev 0)
+++ trunk/www/node4/files/patch-deps_v8_src_compiler_js-type-feedback.h 2016-08-13 16:57:48 UTC (rev 21597)
@@ -0,0 +1,15 @@
+--- deps/v8/src/compiler/js-type-feedback.h.orig 2016-04-01 00:47:45 UTC
++++ deps/v8/src/compiler/js-type-feedback.h
+@@ -33,9 +33,10 @@ class JSTypeFeedbackTable : public ZoneO
+ private:
+ friend class JSTypeFeedbackSpecializer;
+ typedef std::map<NodeId, TypeFeedbackId, std::less<NodeId>,
+- zone_allocator<TypeFeedbackId> > TypeFeedbackIdMap;
++ zone_allocator<std::pair<const NodeId, TypeFeedbackId> > >
++ TypeFeedbackIdMap;
+ typedef std::map<NodeId, FeedbackVectorICSlot, std::less<NodeId>,
+- zone_allocator<FeedbackVectorICSlot> >
++ zone_allocator<std::pair<const NodeId, FeedbackVectorICSlot> > >
+ FeedbackVectorICSlotMap;
+
+ TypeFeedbackIdMap type_feedback_id_map_;
Property changes on: trunk/www/node4/files/patch-deps_v8_src_compiler_js-type-feedback.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node4/files/patch-deps_v8_src_zone-containers.h
===================================================================
--- trunk/www/node4/files/patch-deps_v8_src_zone-containers.h (rev 0)
+++ trunk/www/node4/files/patch-deps_v8_src_zone-containers.h 2016-08-13 16:57:48 UTC (rev 21597)
@@ -0,0 +1,18 @@
+--- deps/v8/src/zone-containers.h.orig 2016-04-01 00:47:46 UTC
++++ deps/v8/src/zone-containers.h
+@@ -114,12 +114,12 @@ class ZoneSet : public std::set<K, Compa
+ // a zone allocator.
+ template <typename K, typename V, typename Compare = std::less<K>>
+ class ZoneMap
+- : public std::map<K, V, Compare, zone_allocator<std::pair<K, V>>> {
++ : public std::map<K, V, Compare, zone_allocator<std::pair<const K, V>>> {
+ public:
+ // Constructs an empty map.
+ explicit ZoneMap(Zone* zone)
+- : std::map<K, V, Compare, zone_allocator<std::pair<K, V>>>(
+- Compare(), zone_allocator<std::pair<K, V>>(zone)) {}
++ : std::map<K, V, Compare, zone_allocator<std::pair<const K, V>>>(
++ Compare(), zone_allocator<std::pair<const K, V>>(zone)) {}
+ };
+
+
Property changes on: trunk/www/node4/files/patch-deps_v8_src_zone-containers.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list