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

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

Issue 12093089: Support pass-through of stub caller arguments (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix bugs Created 7 years, 10 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 | 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 StackFrameIterator* iterator) : JavaScriptFrame(iterator) { 249 StackFrameIterator* iterator) : JavaScriptFrame(iterator) {
250 } 250 }
251 251
252 252
253 inline InternalFrame::InternalFrame(StackFrameIterator* iterator) 253 inline InternalFrame::InternalFrame(StackFrameIterator* iterator)
254 : StandardFrame(iterator) { 254 : StandardFrame(iterator) {
255 } 255 }
256 256
257 257
258 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame( 258 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame(
259 StackFrameIterator* iterator) : InternalFrame(iterator) { 259 StackFrameIterator* iterator) : StandardFrame(iterator) {
260 } 260 }
261 261
262 262
263 inline ConstructFrame::ConstructFrame(StackFrameIterator* iterator) 263 inline ConstructFrame::ConstructFrame(StackFrameIterator* iterator)
264 : InternalFrame(iterator) { 264 : InternalFrame(iterator) {
265 } 265 }
266 266
267 267
268 template<typename Iterator> 268 template<typename Iterator>
269 inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp( 269 inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp(
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 template<typename Iterator> 329 template<typename Iterator>
330 void JavaScriptFrameIteratorTemp<Iterator>::Reset() { 330 void JavaScriptFrameIteratorTemp<Iterator>::Reset() {
331 iterator_.Reset(); 331 iterator_.Reset();
332 if (!done()) Advance(); 332 if (!done()) Advance();
333 } 333 }
334 334
335 335
336 } } // namespace v8::internal 336 } } // namespace v8::internal
337 337
338 #endif // V8_FRAMES_INL_H_ 338 #endif // V8_FRAMES_INL_H_
OLDNEW
« src/frames.cc ('K') | « src/frames.cc ('k') | src/hydrogen-instructions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698