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 1883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1894 | 1894 |
1895 inline int UnboundLabelsCount() { return unbound_labels_count_; } | 1895 inline int UnboundLabelsCount() { return unbound_labels_count_; } |
1896 | 1896 |
1897 protected: | 1897 protected: |
1898 // Load Scaled Address instructions. | 1898 // Load Scaled Address instructions. |
1899 void lsa(Register rd, Register rt, Register rs, uint8_t sa); | 1899 void lsa(Register rd, Register rt, Register rs, uint8_t sa); |
1900 void dlsa(Register rd, Register rt, Register rs, uint8_t sa); | 1900 void dlsa(Register rd, Register rt, Register rs, uint8_t sa); |
1901 | 1901 |
1902 // Helpers. | 1902 // Helpers. |
1903 void LoadRegPlusOffsetToAt(const MemOperand& src); | 1903 void LoadRegPlusOffsetToAt(const MemOperand& src); |
1904 int32_t LoadRegPlusUpperOffsetPartToAt(const MemOperand& src); | |
1905 | 1904 |
1906 // Relocation for a type-recording IC has the AST id added to it. This | 1905 // Relocation for a type-recording IC has the AST id added to it. This |
1907 // member variable is a way to pass the information from the call site to | 1906 // member variable is a way to pass the information from the call site to |
1908 // the relocation info. | 1907 // the relocation info. |
1909 TypeFeedbackId recorded_ast_id_; | 1908 TypeFeedbackId recorded_ast_id_; |
1910 | 1909 |
1911 inline static void set_target_internal_reference_encoded_at(Address pc, | 1910 inline static void set_target_internal_reference_encoded_at(Address pc, |
1912 Address target); | 1911 Address target); |
1913 | 1912 |
1914 int64_t buffer_space() const { return reloc_info_writer.pos() - pc_; } | 1913 int64_t buffer_space() const { return reloc_info_writer.pos() - pc_; } |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2261 public: | 2260 public: |
2262 explicit EnsureSpace(Assembler* assembler) { | 2261 explicit EnsureSpace(Assembler* assembler) { |
2263 assembler->CheckBuffer(); | 2262 assembler->CheckBuffer(); |
2264 } | 2263 } |
2265 }; | 2264 }; |
2266 | 2265 |
2267 } // namespace internal | 2266 } // namespace internal |
2268 } // namespace v8 | 2267 } // namespace v8 |
2269 | 2268 |
2270 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 2269 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
OLD | NEW |