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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 Address address; | 334 Address address; |
335 }; | 335 }; |
336 | 336 |
337 void EnsureSpaceForLazyDeopt(int space_needed); | 337 void EnsureSpaceForLazyDeopt(int space_needed); |
338 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 338 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
339 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 339 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
340 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 340 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
341 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 341 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
342 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 342 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
343 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 343 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
| 344 template <class T> |
| 345 void PrepareKeyForKeyedOp(T* hydrogen_instr, LOperand* key); |
344 | 346 |
345 Zone* zone_; | 347 Zone* zone_; |
346 LPlatformChunk* const chunk_; | 348 LPlatformChunk* const chunk_; |
347 MacroAssembler* const masm_; | 349 MacroAssembler* const masm_; |
348 CompilationInfo* const info_; | 350 CompilationInfo* const info_; |
349 | 351 |
350 int current_block_; | 352 int current_block_; |
351 int current_instruction_; | 353 int current_instruction_; |
352 const ZoneList<LInstruction*>* instructions_; | 354 const ZoneList<LInstruction*>* instructions_; |
353 ZoneList<LEnvironment*> deoptimizations_; | 355 ZoneList<LEnvironment*> deoptimizations_; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 LCodeGen* codegen_; | 424 LCodeGen* codegen_; |
423 Label entry_; | 425 Label entry_; |
424 Label exit_; | 426 Label exit_; |
425 Label* external_exit_; | 427 Label* external_exit_; |
426 int instruction_index_; | 428 int instruction_index_; |
427 }; | 429 }; |
428 | 430 |
429 } } // namespace v8::internal | 431 } } // namespace v8::internal |
430 | 432 |
431 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 433 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |