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

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

Issue 889863002: update vector ics to handle megamorphic keyed loads (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: grokdump Created 5 years, 10 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/code-stubs-hydrogen.cc ('k') | src/ic/ic.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 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 V(nonextensible_symbol) \ 284 V(nonextensible_symbol) \
285 V(sealed_symbol) \ 285 V(sealed_symbol) \
286 V(frozen_symbol) \ 286 V(frozen_symbol) \
287 V(nonexistent_symbol) \ 287 V(nonexistent_symbol) \
288 V(elements_transition_symbol) \ 288 V(elements_transition_symbol) \
289 V(prototype_users_symbol) \ 289 V(prototype_users_symbol) \
290 V(observed_symbol) \ 290 V(observed_symbol) \
291 V(uninitialized_symbol) \ 291 V(uninitialized_symbol) \
292 V(megamorphic_symbol) \ 292 V(megamorphic_symbol) \
293 V(premonomorphic_symbol) \ 293 V(premonomorphic_symbol) \
294 V(generic_symbol) \
295 V(stack_trace_symbol) \ 294 V(stack_trace_symbol) \
296 V(detailed_stack_trace_symbol) \ 295 V(detailed_stack_trace_symbol) \
297 V(normal_ic_symbol) \ 296 V(normal_ic_symbol) \
298 V(home_object_symbol) \ 297 V(home_object_symbol) \
299 V(intl_initialized_marker_symbol) \ 298 V(intl_initialized_marker_symbol) \
300 V(intl_impl_object_symbol) \ 299 V(intl_impl_object_symbol) \
301 V(promise_debug_marker_symbol) \ 300 V(promise_debug_marker_symbol) \
302 V(promise_has_handler_symbol) \ 301 V(promise_has_handler_symbol) \
303 V(class_script_symbol) \ 302 V(class_script_symbol) \
304 V(class_start_position_symbol) \ 303 V(class_start_position_symbol) \
(...skipping 2280 matching lines...) Expand 10 before | Expand all | Expand 10 after
2585 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2584 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2586 2585
2587 private: 2586 private:
2588 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2587 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2589 }; 2588 };
2590 #endif // DEBUG 2589 #endif // DEBUG
2591 } 2590 }
2592 } // namespace v8::internal 2591 } // namespace v8::internal
2593 2592
2594 #endif // V8_HEAP_HEAP_H_ 2593 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/ic/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698