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

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

Issue 9304001: Implement inlining of constructor calls. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed moar comments by Vyacheslav Egorov. Created 8 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
« no previous file with comments | « src/frames.cc ('k') | src/heap.h » ('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 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
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
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_
OLDNEW
« no previous file with comments | « src/frames.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698