| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 // ----------------------------------------------------------------------------- | 264 // ----------------------------------------------------------------------------- |
| 265 // Machine instruction Immediates | 265 // Machine instruction Immediates |
| 266 | 266 |
| 267 class Immediate BASE_EMBEDDED { | 267 class Immediate BASE_EMBEDDED { |
| 268 public: | 268 public: |
| 269 inline explicit Immediate(int x); | 269 inline explicit Immediate(int x); |
| 270 inline explicit Immediate(const ExternalReference& ext); | 270 inline explicit Immediate(const ExternalReference& ext); |
| 271 inline explicit Immediate(Handle<Object> handle); | 271 inline explicit Immediate(Handle<Object> handle); |
| 272 inline explicit Immediate(Smi* value); | 272 inline explicit Immediate(Smi* value); |
| 273 inline explicit Immediate(Address addr); | 273 inline explicit Immediate(Address addr); |
| 274 inline explicit Immediate(Address x, RelocInfo::Mode rmode); |
| 274 | 275 |
| 275 static Immediate CodeRelativeOffset(Label* label) { | 276 static Immediate CodeRelativeOffset(Label* label) { |
| 276 return Immediate(label); | 277 return Immediate(label); |
| 277 } | 278 } |
| 278 | 279 |
| 279 bool is_zero() const { return x_ == 0 && RelocInfo::IsNone(rmode_); } | 280 bool is_zero() const { return x_ == 0 && RelocInfo::IsNone(rmode_); } |
| 280 bool is_int8() const { | 281 bool is_int8() const { |
| 281 return -128 <= x_ && x_ < 128 && RelocInfo::IsNone(rmode_); | 282 return -128 <= x_ && x_ < 128 && RelocInfo::IsNone(rmode_); |
| 282 } | 283 } |
| 283 bool is_int16() const { | 284 bool is_int16() const { |
| (...skipping 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1572 Assembler* assembler_; | 1573 Assembler* assembler_; |
| 1573 #ifdef DEBUG | 1574 #ifdef DEBUG |
| 1574 int space_before_; | 1575 int space_before_; |
| 1575 #endif | 1576 #endif |
| 1576 }; | 1577 }; |
| 1577 | 1578 |
| 1578 } // namespace internal | 1579 } // namespace internal |
| 1579 } // namespace v8 | 1580 } // namespace v8 |
| 1580 | 1581 |
| 1581 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1582 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |