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

Side by Side Diff: src/mips/lithium-mips.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 | « src/mips/lithium-codegen-mips.cc ('k') | src/mips/lithium-mips.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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 V(MathSin) \ 143 V(MathSin) \
144 V(MathSqrt) \ 144 V(MathSqrt) \
145 V(MathTan) \ 145 V(MathTan) \
146 V(ModI) \ 146 V(ModI) \
147 V(MulI) \ 147 V(MulI) \
148 V(MultiplyAddD) \ 148 V(MultiplyAddD) \
149 V(NumberTagD) \ 149 V(NumberTagD) \
150 V(NumberTagI) \ 150 V(NumberTagI) \
151 V(NumberTagU) \ 151 V(NumberTagU) \
152 V(NumberUntagD) \ 152 V(NumberUntagD) \
153 V(ObjectLiteral) \
154 V(OsrEntry) \ 153 V(OsrEntry) \
155 V(OuterContext) \ 154 V(OuterContext) \
156 V(Parameter) \ 155 V(Parameter) \
157 V(Power) \ 156 V(Power) \
158 V(PushArgument) \ 157 V(PushArgument) \
159 V(Random) \ 158 V(Random) \
160 V(RegExpLiteral) \ 159 V(RegExpLiteral) \
161 V(Return) \ 160 V(Return) \
162 V(SeqStringSetChar) \ 161 V(SeqStringSetChar) \
163 V(ShiftI) \ 162 V(ShiftI) \
(...skipping 2239 matching lines...) Expand 10 before | Expand all | Expand 10 after
2403 }; 2402 };
2404 2403
2405 2404
2406 class LArrayLiteral: public LTemplateInstruction<1, 0, 0> { 2405 class LArrayLiteral: public LTemplateInstruction<1, 0, 0> {
2407 public: 2406 public:
2408 DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal") 2407 DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal")
2409 DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral) 2408 DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral)
2410 }; 2409 };
2411 2410
2412 2411
2413 class LObjectLiteral: public LTemplateInstruction<1, 0, 0> {
2414 public:
2415 DECLARE_CONCRETE_INSTRUCTION(ObjectLiteral, "object-literal")
2416 DECLARE_HYDROGEN_ACCESSOR(ObjectLiteral)
2417 };
2418
2419
2420 class LRegExpLiteral: public LTemplateInstruction<1, 0, 0> { 2412 class LRegExpLiteral: public LTemplateInstruction<1, 0, 0> {
2421 public: 2413 public:
2422 DECLARE_CONCRETE_INSTRUCTION(RegExpLiteral, "regexp-literal") 2414 DECLARE_CONCRETE_INSTRUCTION(RegExpLiteral, "regexp-literal")
2423 DECLARE_HYDROGEN_ACCESSOR(RegExpLiteral) 2415 DECLARE_HYDROGEN_ACCESSOR(RegExpLiteral)
2424 }; 2416 };
2425 2417
2426 2418
2427 class LFunctionLiteral: public LTemplateInstruction<1, 0, 0> { 2419 class LFunctionLiteral: public LTemplateInstruction<1, 0, 0> {
2428 public: 2420 public:
2429 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal") 2421 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
2784 2776
2785 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2777 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2786 }; 2778 };
2787 2779
2788 #undef DECLARE_HYDROGEN_ACCESSOR 2780 #undef DECLARE_HYDROGEN_ACCESSOR
2789 #undef DECLARE_CONCRETE_INSTRUCTION 2781 #undef DECLARE_CONCRETE_INSTRUCTION
2790 2782
2791 } } // namespace v8::internal 2783 } } // namespace v8::internal
2792 2784
2793 #endif // V8_MIPS_LITHIUM_MIPS_H_ 2785 #endif // V8_MIPS_LITHIUM_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-codegen-mips.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698