| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_CRANKSHAFT_X64_LITHIUM_X64_H_ | 5 #ifndef V8_CRANKSHAFT_X64_LITHIUM_X64_H_ |
| 6 #define V8_CRANKSHAFT_X64_LITHIUM_X64_H_ | 6 #define V8_CRANKSHAFT_X64_LITHIUM_X64_H_ |
| 7 | 7 |
| 8 #include "src/crankshaft/hydrogen.h" | 8 #include "src/crankshaft/hydrogen.h" |
| 9 #include "src/crankshaft/lithium.h" | 9 #include "src/crankshaft/lithium.h" |
| 10 #include "src/crankshaft/lithium-allocator.h" | 10 #include "src/crankshaft/lithium-allocator.h" |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 void set_pointer_map(LPointerMap* p) { pointer_map_.set(p); } | 214 void set_pointer_map(LPointerMap* p) { pointer_map_.set(p); } |
| 215 LPointerMap* pointer_map() const { return pointer_map_.get(); } | 215 LPointerMap* pointer_map() const { return pointer_map_.get(); } |
| 216 bool HasPointerMap() const { return pointer_map_.is_set(); } | 216 bool HasPointerMap() const { return pointer_map_.is_set(); } |
| 217 | 217 |
| 218 void set_hydrogen_value(HValue* value) { hydrogen_value_ = value; } | 218 void set_hydrogen_value(HValue* value) { hydrogen_value_ = value; } |
| 219 HValue* hydrogen_value() const { return hydrogen_value_; } | 219 HValue* hydrogen_value() const { return hydrogen_value_; } |
| 220 | 220 |
| 221 void MarkAsCall() { bit_field_ = IsCallBits::update(bit_field_, true); } | 221 void MarkAsCall() { bit_field_ = IsCallBits::update(bit_field_, true); } |
| 222 bool IsCall() const { return IsCallBits::decode(bit_field_); } | 222 bool IsCall() const { return IsCallBits::decode(bit_field_); } |
| 223 | 223 |
| 224 void MarkAsTailCall() { | |
| 225 bit_field_ = IsTailCallBits::update(bit_field_, true); | |
| 226 } | |
| 227 bool IsTailCall() const { return IsTailCallBits::decode(bit_field_); } | |
| 228 | |
| 229 // Interface to the register allocator and iterators. | 224 // Interface to the register allocator and iterators. |
| 230 bool ClobbersTemps() const { return IsCall(); } | 225 bool ClobbersTemps() const { return IsCall(); } |
| 231 bool ClobbersRegisters() const { return IsCall(); } | 226 bool ClobbersRegisters() const { return IsCall(); } |
| 232 virtual bool ClobbersDoubleRegisters(Isolate* isolate) const { | 227 virtual bool ClobbersDoubleRegisters(Isolate* isolate) const { |
| 233 return IsCall(); | 228 return IsCall(); |
| 234 } | 229 } |
| 235 | 230 |
| 236 // Interface to the register allocator and iterators. | 231 // Interface to the register allocator and iterators. |
| 237 bool IsMarkedAsCall() const { return IsCall(); } | 232 bool IsMarkedAsCall() const { return IsCall(); } |
| 238 | 233 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 257 | 252 |
| 258 private: | 253 private: |
| 259 // Iterator support. | 254 // Iterator support. |
| 260 friend class InputIterator; | 255 friend class InputIterator; |
| 261 | 256 |
| 262 friend class TempIterator; | 257 friend class TempIterator; |
| 263 virtual int TempCount() = 0; | 258 virtual int TempCount() = 0; |
| 264 virtual LOperand* TempAt(int i) = 0; | 259 virtual LOperand* TempAt(int i) = 0; |
| 265 | 260 |
| 266 class IsCallBits: public BitField<bool, 0, 1> {}; | 261 class IsCallBits: public BitField<bool, 0, 1> {}; |
| 267 class IsTailCallBits : public BitField<bool, IsCallBits::kNext, 1> {}; | |
| 268 | 262 |
| 269 LEnvironment* environment_; | 263 LEnvironment* environment_; |
| 270 SetOncePointer<LPointerMap> pointer_map_; | 264 SetOncePointer<LPointerMap> pointer_map_; |
| 271 HValue* hydrogen_value_; | 265 HValue* hydrogen_value_; |
| 272 int bit_field_; | 266 int bit_field_; |
| 273 }; | 267 }; |
| 274 | 268 |
| 275 | 269 |
| 276 // R = number of result operands (0 or 1). | 270 // R = number of result operands (0 or 1). |
| 277 template<int R> | 271 template<int R> |
| (...skipping 2368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2646 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2640 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2647 }; | 2641 }; |
| 2648 | 2642 |
| 2649 #undef DECLARE_HYDROGEN_ACCESSOR | 2643 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2650 #undef DECLARE_CONCRETE_INSTRUCTION | 2644 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2651 | 2645 |
| 2652 } // namespace internal | 2646 } // namespace internal |
| 2653 } // namespace v8 | 2647 } // namespace v8 |
| 2654 | 2648 |
| 2655 #endif // V8_CRANKSHAFT_X64_LITHIUM_X64_H_ | 2649 #endif // V8_CRANKSHAFT_X64_LITHIUM_X64_H_ |
| OLD | NEW |