| 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 | 5 // modification, are permitted provided that the following conditions |
| 6 // are met: | 6 // are 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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 NeonListType type() const { return type_; } | 642 NeonListType type() const { return type_; } |
| 643 private: | 643 private: |
| 644 DoubleRegister base_; | 644 DoubleRegister base_; |
| 645 NeonListType type_; | 645 NeonListType type_; |
| 646 }; | 646 }; |
| 647 | 647 |
| 648 | 648 |
| 649 // Class used to build a constant pool. | 649 // Class used to build a constant pool. |
| 650 class ConstantPoolBuilder BASE_EMBEDDED { | 650 class ConstantPoolBuilder BASE_EMBEDDED { |
| 651 public: | 651 public: |
| 652 explicit ConstantPoolBuilder(); | 652 ConstantPoolBuilder(); |
| 653 ConstantPoolArray::LayoutSection AddEntry(Assembler* assm, | 653 ConstantPoolArray::LayoutSection AddEntry(Assembler* assm, |
| 654 const RelocInfo& rinfo); | 654 const RelocInfo& rinfo); |
| 655 void Relocate(int pc_delta); | 655 void Relocate(int pc_delta); |
| 656 bool IsEmpty(); | 656 bool IsEmpty(); |
| 657 Handle<ConstantPoolArray> New(Isolate* isolate); | 657 Handle<ConstantPoolArray> New(Isolate* isolate); |
| 658 void Populate(Assembler* assm, ConstantPoolArray* constant_pool); | 658 void Populate(Assembler* assm, ConstantPoolArray* constant_pool); |
| 659 | 659 |
| 660 inline ConstantPoolArray::LayoutSection current_section() const { | 660 inline ConstantPoolArray::LayoutSection current_section() const { |
| 661 return current_section_; | 661 return current_section_; |
| 662 } | 662 } |
| (...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1658 public: | 1658 public: |
| 1659 explicit EnsureSpace(Assembler* assembler) { | 1659 explicit EnsureSpace(Assembler* assembler) { |
| 1660 assembler->CheckBuffer(); | 1660 assembler->CheckBuffer(); |
| 1661 } | 1661 } |
| 1662 }; | 1662 }; |
| 1663 | 1663 |
| 1664 | 1664 |
| 1665 } } // namespace v8::internal | 1665 } } // namespace v8::internal |
| 1666 | 1666 |
| 1667 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1667 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |