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

Side by Side Diff: src/hydrogen-instructions.cc

Issue 296113008: Allow HPushArgument to handle more than one argument. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase, and use int instead of unsigned Created 6 years, 7 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/hydrogen-instructions.h ('k') | src/ia32/lithium-ia32.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "v8.h" 5 #include "v8.h"
6 6
7 #include "double.h" 7 #include "double.h"
8 #include "factory.h" 8 #include "factory.h"
9 #include "hydrogen-infer-representation.h" 9 #include "hydrogen-infer-representation.h"
10 #include "property-details-inl.h" 10 #include "property-details-inl.h"
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 case HValue::kLeaveInlined: 861 case HValue::kLeaveInlined:
862 case HValue::kLoadFieldByIndex: 862 case HValue::kLoadFieldByIndex:
863 case HValue::kLoadGlobalGeneric: 863 case HValue::kLoadGlobalGeneric:
864 case HValue::kLoadNamedField: 864 case HValue::kLoadNamedField:
865 case HValue::kLoadNamedGeneric: 865 case HValue::kLoadNamedGeneric:
866 case HValue::kLoadRoot: 866 case HValue::kLoadRoot:
867 case HValue::kMapEnumLength: 867 case HValue::kMapEnumLength:
868 case HValue::kMathMinMax: 868 case HValue::kMathMinMax:
869 case HValue::kParameter: 869 case HValue::kParameter:
870 case HValue::kPhi: 870 case HValue::kPhi:
871 case HValue::kPushArgument: 871 case HValue::kPushArguments:
872 case HValue::kRegExpLiteral: 872 case HValue::kRegExpLiteral:
873 case HValue::kReturn: 873 case HValue::kReturn:
874 case HValue::kRor: 874 case HValue::kRor:
875 case HValue::kSar: 875 case HValue::kSar:
876 case HValue::kSeqStringGetChar: 876 case HValue::kSeqStringGetChar:
877 case HValue::kStoreCodeEntry: 877 case HValue::kStoreCodeEntry:
878 case HValue::kStoreKeyed: 878 case HValue::kStoreKeyed:
879 case HValue::kStoreNamedGeneric: 879 case HValue::kStoreNamedGeneric:
880 case HValue::kStringCharCodeAt: 880 case HValue::kStringCharCodeAt:
881 case HValue::kStringCharFromCode: 881 case HValue::kStringCharFromCode:
(...skipping 3902 matching lines...) Expand 10 before | Expand all | Expand 10 after
4784 break; 4784 break;
4785 case kExternalMemory: 4785 case kExternalMemory:
4786 stream->Add("[external-memory]"); 4786 stream->Add("[external-memory]");
4787 break; 4787 break;
4788 } 4788 }
4789 4789
4790 stream->Add("@%d", offset()); 4790 stream->Add("@%d", offset());
4791 } 4791 }
4792 4792
4793 } } // namespace v8::internal 4793 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698