summaryrefslogtreecommitdiff
path: root/deps/v8/src/heap
diff options
context:
space:
mode:
authorMatt Loring <mattloring@google.com>2016-06-06 17:13:05 -0700
committerMichaƫl Zasso <targos@protonmail.com>2016-06-29 10:44:34 +0200
commit9beef23b605a0eaaccf9d0ba680f6c5ada3e8c4f (patch)
tree2ecb1d2bdc65692d3abe7af79481a4b6c5532e8c /deps/v8/src/heap
parentd894648450b3000f758097d91f619c285132ea80 (diff)
downloadandroid-node-v8-9beef23b605a0eaaccf9d0ba680f6c5ada3e8c4f.tar.gz
android-node-v8-9beef23b605a0eaaccf9d0ba680f6c5ada3e8c4f.tar.bz2
android-node-v8-9beef23b605a0eaaccf9d0ba680f6c5ada3e8c4f.zip
deps: bring in V8 5.1 - 5.0 ABI compatibility
Ref: https://github.com/ofrobots/node/pull/23 PR-URL: https://github.com/nodejs/node/pull/7016 Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'deps/v8/src/heap')
-rw-r--r--deps/v8/src/heap/heap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/heap/heap.h b/deps/v8/src/heap/heap.h
index 77c10b24d2..bbe1f05e4f 100644
--- a/deps/v8/src/heap/heap.h
+++ b/deps/v8/src/heap/heap.h
@@ -33,14 +33,14 @@ using v8::MemoryPressureLevel;
V(Map, one_pointer_filler_map, OnePointerFillerMap) \
V(Map, two_pointer_filler_map, TwoPointerFillerMap) \
/* Cluster the most popular ones in a few cache lines here at the top. */ \
+ V(Oddball, uninitialized_value, UninitializedValue) \
V(Oddball, undefined_value, UndefinedValue) \
- V(Oddball, the_hole_value, TheHoleValue) \
+ V(Map, cell_map, CellMap) \
V(Oddball, null_value, NullValue) \
V(Oddball, true_value, TrueValue) \
V(Oddball, false_value, FalseValue) \
V(String, empty_string, empty_string) \
- V(Oddball, uninitialized_value, UninitializedValue) \
- V(Map, cell_map, CellMap) \
+ V(Oddball, the_hole_value, TheHoleValue) \
V(Map, global_property_cell_map, GlobalPropertyCellMap) \
V(Map, shared_function_info_map, SharedFunctionInfoMap) \
V(Map, meta_map, MetaMap) \