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

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

Issue 1046873004: MIPS: Refactor simulator and add selection instructions for r6. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 5
6 // Declares a Simulator for MIPS instructions if we are not generating a native 6 // Declares a Simulator for MIPS instructions if we are not generating a native
7 // MIPS binary. This Simulator allows us to run and debug MIPS code generation 7 // MIPS binary. This Simulator allows us to run and debug MIPS code generation
8 // on regular desktop machines. 8 // on regular desktop machines.
9 // V8 calls into generated code by "calling" the CALL_GENERATED_CODE macro, 9 // V8 calls into generated code by "calling" the CALL_GENERATED_CODE macro,
10 // which will start execution in the Simulator or forwards to the real entry 10 // which will start execution in the Simulator or forwards to the real entry
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 void TraceMemRd(int64_t addr, int64_t value); 305 void TraceMemRd(int64_t addr, int64_t value);
306 306
307 // Operations depending on endianness. 307 // Operations depending on endianness.
308 // Get Double Higher / Lower word. 308 // Get Double Higher / Lower word.
309 inline int32_t GetDoubleHIW(double* addr); 309 inline int32_t GetDoubleHIW(double* addr);
310 inline int32_t GetDoubleLOW(double* addr); 310 inline int32_t GetDoubleLOW(double* addr);
311 // Set Double Higher / Lower word. 311 // Set Double Higher / Lower word.
312 inline int32_t SetDoubleHIW(double* addr); 312 inline int32_t SetDoubleHIW(double* addr);
313 inline int32_t SetDoubleLOW(double* addr); 313 inline int32_t SetDoubleLOW(double* addr);
314 314
315 // functions called from DecodeTypeRegister
316 void DecodeTypeRegisterCOP1(Instruction* instr, const int64_t& rs_reg,
317 const int64_t& rs, const uint64_t& rs_u,
318 const int64_t& rt_reg, const int64_t& rt,
319 const uint64_t& rt_u, const int64_t& rd_reg,
320 const int32_t& fr_reg, const int32_t& fs_reg,
321 const int32_t& ft_reg, const int64_t& fd_reg,
322 int64_t& alu_out);
323
324 void DecodeTypeRegisterCOP1X(Instruction* instr, const int32_t& fr_reg,
325 const int32_t& fs_reg, const int32_t& ft_reg,
326 const int64_t& fd_reg);
327
328 void DecodeTypeRegisterSPECIAL(
329 Instruction* instr, const int64_t& rs_reg, const int64_t& rs,
330 const uint64_t& rs_u, const int64_t& rt_reg, const int64_t& rt,
331 const uint64_t& rt_u, const int64_t& rd_reg, const int32_t& fr_reg,
332 const int32_t& fs_reg, const int32_t& ft_reg, const int64_t& fd_reg,
333 int64_t& i64hilo, uint64_t& u64hilo, int64_t& alu_out, bool& do_interrupt,
334 int64_t& current_pc, int64_t& next_pc, int64_t& return_addr_reg,
335 int64_t& i128resultH, int64_t& i128resultL);
336
337 void DecodeTypeRegisterSPECIAL2(Instruction* instr, const int64_t& rd_reg,
338 int64_t& alu_out);
339
340 void DecodeTypeRegisterSPECIAL3(Instruction* instr, const int64_t& rt_reg,
341 int64_t& alu_out);
342
343 void DecodeTypeRegisterSRsType(Instruction* instr, const int32_t& fs_reg,
344 const int64_t& fd_reg);
345
346 void DecodeTypeRegisterDRsType(Instruction* instr, const int32_t& fs_reg,
347 const int64_t& ft_reg, const int32_t& fd_reg);
348
349 void DecodeTypeRegisterWRsType(Instruction* instr, const int32_t& fs_reg,
350 const int32_t& fd_reg, int64_t& alu_out);
351
352 void DecodeTypeRegisterLRsType(Instruction* instr, const int32_t& fs_reg,
353 const int32_t& fd_reg, const int32_t& ft_reg);
315 // Executing is handled based on the instruction type. 354 // Executing is handled based on the instruction type.
316 void DecodeTypeRegister(Instruction* instr); 355 void DecodeTypeRegister(Instruction* instr);
317 356
318 // Helper function for DecodeTypeRegister. 357 // Helper function for DecodeTypeRegister.
319 void ConfigureTypeRegister(Instruction* instr, 358 void ConfigureTypeRegister(Instruction* instr,
320 int64_t* alu_out, 359 int64_t* alu_out,
321 int64_t* i64hilo, 360 int64_t* i64hilo,
322 uint64_t* u64hilo, 361 uint64_t* u64hilo,
323 int64_t* next_pc, 362 int64_t* next_pc,
324 int64_t* return_addr_reg, 363 int64_t* return_addr_reg,
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 512
474 static inline void UnregisterCTryCatch() { 513 static inline void UnregisterCTryCatch() {
475 Simulator::current(Isolate::Current())->PopAddress(); 514 Simulator::current(Isolate::Current())->PopAddress();
476 } 515 }
477 }; 516 };
478 517
479 } } // namespace v8::internal 518 } } // namespace v8::internal
480 519
481 #endif // !defined(USE_SIMULATOR) 520 #endif // !defined(USE_SIMULATOR)
482 #endif // V8_MIPS_SIMULATOR_MIPS_H_ 521 #endif // V8_MIPS_SIMULATOR_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698