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

Side by Side Diff: src/deoptimizer.h

Issue 12220074: Compile FastCloneShallowObjectStub using Crankshaft. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased. 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
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/deoptimizer.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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 void DoComputeOutputFrames(); 338 void DoComputeOutputFrames();
339 void DoComputeOsrOutputFrame(); 339 void DoComputeOsrOutputFrame();
340 void DoComputeJSFrame(TranslationIterator* iterator, int frame_index); 340 void DoComputeJSFrame(TranslationIterator* iterator, int frame_index);
341 void DoComputeArgumentsAdaptorFrame(TranslationIterator* iterator, 341 void DoComputeArgumentsAdaptorFrame(TranslationIterator* iterator,
342 int frame_index); 342 int frame_index);
343 void DoComputeConstructStubFrame(TranslationIterator* iterator, 343 void DoComputeConstructStubFrame(TranslationIterator* iterator,
344 int frame_index); 344 int frame_index);
345 void DoComputeAccessorStubFrame(TranslationIterator* iterator, 345 void DoComputeAccessorStubFrame(TranslationIterator* iterator,
346 int frame_index, 346 int frame_index,
347 bool is_setter_stub_frame); 347 bool is_setter_stub_frame);
348 void DoCompiledStubFrame(TranslationIterator* iterator, 348 void DoComputeCompiledStubFrame(TranslationIterator* iterator,
349 int frame_index); 349 int frame_index);
350 void DoTranslateCommand(TranslationIterator* iterator, 350 void DoTranslateCommand(TranslationIterator* iterator,
351 int frame_index, 351 int frame_index,
352 unsigned output_offset); 352 unsigned output_offset);
353 // Translate a command for OSR. Updates the input offset to be used for 353 // Translate a command for OSR. Updates the input offset to be used for
354 // the next command. Returns false if translation of the command failed 354 // the next command. Returns false if translation of the command failed
355 // (e.g., a number conversion failed) and may or may not have updated the 355 // (e.g., a number conversion failed) and may or may not have updated the
356 // input offset. 356 // input offset.
357 bool DoOsrTranslateCommand(TranslationIterator* iterator, 357 bool DoOsrTranslateCommand(TranslationIterator* iterator,
358 int* input_offset); 358 int* input_offset);
359 359
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 Object** expression_stack_; 877 Object** expression_stack_;
878 int source_position_; 878 int source_position_;
879 879
880 friend class Deoptimizer; 880 friend class Deoptimizer;
881 }; 881 };
882 #endif 882 #endif
883 883
884 } } // namespace v8::internal 884 } } // namespace v8::internal
885 885
886 #endif // V8_DEOPTIMIZER_H_ 886 #endif // V8_DEOPTIMIZER_H_
OLDNEW
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698