| OLD | NEW | 
|    1 // Copyright 2012 the V8 project authors. All rights reserved. |    1 // Copyright 2012 the V8 project authors. All rights reserved. | 
|    2 // Redistribution and use in source and binary forms, with or without |    2 // Redistribution and use in source and binary forms, with or without | 
|    3 // modification, are permitted provided that the following conditions are |    3 // modification, are permitted provided that the following conditions are | 
|    4 // met: |    4 // met: | 
|    5 // |    5 // | 
|    6 //     * Redistributions of source code must retain the above copyright |    6 //     * Redistributions of source code must retain the above copyright | 
|    7 //       notice, this list of conditions and the following disclaimer. |    7 //       notice, this list of conditions and the following disclaimer. | 
|    8 //     * Redistributions in binary form must reproduce the above |    8 //     * Redistributions in binary form must reproduce the above | 
|    9 //       copyright notice, this list of conditions and the following |    9 //       copyright notice, this list of conditions and the following | 
|   10 //       disclaimer in the documentation and/or other materials provided |   10 //       disclaimer in the documentation and/or other materials provided | 
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  369  |  369  | 
|  370   struct JumpTableEntry { |  370   struct JumpTableEntry { | 
|  371     explicit inline JumpTableEntry(Address entry) |  371     explicit inline JumpTableEntry(Address entry) | 
|  372         : label(), |  372         : label(), | 
|  373           address(entry) { } |  373           address(entry) { } | 
|  374     Label label; |  374     Label label; | 
|  375     Address address; |  375     Address address; | 
|  376   }; |  376   }; | 
|  377  |  377  | 
|  378   void EnsureSpaceForLazyDeopt(); |  378   void EnsureSpaceForLazyDeopt(); | 
 |  379   void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 
 |  380   void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 
 |  381   void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 
 |  382   void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 
 |  383   void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 
 |  384   void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 
|  379  |  385  | 
|  380   Zone* zone_; |  386   Zone* zone_; | 
|  381   LPlatformChunk* const chunk_; |  387   LPlatformChunk* const chunk_; | 
|  382   MacroAssembler* const masm_; |  388   MacroAssembler* const masm_; | 
|  383   CompilationInfo* const info_; |  389   CompilationInfo* const info_; | 
|  384  |  390  | 
|  385   int current_block_; |  391   int current_block_; | 
|  386   int current_instruction_; |  392   int current_instruction_; | 
|  387   const ZoneList<LInstruction*>* instructions_; |  393   const ZoneList<LInstruction*>* instructions_; | 
|  388   ZoneList<LEnvironment*> deoptimizations_; |  394   ZoneList<LEnvironment*> deoptimizations_; | 
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  478   LCodeGen* codegen_; |  484   LCodeGen* codegen_; | 
|  479   Label entry_; |  485   Label entry_; | 
|  480   Label exit_; |  486   Label exit_; | 
|  481   Label* external_exit_; |  487   Label* external_exit_; | 
|  482   int instruction_index_; |  488   int instruction_index_; | 
|  483 }; |  489 }; | 
|  484  |  490  | 
|  485 } }  // namespace v8::internal |  491 } }  // namespace v8::internal | 
|  486  |  492  | 
|  487 #endif  // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |  493 #endif  // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 
| OLD | NEW |