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

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

Issue 609843002: Refactor FrameAndConstantPoolScope and ConstantPoolUnavailableScope to be architecture independent (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Re-factoring to enable FrameAndConstantPoolScope and ConstantPoolUnavailableScope to be used by oth… Created 6 years, 2 months 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 | Annotate | Revision Log
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 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 static bool IsEmittedConstant(Instr instr); 1140 static bool IsEmittedConstant(Instr instr);
1141 1141
1142 void CheckTrampolinePool(); 1142 void CheckTrampolinePool();
1143 1143
1144 // Allocate a constant pool of the correct size for the generated code. 1144 // Allocate a constant pool of the correct size for the generated code.
1145 Handle<ConstantPoolArray> NewConstantPool(Isolate* isolate); 1145 Handle<ConstantPoolArray> NewConstantPool(Isolate* isolate);
1146 1146
1147 // Generate the constant pool for the generated code. 1147 // Generate the constant pool for the generated code.
1148 void PopulateConstantPool(ConstantPoolArray* constant_pool); 1148 void PopulateConstantPool(ConstantPoolArray* constant_pool);
1149 1149
1150 bool is_constant_pool_available() const { return false; }
1151
1150 protected: 1152 protected:
1151 // Relocation for a type-recording IC has the AST id added to it. This 1153 // Relocation for a type-recording IC has the AST id added to it. This
1152 // member variable is a way to pass the information from the call site to 1154 // member variable is a way to pass the information from the call site to
1153 // the relocation info. 1155 // the relocation info.
1154 TypeFeedbackId recorded_ast_id_; 1156 TypeFeedbackId recorded_ast_id_;
1155 1157
1156 int64_t buffer_space() const { return reloc_info_writer.pos() - pc_; } 1158 int64_t buffer_space() const { return reloc_info_writer.pos() - pc_; }
1157 1159
1158 // Decode branch instruction at pos and return branch target pos. 1160 // Decode branch instruction at pos and return branch target pos.
1159 int64_t target_at(int64_t pos); 1161 int64_t target_at(int64_t pos);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
1203 1205
1204 void EndBlockGrowBuffer() { 1206 void EndBlockGrowBuffer() {
1205 DCHECK(block_buffer_growth_); 1207 DCHECK(block_buffer_growth_);
1206 block_buffer_growth_ = false; 1208 block_buffer_growth_ = false;
1207 } 1209 }
1208 1210
1209 bool is_buffer_growth_blocked() const { 1211 bool is_buffer_growth_blocked() const {
1210 return block_buffer_growth_; 1212 return block_buffer_growth_;
1211 } 1213 }
1212 1214
1215 void set_constant_pool_available(bool available) {
1216 // Constant pool is not supported on mips64.
1217 UNREACHABLE();
1218 }
1219
1213 private: 1220 private:
1214 // Buffer size and constant pool distance are checked together at regular 1221 // Buffer size and constant pool distance are checked together at regular
1215 // intervals of kBufferCheckInterval emitted bytes. 1222 // intervals of kBufferCheckInterval emitted bytes.
1216 static const int kBufferCheckInterval = 1*KB/2; 1223 static const int kBufferCheckInterval = 1*KB/2;
1217 1224
1218 // Code generation. 1225 // Code generation.
1219 // The relocation writer's position is at least kGap bytes below the end of 1226 // The relocation writer's position is at least kGap bytes below the end of
1220 // the generated instructions. This is so that multi-instruction sequences do 1227 // the generated instructions. This is so that multi-instruction sequences do
1221 // not have to check for overflow. The same is true for writes of large 1228 // not have to check for overflow. The same is true for writes of large
1222 // relocation info entries. 1229 // relocation info entries.
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
1398 bool internal_trampoline_exception_; 1405 bool internal_trampoline_exception_;
1399 1406
1400 friend class RegExpMacroAssemblerMIPS; 1407 friend class RegExpMacroAssemblerMIPS;
1401 friend class RelocInfo; 1408 friend class RelocInfo;
1402 friend class CodePatcher; 1409 friend class CodePatcher;
1403 friend class BlockTrampolinePoolScope; 1410 friend class BlockTrampolinePoolScope;
1404 1411
1405 PositionsRecorder positions_recorder_; 1412 PositionsRecorder positions_recorder_;
1406 friend class PositionsRecorder; 1413 friend class PositionsRecorder;
1407 friend class EnsureSpace; 1414 friend class EnsureSpace;
1415
1416 // constant pool
1417 friend class FrameAndConstantPoolScope;
1418 friend class ConstantPoolUnavailableScope;
1408 }; 1419 };
1409 1420
1410 1421
1411 class EnsureSpace BASE_EMBEDDED { 1422 class EnsureSpace BASE_EMBEDDED {
1412 public: 1423 public:
1413 explicit EnsureSpace(Assembler* assembler) { 1424 explicit EnsureSpace(Assembler* assembler) {
1414 assembler->CheckBuffer(); 1425 assembler->CheckBuffer();
1415 } 1426 }
1416 }; 1427 };
1417 1428
1418 } } // namespace v8::internal 1429 } } // namespace v8::internal
1419 1430
1420 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1431 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698