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

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

Issue 151603004: A64: Synchronize with r16587. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | « samples/process.cc ('k') | src/a64/lithium-codegen-a64.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 1188
1189 Smi* value() const { return Smi::FromInt(hydrogen()->Integer32Value()); } 1189 Smi* value() const { return Smi::FromInt(hydrogen()->Integer32Value()); }
1190 }; 1190 };
1191 1191
1192 1192
1193 class LConstantT: public LTemplateInstruction<1, 0, 0> { 1193 class LConstantT: public LTemplateInstruction<1, 0, 0> {
1194 public: 1194 public:
1195 DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t") 1195 DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t")
1196 DECLARE_HYDROGEN_ACCESSOR(Constant) 1196 DECLARE_HYDROGEN_ACCESSOR(Constant)
1197 1197
1198 Handle<Object> value() const { return hydrogen()->handle(); } 1198 Handle<Object> value(Isolate* isolate) const {
1199 return hydrogen()->handle(isolate);
1200 }
1199 }; 1201 };
1200 1202
1201 1203
1202 class LContext: public LTemplateInstruction<1, 0, 0> { 1204 class LContext: public LTemplateInstruction<1, 0, 0> {
1203 public: 1205 public:
1204 DECLARE_CONCRETE_INSTRUCTION(Context, "context") 1206 DECLARE_CONCRETE_INSTRUCTION(Context, "context")
1205 DECLARE_HYDROGEN_ACCESSOR(Context) 1207 DECLARE_HYDROGEN_ACCESSOR(Context)
1206 }; 1208 };
1207 1209
1208 1210
(...skipping 1731 matching lines...) Expand 10 before | Expand all | Expand 10 after
2940 2942
2941 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2943 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2942 }; 2944 };
2943 2945
2944 #undef DECLARE_HYDROGEN_ACCESSOR 2946 #undef DECLARE_HYDROGEN_ACCESSOR
2945 #undef DECLARE_CONCRETE_INSTRUCTION 2947 #undef DECLARE_CONCRETE_INSTRUCTION
2946 2948
2947 } } // namespace v8::internal 2949 } } // namespace v8::internal
2948 2950
2949 #endif // V8_A64_LITHIUM_A64_H_ 2951 #endif // V8_A64_LITHIUM_A64_H_
OLDNEW
« no previous file with comments | « samples/process.cc ('k') | src/a64/lithium-codegen-a64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698