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 DoLoadKeyedExternal(LLoadKeyed* instr); |
| 380 void DoStoreKeyedExternal(LStoreKeyed* instr); |
379 | 381 |
380 Zone* zone_; | 382 Zone* zone_; |
381 LPlatformChunk* const chunk_; | 383 LPlatformChunk* const chunk_; |
382 MacroAssembler* const masm_; | 384 MacroAssembler* const masm_; |
383 CompilationInfo* const info_; | 385 CompilationInfo* const info_; |
384 | 386 |
385 int current_block_; | 387 int current_block_; |
386 int current_instruction_; | 388 int current_instruction_; |
387 const ZoneList<LInstruction*>* instructions_; | 389 const ZoneList<LInstruction*>* instructions_; |
388 ZoneList<LEnvironment*> deoptimizations_; | 390 ZoneList<LEnvironment*> deoptimizations_; |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 LCodeGen* codegen_; | 480 LCodeGen* codegen_; |
479 Label entry_; | 481 Label entry_; |
480 Label exit_; | 482 Label exit_; |
481 Label* external_exit_; | 483 Label* external_exit_; |
482 int instruction_index_; | 484 int instruction_index_; |
483 }; | 485 }; |
484 | 486 |
485 } } // namespace v8::internal | 487 } } // namespace v8::internal |
486 | 488 |
487 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 489 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
OLD | NEW |