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

Side by Side Diff: src/isolate-inl.h

Issue 8403037: Make C++ to JS transition faster by avoiding JavaScriptFrameIterator in SaveContext. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 27 matching lines...) Expand all
38 38
39 SaveContext::SaveContext(Isolate* isolate) : prev_(isolate->save_context()) { 39 SaveContext::SaveContext(Isolate* isolate) : prev_(isolate->save_context()) {
40 if (isolate->context() != NULL) { 40 if (isolate->context() != NULL) {
41 context_ = Handle<Context>(isolate->context()); 41 context_ = Handle<Context>(isolate->context());
42 #if __GNUC_VERSION__ >= 40100 && __GNUC_VERSION__ < 40300 42 #if __GNUC_VERSION__ >= 40100 && __GNUC_VERSION__ < 40300
43 dummy_ = Handle<Context>(isolate->context()); 43 dummy_ = Handle<Context>(isolate->context());
44 #endif 44 #endif
45 } 45 }
46 isolate->set_save_context(this); 46 isolate->set_save_context(this);
47 47
48 // If there is no JS frame under the current C frame, use the value 0. 48 c_entry_fp_ = isolate->c_entry_fp(isolate->thread_local_top());
49 JavaScriptFrameIterator it(isolate);
50 js_sp_ = it.done() ? 0 : it.frame()->sp();
51 } 49 }
52 50
53 51
54 bool Isolate::DebuggerHasBreakPoints() { 52 bool Isolate::DebuggerHasBreakPoints() {
55 #ifdef ENABLE_DEBUGGER_SUPPORT 53 #ifdef ENABLE_DEBUGGER_SUPPORT
56 return debug()->has_break_points(); 54 return debug()->has_break_points();
57 #else 55 #else
58 return false; 56 return false;
59 #endif 57 #endif
60 } 58 }
61 59
62 60
63 } } // namespace v8::internal 61 } } // namespace v8::internal
64 62
65 #endif // V8_ISOLATE_INL_H_ 63 #endif // V8_ISOLATE_INL_H_
OLDNEW
« src/isolate.h ('K') | « src/isolate.h ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698