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 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1229 | 1229 |
1230 inline int UnboundLabelsCount() { return unbound_labels_count_; } | 1230 inline int UnboundLabelsCount() { return unbound_labels_count_; } |
1231 | 1231 |
1232 protected: | 1232 protected: |
1233 // Load Scaled Address instructions. | 1233 // Load Scaled Address instructions. |
1234 void lsa(Register rd, Register rt, Register rs, uint8_t sa); | 1234 void lsa(Register rd, Register rt, Register rs, uint8_t sa); |
1235 void dlsa(Register rd, Register rt, Register rs, uint8_t sa); | 1235 void dlsa(Register rd, Register rt, Register rs, uint8_t sa); |
1236 | 1236 |
1237 // Helpers. | 1237 // Helpers. |
1238 void LoadRegPlusOffsetToAt(const MemOperand& src); | 1238 void LoadRegPlusOffsetToAt(const MemOperand& src); |
| 1239 int32_t LoadRegPlusUpperOffsetPartToAt(const MemOperand& src); |
1239 | 1240 |
1240 // Relocation for a type-recording IC has the AST id added to it. This | 1241 // Relocation for a type-recording IC has the AST id added to it. This |
1241 // member variable is a way to pass the information from the call site to | 1242 // member variable is a way to pass the information from the call site to |
1242 // the relocation info. | 1243 // the relocation info. |
1243 TypeFeedbackId recorded_ast_id_; | 1244 TypeFeedbackId recorded_ast_id_; |
1244 | 1245 |
1245 inline static void set_target_internal_reference_encoded_at(Address pc, | 1246 inline static void set_target_internal_reference_encoded_at(Address pc, |
1246 Address target); | 1247 Address target); |
1247 | 1248 |
1248 int64_t buffer_space() const { return reloc_info_writer.pos() - pc_; } | 1249 int64_t buffer_space() const { return reloc_info_writer.pos() - pc_; } |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1525 public: | 1526 public: |
1526 explicit EnsureSpace(Assembler* assembler) { | 1527 explicit EnsureSpace(Assembler* assembler) { |
1527 assembler->CheckBuffer(); | 1528 assembler->CheckBuffer(); |
1528 } | 1529 } |
1529 }; | 1530 }; |
1530 | 1531 |
1531 } // namespace internal | 1532 } // namespace internal |
1532 } // namespace v8 | 1533 } // namespace v8 |
1533 | 1534 |
1534 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1535 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
OLD | NEW |