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

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

Issue 2803853005: Inline Array.prototype.forEach in TurboFan (Closed)
Patch Set: Remove stray changes Created 3 years, 6 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
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_FRAMES_INL_H_ 5 #ifndef V8_FRAMES_INL_H_
6 #define V8_FRAMES_INL_H_ 6 #define V8_FRAMES_INL_H_
7 7
8 #include "src/frames.h" 8 #include "src/frames.h"
9 #include "src/isolate.h" 9 #include "src/isolate.h"
10 #include "src/objects-inl.h" 10 #include "src/objects-inl.h"
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 272
273 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame( 273 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame(
274 StackFrameIteratorBase* iterator) : StandardFrame(iterator) { 274 StackFrameIteratorBase* iterator) : StandardFrame(iterator) {
275 } 275 }
276 276
277 277
278 inline ConstructFrame::ConstructFrame(StackFrameIteratorBase* iterator) 278 inline ConstructFrame::ConstructFrame(StackFrameIteratorBase* iterator)
279 : InternalFrame(iterator) { 279 : InternalFrame(iterator) {
280 } 280 }
281 281
282 inline BuiltinContinuationFrame::BuiltinContinuationFrame(
283 StackFrameIteratorBase* iterator)
284 : InternalFrame(iterator) {}
285
286 inline JavaScriptBuiltinContinuationFrame::JavaScriptBuiltinContinuationFrame(
287 StackFrameIteratorBase* iterator)
288 : JavaScriptFrame(iterator) {}
289
282 inline JavaScriptFrameIterator::JavaScriptFrameIterator( 290 inline JavaScriptFrameIterator::JavaScriptFrameIterator(
283 Isolate* isolate) 291 Isolate* isolate)
284 : iterator_(isolate) { 292 : iterator_(isolate) {
285 if (!done()) Advance(); 293 if (!done()) Advance();
286 } 294 }
287 295
288 inline JavaScriptFrameIterator::JavaScriptFrameIterator( 296 inline JavaScriptFrameIterator::JavaScriptFrameIterator(
289 Isolate* isolate, ThreadLocalTop* top) 297 Isolate* isolate, ThreadLocalTop* top)
290 : iterator_(isolate, top) { 298 : iterator_(isolate, top) {
291 if (!done()) Advance(); 299 if (!done()) Advance();
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 DCHECK(frame_->is_java_script() || frame_->is_exit() || 331 DCHECK(frame_->is_java_script() || frame_->is_exit() ||
324 frame_->is_builtin_exit()); 332 frame_->is_builtin_exit());
325 return frame_; 333 return frame_;
326 } 334 }
327 335
328 336
329 } // namespace internal 337 } // namespace internal
330 } // namespace v8 338 } // namespace v8
331 339
332 #endif // V8_FRAMES_INL_H_ 340 #endif // V8_FRAMES_INL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698