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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 | 328 |
329 struct JumpTableEntry { | 329 struct JumpTableEntry { |
330 explicit inline JumpTableEntry(Address entry) | 330 explicit inline JumpTableEntry(Address entry) |
331 : label(), | 331 : label(), |
332 address(entry) { } | 332 address(entry) { } |
333 Label label; | 333 Label label; |
334 Address address; | 334 Address address; |
335 }; | 335 }; |
336 | 336 |
337 void EnsureSpaceForLazyDeopt(int space_needed); | 337 void EnsureSpaceForLazyDeopt(int space_needed); |
| 338 void DoLoadKeyedExternal(LLoadKeyed* instr); |
| 339 void DoStoreKeyedExternal(LStoreKeyed* instr); |
338 | 340 |
339 Zone* zone_; | 341 Zone* zone_; |
340 LPlatformChunk* const chunk_; | 342 LPlatformChunk* const chunk_; |
341 MacroAssembler* const masm_; | 343 MacroAssembler* const masm_; |
342 CompilationInfo* const info_; | 344 CompilationInfo* const info_; |
343 | 345 |
344 int current_block_; | 346 int current_block_; |
345 int current_instruction_; | 347 int current_instruction_; |
346 const ZoneList<LInstruction*>* instructions_; | 348 const ZoneList<LInstruction*>* instructions_; |
347 ZoneList<LEnvironment*> deoptimizations_; | 349 ZoneList<LEnvironment*> deoptimizations_; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 LCodeGen* codegen_; | 418 LCodeGen* codegen_; |
417 Label entry_; | 419 Label entry_; |
418 Label exit_; | 420 Label exit_; |
419 Label* external_exit_; | 421 Label* external_exit_; |
420 int instruction_index_; | 422 int instruction_index_; |
421 }; | 423 }; |
422 | 424 |
423 } } // namespace v8::internal | 425 } } // namespace v8::internal |
424 | 426 |
425 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 427 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |