| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 inline bool StandardFrame::IsArgumentsAdaptorFrame(Address fp) { | 184 inline bool StandardFrame::IsArgumentsAdaptorFrame(Address fp) { |
| 185 Object* marker = | 185 Object* marker = |
| 186 Memory::Object_at(fp + StandardFrameConstants::kContextOffset); | 186 Memory::Object_at(fp + StandardFrameConstants::kContextOffset); |
| 187 return marker == Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR); | 187 return marker == Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR); |
| 188 } | 188 } |
| 189 | 189 |
| 190 | 190 |
| 191 inline bool StandardFrame::IsConstructFrame(Address fp) { | 191 inline bool StandardFrame::IsConstructFrame(Address fp) { |
| 192 Object* marker = | 192 Object* marker = |
| 193 Memory::Object_at(fp + StandardFrameConstants::kMarkerOffset); | 193 Memory::Object_at(fp + StandardFrameConstants::kMarkerOffset); |
| 194 return marker == Smi::FromInt(CONSTRUCT); | 194 return marker == Smi::FromInt(StackFrame::CONSTRUCT); |
| 195 } | 195 } |
| 196 | 196 |
| 197 | 197 |
| 198 inline JavaScriptFrame::JavaScriptFrame(StackFrameIterator* iterator) | 198 inline JavaScriptFrame::JavaScriptFrame(StackFrameIterator* iterator) |
| 199 : StandardFrame(iterator) { | 199 : StandardFrame(iterator) { |
| 200 } | 200 } |
| 201 | 201 |
| 202 | 202 |
| 203 Address JavaScriptFrame::GetParameterSlot(int index) const { | 203 Address JavaScriptFrame::GetParameterSlot(int index) const { |
| 204 int param_count = ComputeParametersCount(); | 204 int param_count = ComputeParametersCount(); |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 template<typename Iterator> | 319 template<typename Iterator> |
| 320 void JavaScriptFrameIteratorTemp<Iterator>::Reset() { | 320 void JavaScriptFrameIteratorTemp<Iterator>::Reset() { |
| 321 iterator_.Reset(); | 321 iterator_.Reset(); |
| 322 if (!done()) Advance(); | 322 if (!done()) Advance(); |
| 323 } | 323 } |
| 324 | 324 |
| 325 | 325 |
| 326 } } // namespace v8::internal | 326 } } // namespace v8::internal |
| 327 | 327 |
| 328 #endif // V8_FRAMES_INL_H_ | 328 #endif // V8_FRAMES_INL_H_ |
| OLD | NEW |