| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 518 class DictionaryBits: public BitField<int, 0, 3> {}; | 518 class DictionaryBits: public BitField<int, 0, 3> {}; |
| 519 class ResultBits: public BitField<int, 3, 3> {}; | 519 class ResultBits: public BitField<int, 3, 3> {}; |
| 520 class IndexBits: public BitField<int, 6, 3> {}; | 520 class IndexBits: public BitField<int, 6, 3> {}; |
| 521 class LookupModeBits: public BitField<LookupMode, 9, 1> {}; | 521 class LookupModeBits: public BitField<LookupMode, 9, 1> {}; |
| 522 | 522 |
| 523 Register dictionary_; | 523 Register dictionary_; |
| 524 Register result_; | 524 Register result_; |
| 525 Register index_; | 525 Register index_; |
| 526 LookupMode mode_; | 526 LookupMode mode_; |
| 527 }; | 527 }; |
| 528 |
| 529 |
| 528 class RecordWriteStub: public CodeStub { | 530 class RecordWriteStub: public CodeStub { |
| 529 public: | 531 public: |
| 530 RecordWriteStub(Register object, | 532 RecordWriteStub(Register object, |
| 531 Register value, | 533 Register value, |
| 532 Register address, | 534 Register address, |
| 533 RememberedSetAction remembered_set_action, | 535 RememberedSetAction remembered_set_action, |
| 534 SaveFPRegsMode fp_mode) | 536 SaveFPRegsMode fp_mode) |
| 535 : object_(object), | 537 : object_(object), |
| 536 value_(value), | 538 value_(value), |
| 537 address_(address), | 539 address_(address), |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 Register scratch1, | 779 Register scratch1, |
| 778 bool load_elements_from_receiver, | 780 bool load_elements_from_receiver, |
| 779 Label* key_not_smi, | 781 Label* key_not_smi, |
| 780 Label* value_not_smi, | 782 Label* value_not_smi, |
| 781 Label* not_pixel_array, | 783 Label* not_pixel_array, |
| 782 Label* out_of_range); | 784 Label* out_of_range); |
| 783 | 785 |
| 784 } } // namespace v8::internal | 786 } } // namespace v8::internal |
| 785 | 787 |
| 786 #endif // V8_IA32_CODE_STUBS_IA32_H_ | 788 #endif // V8_IA32_CODE_STUBS_IA32_H_ |
| OLD | NEW |