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

Side by Side Diff: src/deoptimizer.cc

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/deoptimizer.h ('k') | src/hydrogen.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 case Translation::CONSTRUCT_STUB_FRAME: 772 case Translation::CONSTRUCT_STUB_FRAME:
773 DoComputeConstructStubFrame(&iterator, i); 773 DoComputeConstructStubFrame(&iterator, i);
774 break; 774 break;
775 case Translation::GETTER_STUB_FRAME: 775 case Translation::GETTER_STUB_FRAME:
776 DoComputeAccessorStubFrame(&iterator, i, false); 776 DoComputeAccessorStubFrame(&iterator, i, false);
777 break; 777 break;
778 case Translation::SETTER_STUB_FRAME: 778 case Translation::SETTER_STUB_FRAME:
779 DoComputeAccessorStubFrame(&iterator, i, true); 779 DoComputeAccessorStubFrame(&iterator, i, true);
780 break; 780 break;
781 case Translation::COMPILED_STUB_FRAME: 781 case Translation::COMPILED_STUB_FRAME:
782 DoCompiledStubFrame(&iterator, i); 782 DoComputeCompiledStubFrame(&iterator, i);
783 break; 783 break;
784 case Translation::BEGIN: 784 case Translation::BEGIN:
785 case Translation::REGISTER: 785 case Translation::REGISTER:
786 case Translation::INT32_REGISTER: 786 case Translation::INT32_REGISTER:
787 case Translation::UINT32_REGISTER: 787 case Translation::UINT32_REGISTER:
788 case Translation::DOUBLE_REGISTER: 788 case Translation::DOUBLE_REGISTER:
789 case Translation::STACK_SLOT: 789 case Translation::STACK_SLOT:
790 case Translation::INT32_STACK_SLOT: 790 case Translation::INT32_STACK_SLOT:
791 case Translation::UINT32_STACK_SLOT: 791 case Translation::UINT32_STACK_SLOT:
792 case Translation::DOUBLE_STACK_SLOT: 792 case Translation::DOUBLE_STACK_SLOT:
(...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after
2137 2137
2138 void DeoptimizedFrameInfo::Iterate(ObjectVisitor* v) { 2138 void DeoptimizedFrameInfo::Iterate(ObjectVisitor* v) {
2139 v->VisitPointer(BitCast<Object**>(&function_)); 2139 v->VisitPointer(BitCast<Object**>(&function_));
2140 v->VisitPointers(parameters_, parameters_ + parameters_count_); 2140 v->VisitPointers(parameters_, parameters_ + parameters_count_);
2141 v->VisitPointers(expression_stack_, expression_stack_ + expression_count_); 2141 v->VisitPointers(expression_stack_, expression_stack_ + expression_count_);
2142 } 2142 }
2143 2143
2144 #endif // ENABLE_DEBUGGER_SUPPORT 2144 #endif // ENABLE_DEBUGGER_SUPPORT
2145 2145
2146 } } // namespace v8::internal 2146 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/deoptimizer.h ('k') | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698