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

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

Issue 6665026: Increase coverage of global loads in optimized code... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 9 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/arm/full-codegen-arm.cc ('k') | 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 V(IsObjectAndBranch) \ 112 V(IsObjectAndBranch) \
113 V(IsSmi) \ 113 V(IsSmi) \
114 V(IsSmiAndBranch) \ 114 V(IsSmiAndBranch) \
115 V(JSArrayLength) \ 115 V(JSArrayLength) \
116 V(Label) \ 116 V(Label) \
117 V(LazyBailout) \ 117 V(LazyBailout) \
118 V(LoadContextSlot) \ 118 V(LoadContextSlot) \
119 V(LoadElements) \ 119 V(LoadElements) \
120 V(LoadExternalArrayPointer) \ 120 V(LoadExternalArrayPointer) \
121 V(LoadFunctionPrototype) \ 121 V(LoadFunctionPrototype) \
122 V(LoadGlobal) \ 122 V(LoadGlobalCell) \
123 V(LoadGlobalGeneric) \
123 V(LoadKeyedFastElement) \ 124 V(LoadKeyedFastElement) \
124 V(LoadKeyedGeneric) \ 125 V(LoadKeyedGeneric) \
125 V(LoadNamedField) \ 126 V(LoadNamedField) \
126 V(LoadNamedGeneric) \ 127 V(LoadNamedGeneric) \
127 V(LoadPixelArrayElement) \ 128 V(LoadPixelArrayElement) \
128 V(ModI) \ 129 V(ModI) \
129 V(MulI) \ 130 V(MulI) \
130 V(NumberTagD) \ 131 V(NumberTagD) \
131 V(NumberTagI) \ 132 V(NumberTagI) \
132 V(NumberUntagD) \ 133 V(NumberUntagD) \
(...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after
1215 inputs_[1] = key; 1216 inputs_[1] = key;
1216 } 1217 }
1217 1218
1218 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic") 1219 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic")
1219 1220
1220 LOperand* object() { return inputs_[0]; } 1221 LOperand* object() { return inputs_[0]; }
1221 LOperand* key() { return inputs_[1]; } 1222 LOperand* key() { return inputs_[1]; }
1222 }; 1223 };
1223 1224
1224 1225
1225 class LLoadGlobal: public LTemplateInstruction<1, 0, 0> { 1226 class LLoadGlobalCell: public LTemplateInstruction<1, 0, 0> {
1226 public: 1227 public:
1227 DECLARE_CONCRETE_INSTRUCTION(LoadGlobal, "load-global") 1228 DECLARE_CONCRETE_INSTRUCTION(LoadGlobalCell, "load-global-cell")
1228 DECLARE_HYDROGEN_ACCESSOR(LoadGlobal) 1229 DECLARE_HYDROGEN_ACCESSOR(LoadGlobalCell)
1230 };
1231
1232
1233 class LLoadGlobalGeneric: public LTemplateInstruction<1, 1, 0> {
1234 public:
1235 explicit LLoadGlobalGeneric(LOperand* global_object) {
1236 inputs_[0] = global_object;
1237 }
1238
1239 DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
1240 DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
1241
1242 LOperand* global_object() { return inputs_[0]; }
1243 Handle<Object> name() const { return hydrogen()->name(); }
1244 bool for_typeof() const { return hydrogen()->for_typeof(); }
1229 }; 1245 };
1230 1246
1231 1247
1232 class LStoreGlobal: public LTemplateInstruction<0, 1, 1> { 1248 class LStoreGlobal: public LTemplateInstruction<0, 1, 1> {
1233 public: 1249 public:
1234 LStoreGlobal(LOperand* value, LOperand* temp) { 1250 LStoreGlobal(LOperand* value, LOperand* temp) {
1235 inputs_[0] = value; 1251 inputs_[0] = value;
1236 temps_[0] = temp; 1252 temps_[0] = temp;
1237 } 1253 }
1238 1254
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
2084 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2100 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2085 }; 2101 };
2086 2102
2087 #undef DECLARE_HYDROGEN_ACCESSOR 2103 #undef DECLARE_HYDROGEN_ACCESSOR
2088 #undef DECLARE_INSTRUCTION 2104 #undef DECLARE_INSTRUCTION
2089 #undef DECLARE_CONCRETE_INSTRUCTION 2105 #undef DECLARE_CONCRETE_INSTRUCTION
2090 2106
2091 } } // namespace v8::internal 2107 } } // namespace v8::internal
2092 2108
2093 #endif // V8_ARM_LITHIUM_ARM_H_ 2109 #endif // V8_ARM_LITHIUM_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/full-codegen-arm.cc ('k') | src/arm/lithium-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698