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

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

Issue 6046012: Fix presumbit error (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 11 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698