| 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 | 370 |
| 371 struct JumpTableEntry { | 371 struct JumpTableEntry { |
| 372 explicit inline JumpTableEntry(Address entry) | 372 explicit inline JumpTableEntry(Address entry) |
| 373 : label(), | 373 : label(), |
| 374 address(entry) { } | 374 address(entry) { } |
| 375 Label label; | 375 Label label; |
| 376 Address address; | 376 Address address; |
| 377 }; | 377 }; |
| 378 | 378 |
| 379 void EnsureSpaceForLazyDeopt(); | 379 void EnsureSpaceForLazyDeopt(); |
| 380 void DoLoadKeyedExternal(LLoadKeyed* instr); |
| 381 void DoStoreKeyedExternal(LStoreKeyed* instr); |
| 380 | 382 |
| 381 Zone* zone_; | 383 Zone* zone_; |
| 382 LPlatformChunk* const chunk_; | 384 LPlatformChunk* const chunk_; |
| 383 MacroAssembler* const masm_; | 385 MacroAssembler* const masm_; |
| 384 CompilationInfo* const info_; | 386 CompilationInfo* const info_; |
| 385 | 387 |
| 386 int current_block_; | 388 int current_block_; |
| 387 int current_instruction_; | 389 int current_instruction_; |
| 388 const ZoneList<LInstruction*>* instructions_; | 390 const ZoneList<LInstruction*>* instructions_; |
| 389 ZoneList<LEnvironment*> deoptimizations_; | 391 ZoneList<LEnvironment*> deoptimizations_; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 LCodeGen* codegen_; | 481 LCodeGen* codegen_; |
| 480 Label entry_; | 482 Label entry_; |
| 481 Label exit_; | 483 Label exit_; |
| 482 Label* external_exit_; | 484 Label* external_exit_; |
| 483 int instruction_index_; | 485 int instruction_index_; |
| 484 }; | 486 }; |
| 485 | 487 |
| 486 } } // namespace v8::internal | 488 } } // namespace v8::internal |
| 487 | 489 |
| 488 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 490 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |