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

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

Issue 1417203003: Allow IdentityMap to store Smi-0. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | src/identity-map.cc » ('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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 V(frozen_symbol) \ 329 V(frozen_symbol) \
330 V(hash_code_symbol) \ 330 V(hash_code_symbol) \
331 V(home_object_symbol) \ 331 V(home_object_symbol) \
332 V(internal_error_symbol) \ 332 V(internal_error_symbol) \
333 V(intl_impl_object_symbol) \ 333 V(intl_impl_object_symbol) \
334 V(intl_initialized_marker_symbol) \ 334 V(intl_initialized_marker_symbol) \
335 V(megamorphic_symbol) \ 335 V(megamorphic_symbol) \
336 V(nonexistent_symbol) \ 336 V(nonexistent_symbol) \
337 V(nonextensible_symbol) \ 337 V(nonextensible_symbol) \
338 V(normal_ic_symbol) \ 338 V(normal_ic_symbol) \
339 V(not_mapped_symbol) \
339 V(observed_symbol) \ 340 V(observed_symbol) \
340 V(premonomorphic_symbol) \ 341 V(premonomorphic_symbol) \
341 V(promise_combined_deferred_symbol) \ 342 V(promise_combined_deferred_symbol) \
342 V(promise_debug_marker_symbol) \ 343 V(promise_debug_marker_symbol) \
343 V(promise_has_handler_symbol) \ 344 V(promise_has_handler_symbol) \
344 V(promise_on_resolve_symbol) \ 345 V(promise_on_resolve_symbol) \
345 V(promise_on_reject_symbol) \ 346 V(promise_on_reject_symbol) \
346 V(promise_raw_symbol) \ 347 V(promise_raw_symbol) \
347 V(promise_status_symbol) \ 348 V(promise_status_symbol) \
348 V(promise_value_symbol) \ 349 V(promise_value_symbol) \
(...skipping 2383 matching lines...) Expand 10 before | Expand all | Expand 10 after
2732 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2733 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2733 2734
2734 private: 2735 private:
2735 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2736 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2736 }; 2737 };
2737 #endif // DEBUG 2738 #endif // DEBUG
2738 } // namespace internal 2739 } // namespace internal
2739 } // namespace v8 2740 } // namespace v8
2740 2741
2741 #endif // V8_HEAP_HEAP_H_ 2742 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/identity-map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698