OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |