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

Side by Side Diff: src/isolate.cc

Issue 2357323003: [ic][ia32][x87] Don't push/pop value/slot/vector in store handlers. (Closed)
Patch Set: Created 4 years, 2 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/isolate.h ('k') | src/mips/macro-assembler-mips.h » ('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 #include "src/isolate.h" 5 #include "src/isolate.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 8
9 #include <fstream> // NOLINT(readability/streams) 9 #include <fstream> // NOLINT(readability/streams)
10 #include <sstream> 10 #include <sstream>
(...skipping 1979 matching lines...) Expand 10 before | Expand all | Expand 10 after
1990 initialized_from_snapshot_(false), 1990 initialized_from_snapshot_(false),
1991 is_tail_call_elimination_enabled_(true), 1991 is_tail_call_elimination_enabled_(true),
1992 is_isolate_in_background_(false), 1992 is_isolate_in_background_(false),
1993 cpu_profiler_(NULL), 1993 cpu_profiler_(NULL),
1994 heap_profiler_(NULL), 1994 heap_profiler_(NULL),
1995 code_event_dispatcher_(new CodeEventDispatcher()), 1995 code_event_dispatcher_(new CodeEventDispatcher()),
1996 function_entry_hook_(NULL), 1996 function_entry_hook_(NULL),
1997 deferred_handles_head_(NULL), 1997 deferred_handles_head_(NULL),
1998 optimizing_compile_dispatcher_(NULL), 1998 optimizing_compile_dispatcher_(NULL),
1999 stress_deopt_count_(0), 1999 stress_deopt_count_(0),
2000 virtual_handler_register_(NULL),
2001 virtual_slot_register_(NULL),
2002 next_optimization_id_(0), 2000 next_optimization_id_(0),
2003 js_calls_from_api_counter_(0), 2001 js_calls_from_api_counter_(0),
2004 #if TRACE_MAPS 2002 #if TRACE_MAPS
2005 next_unique_sfi_id_(0), 2003 next_unique_sfi_id_(0),
2006 #endif 2004 #endif
2007 is_running_microtasks_(false), 2005 is_running_microtasks_(false),
2008 use_counter_callback_(NULL), 2006 use_counter_callback_(NULL),
2009 basic_block_profiler_(NULL), 2007 basic_block_profiler_(NULL),
2010 cancelable_task_manager_(new CancelableTaskManager()), 2008 cancelable_task_manager_(new CancelableTaskManager()),
2011 abort_on_uncaught_exception_callback_(NULL) { 2009 abort_on_uncaught_exception_callback_(NULL) {
(...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after
3268 // Then check whether this scope intercepts. 3266 // Then check whether this scope intercepts.
3269 if ((flag & intercept_mask_)) { 3267 if ((flag & intercept_mask_)) {
3270 intercepted_flags_ |= flag; 3268 intercepted_flags_ |= flag;
3271 return true; 3269 return true;
3272 } 3270 }
3273 return false; 3271 return false;
3274 } 3272 }
3275 3273
3276 } // namespace internal 3274 } // namespace internal
3277 } // namespace v8 3275 } // namespace v8
OLDNEW
« no previous file with comments | « src/isolate.h ('k') | src/mips/macro-assembler-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698