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

Side by Side Diff: src/arm/lithium-arm.h

Issue 14972008: Remove obsolete HObjectLiteral instruction. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix after rebase. Created 7 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 | « no previous file | src/arm/lithium-arm.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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 V(MathSqrt) \ 145 V(MathSqrt) \
146 V(MathTan) \ 146 V(MathTan) \
147 V(ModI) \ 147 V(ModI) \
148 V(MulI) \ 148 V(MulI) \
149 V(MultiplyAddD) \ 149 V(MultiplyAddD) \
150 V(MultiplySubD) \ 150 V(MultiplySubD) \
151 V(NumberTagD) \ 151 V(NumberTagD) \
152 V(NumberTagI) \ 152 V(NumberTagI) \
153 V(NumberTagU) \ 153 V(NumberTagU) \
154 V(NumberUntagD) \ 154 V(NumberUntagD) \
155 V(ObjectLiteral) \
156 V(OsrEntry) \ 155 V(OsrEntry) \
157 V(OuterContext) \ 156 V(OuterContext) \
158 V(Parameter) \ 157 V(Parameter) \
159 V(Power) \ 158 V(Power) \
160 V(PushArgument) \ 159 V(PushArgument) \
161 V(Random) \ 160 V(Random) \
162 V(RegExpLiteral) \ 161 V(RegExpLiteral) \
163 V(Return) \ 162 V(Return) \
164 V(SeqStringSetChar) \ 163 V(SeqStringSetChar) \
165 V(ShiftI) \ 164 V(ShiftI) \
(...skipping 2296 matching lines...) Expand 10 before | Expand all | Expand 10 after
2462 }; 2461 };
2463 2462
2464 2463
2465 class LArrayLiteral: public LTemplateInstruction<1, 0, 0> { 2464 class LArrayLiteral: public LTemplateInstruction<1, 0, 0> {
2466 public: 2465 public:
2467 DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal") 2466 DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal")
2468 DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral) 2467 DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral)
2469 }; 2468 };
2470 2469
2471 2470
2472 class LObjectLiteral: public LTemplateInstruction<1, 0, 0> {
2473 public:
2474 DECLARE_CONCRETE_INSTRUCTION(ObjectLiteral, "object-literal")
2475 DECLARE_HYDROGEN_ACCESSOR(ObjectLiteral)
2476 };
2477
2478
2479 class LRegExpLiteral: public LTemplateInstruction<1, 0, 0> { 2471 class LRegExpLiteral: public LTemplateInstruction<1, 0, 0> {
2480 public: 2472 public:
2481 DECLARE_CONCRETE_INSTRUCTION(RegExpLiteral, "regexp-literal") 2473 DECLARE_CONCRETE_INSTRUCTION(RegExpLiteral, "regexp-literal")
2482 DECLARE_HYDROGEN_ACCESSOR(RegExpLiteral) 2474 DECLARE_HYDROGEN_ACCESSOR(RegExpLiteral)
2483 }; 2475 };
2484 2476
2485 2477
2486 class LFunctionLiteral: public LTemplateInstruction<1, 0, 0> { 2478 class LFunctionLiteral: public LTemplateInstruction<1, 0, 0> {
2487 public: 2479 public:
2488 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal") 2480 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
2848 2840
2849 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2841 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2850 }; 2842 };
2851 2843
2852 #undef DECLARE_HYDROGEN_ACCESSOR 2844 #undef DECLARE_HYDROGEN_ACCESSOR
2853 #undef DECLARE_CONCRETE_INSTRUCTION 2845 #undef DECLARE_CONCRETE_INSTRUCTION
2854 2846
2855 } } // namespace v8::internal 2847 } } // namespace v8::internal
2856 2848
2857 #endif // V8_ARM_LITHIUM_ARM_H_ 2849 #endif // V8_ARM_LITHIUM_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698