| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 LEnvironment* env); | 333 LEnvironment* env); |
| 334 | 334 |
| 335 // Emits optimized code to deep-copy the contents of statically known | 335 // Emits optimized code to deep-copy the contents of statically known |
| 336 // object graphs (e.g. object literal boilerplate). | 336 // object graphs (e.g. object literal boilerplate). |
| 337 void EmitDeepCopy(Handle<JSObject> object, | 337 void EmitDeepCopy(Handle<JSObject> object, |
| 338 Register result, | 338 Register result, |
| 339 Register source, | 339 Register source, |
| 340 int* offset); | 340 int* offset); |
| 341 | 341 |
| 342 void EnsureSpaceForLazyDeopt(); | 342 void EnsureSpaceForLazyDeopt(); |
| 343 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
| 344 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
| 345 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
| 346 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
| 347 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
| 348 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
| 343 | 349 |
| 344 // Emits code for pushing either a tagged constant, a (non-double) | 350 // Emits code for pushing either a tagged constant, a (non-double) |
| 345 // register, or a stack slot operand. | 351 // register, or a stack slot operand. |
| 346 void EmitPushTaggedOperand(LOperand* operand); | 352 void EmitPushTaggedOperand(LOperand* operand); |
| 347 | 353 |
| 348 Zone* zone_; | 354 Zone* zone_; |
| 349 LPlatformChunk* const chunk_; | 355 LPlatformChunk* const chunk_; |
| 350 MacroAssembler* const masm_; | 356 MacroAssembler* const masm_; |
| 351 CompilationInfo* const info_; | 357 CompilationInfo* const info_; |
| 352 | 358 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 LCodeGen* codegen_; | 431 LCodeGen* codegen_; |
| 426 Label entry_; | 432 Label entry_; |
| 427 Label exit_; | 433 Label exit_; |
| 428 Label* external_exit_; | 434 Label* external_exit_; |
| 429 int instruction_index_; | 435 int instruction_index_; |
| 430 }; | 436 }; |
| 431 | 437 |
| 432 } } // namespace v8::internal | 438 } } // namespace v8::internal |
| 433 | 439 |
| 434 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 440 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |