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); | |
346 | 344 |
347 Zone* zone_; | 345 Zone* zone_; |
348 LPlatformChunk* const chunk_; | 346 LPlatformChunk* const chunk_; |
349 MacroAssembler* const masm_; | 347 MacroAssembler* const masm_; |
350 CompilationInfo* const info_; | 348 CompilationInfo* const info_; |
351 | 349 |
352 int current_block_; | 350 int current_block_; |
353 int current_instruction_; | 351 int current_instruction_; |
354 const ZoneList<LInstruction*>* instructions_; | 352 const ZoneList<LInstruction*>* instructions_; |
355 ZoneList<LEnvironment*> deoptimizations_; | 353 ZoneList<LEnvironment*> deoptimizations_; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 LCodeGen* codegen_; | 422 LCodeGen* codegen_; |
425 Label entry_; | 423 Label entry_; |
426 Label exit_; | 424 Label exit_; |
427 Label* external_exit_; | 425 Label* external_exit_; |
428 int instruction_index_; | 426 int instruction_index_; |
429 }; | 427 }; |
430 | 428 |
431 } } // namespace v8::internal | 429 } } // namespace v8::internal |
432 | 430 |
433 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 431 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |