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

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

Issue 8775002: Simplify stack check instruction in Crankshaft. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: 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 | « src/ia32/lithium-codegen-ia32.cc ('k') | src/ia32/lithium-ia32.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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 virtual bool IsControl() const { return false; } 221 virtual bool IsControl() const { return false; }
222 222
223 void set_environment(LEnvironment* env) { environment_ = env; } 223 void set_environment(LEnvironment* env) { environment_ = env; }
224 LEnvironment* environment() const { return environment_; } 224 LEnvironment* environment() const { return environment_; }
225 bool HasEnvironment() const { return environment_ != NULL; } 225 bool HasEnvironment() const { return environment_ != NULL; }
226 226
227 void set_pointer_map(LPointerMap* p) { pointer_map_.set(p); } 227 void set_pointer_map(LPointerMap* p) { pointer_map_.set(p); }
228 LPointerMap* pointer_map() const { return pointer_map_.get(); } 228 LPointerMap* pointer_map() const { return pointer_map_.get(); }
229 bool HasPointerMap() const { return pointer_map_.is_set(); } 229 bool HasPointerMap() const { return pointer_map_.is_set(); }
230 230
231
232 void set_hydrogen_value(HValue* value) { hydrogen_value_ = value; } 231 void set_hydrogen_value(HValue* value) { hydrogen_value_ = value; }
233 HValue* hydrogen_value() const { return hydrogen_value_; } 232 HValue* hydrogen_value() const { return hydrogen_value_; }
234 233
235 void set_deoptimization_environment(LEnvironment* env) { 234 void set_deoptimization_environment(LEnvironment* env) {
236 deoptimization_environment_.set(env); 235 deoptimization_environment_.set(env);
237 } 236 }
238 LEnvironment* deoptimization_environment() const { 237 LEnvironment* deoptimization_environment() const {
239 return deoptimization_environment_.get(); 238 return deoptimization_environment_.get();
240 } 239 }
241 bool HasDeoptimizationEnvironment() const { 240 bool HasDeoptimizationEnvironment() const {
(...skipping 2114 matching lines...) Expand 10 before | Expand all | Expand 10 after
2356 2355
2357 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2356 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2358 }; 2357 };
2359 2358
2360 #undef DECLARE_HYDROGEN_ACCESSOR 2359 #undef DECLARE_HYDROGEN_ACCESSOR
2361 #undef DECLARE_CONCRETE_INSTRUCTION 2360 #undef DECLARE_CONCRETE_INSTRUCTION
2362 2361
2363 } } // namespace v8::internal 2362 } } // namespace v8::internal
2364 2363
2365 #endif // V8_IA32_LITHIUM_IA32_H_ 2364 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698