| OLD | NEW |
| 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 Loading... |
| 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 |
| 231 void set_hydrogen_value(HValue* value) { hydrogen_value_ = value; } | 232 void set_hydrogen_value(HValue* value) { hydrogen_value_ = value; } |
| 232 HValue* hydrogen_value() const { return hydrogen_value_; } | 233 HValue* hydrogen_value() const { return hydrogen_value_; } |
| 233 | 234 |
| 234 void set_deoptimization_environment(LEnvironment* env) { | 235 void set_deoptimization_environment(LEnvironment* env) { |
| 235 deoptimization_environment_.set(env); | 236 deoptimization_environment_.set(env); |
| 236 } | 237 } |
| 237 LEnvironment* deoptimization_environment() const { | 238 LEnvironment* deoptimization_environment() const { |
| 238 return deoptimization_environment_.get(); | 239 return deoptimization_environment_.get(); |
| 239 } | 240 } |
| 240 bool HasDeoptimizationEnvironment() const { | 241 bool HasDeoptimizationEnvironment() const { |
| (...skipping 2114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2355 | 2356 |
| 2356 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2357 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2357 }; | 2358 }; |
| 2358 | 2359 |
| 2359 #undef DECLARE_HYDROGEN_ACCESSOR | 2360 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2360 #undef DECLARE_CONCRETE_INSTRUCTION | 2361 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2361 | 2362 |
| 2362 } } // namespace v8::internal | 2363 } } // namespace v8::internal |
| 2363 | 2364 |
| 2364 #endif // V8_IA32_LITHIUM_IA32_H_ | 2365 #endif // V8_IA32_LITHIUM_IA32_H_ |
| OLD | NEW |