| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |