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

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

Issue 43693002: Correctly setup exit frame when calling into allocation tracker (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added comment Created 7 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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 StackFrameIteratorBase* iterator) : StandardFrame(iterator) { 303 StackFrameIteratorBase* iterator) : StandardFrame(iterator) {
304 } 304 }
305 305
306 306
307 inline ConstructFrame::ConstructFrame(StackFrameIteratorBase* iterator) 307 inline ConstructFrame::ConstructFrame(StackFrameIteratorBase* iterator)
308 : InternalFrame(iterator) { 308 : InternalFrame(iterator) {
309 } 309 }
310 310
311 311
312 inline JavaScriptFrameIterator::JavaScriptFrameIterator( 312 inline JavaScriptFrameIterator::JavaScriptFrameIterator(
313 Isolate* isolate) 313 Isolate* isolate, bool allow_builtins_on_stack)
314 : iterator_(isolate) { 314 : iterator_(isolate, allow_builtins_on_stack) {
315 if (!done()) Advance(); 315 if (!done()) Advance();
316 } 316 }
317 317
318 318
319 inline JavaScriptFrameIterator::JavaScriptFrameIterator( 319 inline JavaScriptFrameIterator::JavaScriptFrameIterator(
320 Isolate* isolate, ThreadLocalTop* top) 320 Isolate* isolate, ThreadLocalTop* top)
321 : iterator_(isolate, top) { 321 : iterator_(isolate, top) {
322 if (!done()) Advance(); 322 if (!done()) Advance();
323 } 323 }
324 324
(...skipping 12 matching lines...) Expand all
337 inline StackFrame* SafeStackFrameIterator::frame() const { 337 inline StackFrame* SafeStackFrameIterator::frame() const {
338 ASSERT(!done()); 338 ASSERT(!done());
339 ASSERT(frame_->is_java_script() || frame_->is_exit()); 339 ASSERT(frame_->is_java_script() || frame_->is_exit());
340 return frame_; 340 return frame_;
341 } 341 }
342 342
343 343
344 } } // namespace v8::internal 344 } } // namespace v8::internal
345 345
346 #endif // V8_FRAMES_INL_H_ 346 #endif // V8_FRAMES_INL_H_
OLDNEW
« src/code-stubs.h ('K') | « src/frames.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698