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 DoLoadKeyedDouble(LLoadKeyed* instr); |
| 340 void DoLoadKeyedFixed(LLoadKeyed* instr); |
| 341 void DoStoreKeyedExternal(LStoreKeyed* instr); |
| 342 void DoStoreKeyedDouble(LStoreKeyed* instr); |
| 343 void DoStoreKeyedFixed(LStoreKeyed* instr); |
338 | 344 |
339 Zone* zone_; | 345 Zone* zone_; |
340 LPlatformChunk* const chunk_; | 346 LPlatformChunk* const chunk_; |
341 MacroAssembler* const masm_; | 347 MacroAssembler* const masm_; |
342 CompilationInfo* const info_; | 348 CompilationInfo* const info_; |
343 | 349 |
344 int current_block_; | 350 int current_block_; |
345 int current_instruction_; | 351 int current_instruction_; |
346 const ZoneList<LInstruction*>* instructions_; | 352 const ZoneList<LInstruction*>* instructions_; |
347 ZoneList<LEnvironment*> deoptimizations_; | 353 ZoneList<LEnvironment*> deoptimizations_; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 LCodeGen* codegen_; | 422 LCodeGen* codegen_; |
417 Label entry_; | 423 Label entry_; |
418 Label exit_; | 424 Label exit_; |
419 Label* external_exit_; | 425 Label* external_exit_; |
420 int instruction_index_; | 426 int instruction_index_; |
421 }; | 427 }; |
422 | 428 |
423 } } // namespace v8::internal | 429 } } // namespace v8::internal |
424 | 430 |
425 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 431 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |