| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1246 DECLARE_CONCRETE_INSTRUCTION(LoadNamedGeneric, "load-named-generic") | 1246 DECLARE_CONCRETE_INSTRUCTION(LoadNamedGeneric, "load-named-generic") |
| 1247 DECLARE_HYDROGEN_ACCESSOR(LoadNamedGeneric) | 1247 DECLARE_HYDROGEN_ACCESSOR(LoadNamedGeneric) |
| 1248 | 1248 |
| 1249 LOperand* object() const { return input(); } | 1249 LOperand* object() const { return input(); } |
| 1250 Handle<Object> name() const { return hydrogen()->name(); } | 1250 Handle<Object> name() const { return hydrogen()->name(); } |
| 1251 }; | 1251 }; |
| 1252 | 1252 |
| 1253 | 1253 |
| 1254 class LLoadFunctionPrototype: public LUnaryOperation { | 1254 class LLoadFunctionPrototype: public LUnaryOperation { |
| 1255 public: | 1255 public: |
| 1256 LLoadFunctionPrototype(LOperand* function) : LUnaryOperation(function) { } | 1256 explicit LLoadFunctionPrototype(LOperand* function) |
| 1257 : LUnaryOperation(function) { } |
| 1257 | 1258 |
| 1258 DECLARE_CONCRETE_INSTRUCTION(LoadFunctionPrototype, "load-function-prototype") | 1259 DECLARE_CONCRETE_INSTRUCTION(LoadFunctionPrototype, "load-function-prototype") |
| 1259 DECLARE_HYDROGEN_ACCESSOR(LoadFunctionPrototype) | 1260 DECLARE_HYDROGEN_ACCESSOR(LoadFunctionPrototype) |
| 1260 | 1261 |
| 1261 LOperand* function() const { return input(); } | 1262 LOperand* function() const { return input(); } |
| 1262 }; | 1263 }; |
| 1263 | 1264 |
| 1264 | 1265 |
| 1265 class LLoadElements: public LUnaryOperation { | 1266 class LLoadElements: public LUnaryOperation { |
| 1266 public: | 1267 public: |
| (...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2116 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2117 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2117 }; | 2118 }; |
| 2118 | 2119 |
| 2119 #undef DECLARE_HYDROGEN_ACCESSOR | 2120 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2120 #undef DECLARE_INSTRUCTION | 2121 #undef DECLARE_INSTRUCTION |
| 2121 #undef DECLARE_CONCRETE_INSTRUCTION | 2122 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2122 | 2123 |
| 2123 } } // namespace v8::internal | 2124 } } // namespace v8::internal |
| 2124 | 2125 |
| 2125 #endif // V8_ARM_LITHIUM_ARM_H_ | 2126 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |