Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/mips64/assembler-mips64.h

Issue 2505923002: MIPS64: Port "Reland of "MIPS: Optimize load/store with large offset"". (Closed)
Patch Set: Remove unnecessary check for Float64 instructions Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698