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

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

Issue 8640001: Implement crankshaft support for nested object literals. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ported lithium part to x64 and ARM. Created 9 years 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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 V(LoadKeyedGeneric) \ 127 V(LoadKeyedGeneric) \
128 V(LoadKeyedSpecializedArrayElement) \ 128 V(LoadKeyedSpecializedArrayElement) \
129 V(LoadNamedField) \ 129 V(LoadNamedField) \
130 V(LoadNamedFieldPolymorphic) \ 130 V(LoadNamedFieldPolymorphic) \
131 V(LoadNamedGeneric) \ 131 V(LoadNamedGeneric) \
132 V(ModI) \ 132 V(ModI) \
133 V(MulI) \ 133 V(MulI) \
134 V(NumberTagD) \ 134 V(NumberTagD) \
135 V(NumberTagI) \ 135 V(NumberTagI) \
136 V(NumberUntagD) \ 136 V(NumberUntagD) \
137 V(ObjectLiteral) \ 137 V(ObjectLiteralFast) \
138 V(ObjectLiteralGeneric) \
138 V(OsrEntry) \ 139 V(OsrEntry) \
139 V(OuterContext) \ 140 V(OuterContext) \
140 V(Parameter) \ 141 V(Parameter) \
141 V(Power) \ 142 V(Power) \
142 V(PushArgument) \ 143 V(PushArgument) \
143 V(RegExpLiteral) \ 144 V(RegExpLiteral) \
144 V(Return) \ 145 V(Return) \
145 V(ShiftI) \ 146 V(ShiftI) \
146 V(SmiTag) \ 147 V(SmiTag) \
147 V(SmiUntag) \ 148 V(SmiUntag) \
(...skipping 1745 matching lines...) Expand 10 before | Expand all | Expand 10 after
1893 }; 1894 };
1894 1895
1895 1896
1896 class LArrayLiteral: public LTemplateInstruction<1, 0, 0> { 1897 class LArrayLiteral: public LTemplateInstruction<1, 0, 0> {
1897 public: 1898 public:
1898 DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal") 1899 DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal")
1899 DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral) 1900 DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral)
1900 }; 1901 };
1901 1902
1902 1903
1903 class LObjectLiteral: public LTemplateInstruction<1, 0, 0> { 1904 class LObjectLiteralFast: public LTemplateInstruction<1, 0, 0> {
1904 public: 1905 public:
1905 DECLARE_CONCRETE_INSTRUCTION(ObjectLiteral, "object-literal") 1906 DECLARE_CONCRETE_INSTRUCTION(ObjectLiteralFast, "object-literal-fast")
1906 DECLARE_HYDROGEN_ACCESSOR(ObjectLiteral) 1907 DECLARE_HYDROGEN_ACCESSOR(ObjectLiteralFast)
1907 }; 1908 };
1908 1909
1909 1910
1911 class LObjectLiteralGeneric: public LTemplateInstruction<1, 0, 0> {
1912 public:
1913 DECLARE_CONCRETE_INSTRUCTION(ObjectLiteralGeneric, "object-literal-generic")
1914 DECLARE_HYDROGEN_ACCESSOR(ObjectLiteralGeneric)
1915 };
1916
1917
1910 class LRegExpLiteral: public LTemplateInstruction<1, 0, 0> { 1918 class LRegExpLiteral: public LTemplateInstruction<1, 0, 0> {
1911 public: 1919 public:
1912 DECLARE_CONCRETE_INSTRUCTION(RegExpLiteral, "regexp-literal") 1920 DECLARE_CONCRETE_INSTRUCTION(RegExpLiteral, "regexp-literal")
1913 DECLARE_HYDROGEN_ACCESSOR(RegExpLiteral) 1921 DECLARE_HYDROGEN_ACCESSOR(RegExpLiteral)
1914 }; 1922 };
1915 1923
1916 1924
1917 class LFunctionLiteral: public LTemplateInstruction<1, 0, 0> { 1925 class LFunctionLiteral: public LTemplateInstruction<1, 0, 0> {
1918 public: 1926 public:
1919 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal") 1927 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
2248 2256
2249 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2257 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2250 }; 2258 };
2251 2259
2252 #undef DECLARE_HYDROGEN_ACCESSOR 2260 #undef DECLARE_HYDROGEN_ACCESSOR
2253 #undef DECLARE_CONCRETE_INSTRUCTION 2261 #undef DECLARE_CONCRETE_INSTRUCTION
2254 2262
2255 } } // namespace v8::internal 2263 } } // namespace v8::internal
2256 2264
2257 #endif // V8_ARM_LITHIUM_ARM_H_ 2265 #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