Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/heap/heap.h

Issue 1500543002: [es6] Unify ArrayBuffer and SharedArrayBuffer constructors. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Get the exceptions right. Other fixes. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/builtins.cc ('k') | src/js/arraybuffer.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 V(index_string, "index") \ 269 V(index_string, "index") \
270 V(infinity_string, "Infinity") \ 270 V(infinity_string, "Infinity") \
271 V(input_string, "input") \ 271 V(input_string, "input") \
272 V(int16x8_string, "int16x8") \ 272 V(int16x8_string, "int16x8") \
273 V(Int16x8_string, "Int16x8") \ 273 V(Int16x8_string, "Int16x8") \
274 V(int32x4_string, "int32x4") \ 274 V(int32x4_string, "int32x4") \
275 V(Int32x4_string, "Int32x4") \ 275 V(Int32x4_string, "Int32x4") \
276 V(int8x16_string, "int8x16") \ 276 V(int8x16_string, "int8x16") \
277 V(Int8x16_string, "Int8x16") \ 277 V(Int8x16_string, "Int8x16") \
278 V(isExtensible_string, "isExtensible") \ 278 V(isExtensible_string, "isExtensible") \
279 V(isView_string, "isView") \
279 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ 280 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \
280 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ 281 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \
281 V(last_index_string, "lastIndex") \ 282 V(last_index_string, "lastIndex") \
282 V(length_string, "length") \ 283 V(length_string, "length") \
283 V(Map_string, "Map") \ 284 V(Map_string, "Map") \
284 V(minus_infinity_string, "-Infinity") \ 285 V(minus_infinity_string, "-Infinity") \
285 V(minus_zero_string, "-0") \ 286 V(minus_zero_string, "-0") \
286 V(name_string, "name") \ 287 V(name_string, "name") \
287 V(nan_string, "NaN") \ 288 V(nan_string, "NaN") \
288 V(next_string, "next") \ 289 V(next_string, "next") \
(...skipping 2465 matching lines...) Expand 10 before | Expand all | Expand 10 after
2754 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2755 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2755 2756
2756 private: 2757 private:
2757 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2758 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2758 }; 2759 };
2759 #endif // DEBUG 2760 #endif // DEBUG
2760 } // namespace internal 2761 } // namespace internal
2761 } // namespace v8 2762 } // namespace v8
2762 2763
2763 #endif // V8_HEAP_HEAP_H_ 2764 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/js/arraybuffer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698