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

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

Issue 12052053: Add StubFailureTrampolineFrames (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove extraneous change Created 7 years, 11 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
« no previous file with comments | « src/frames.cc ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame( 248 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame(
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(
259 StackFrameIterator* iterator) : InternalFrame(iterator) {
260 }
261
262
258 inline ConstructFrame::ConstructFrame(StackFrameIterator* iterator) 263 inline ConstructFrame::ConstructFrame(StackFrameIterator* iterator)
259 : InternalFrame(iterator) { 264 : InternalFrame(iterator) {
260 } 265 }
261 266
262 267
263 template<typename Iterator> 268 template<typename Iterator>
264 inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp( 269 inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp(
265 Isolate* isolate) 270 Isolate* isolate)
266 : iterator_(isolate) { 271 : iterator_(isolate) {
267 if (!done()) Advance(); 272 if (!done()) Advance();
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 template<typename Iterator> 329 template<typename Iterator>
325 void JavaScriptFrameIteratorTemp<Iterator>::Reset() { 330 void JavaScriptFrameIteratorTemp<Iterator>::Reset() {
326 iterator_.Reset(); 331 iterator_.Reset();
327 if (!done()) Advance(); 332 if (!done()) Advance();
328 } 333 }
329 334
330 335
331 } } // namespace v8::internal 336 } } // namespace v8::internal
332 337
333 #endif // V8_FRAMES_INL_H_ 338 #endif // V8_FRAMES_INL_H_
OLDNEW
« no previous file with comments | « src/frames.cc ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698