| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 | 344 |
| 345 void EmitLoadFieldOrConstantFunction(Register result, | 345 void EmitLoadFieldOrConstantFunction(Register result, |
| 346 Register object, | 346 Register object, |
| 347 Handle<Map> type, | 347 Handle<Map> type, |
| 348 Handle<String> name, | 348 Handle<String> name, |
| 349 LEnvironment* env); | 349 LEnvironment* env); |
| 350 | 350 |
| 351 // Emits optimized code to deep-copy the contents of statically known | 351 // Emits optimized code to deep-copy the contents of statically known |
| 352 // object graphs (e.g. object literal boilerplate). | 352 // object graphs (e.g. object literal boilerplate). |
| 353 void EmitDeepCopy(Handle<JSObject> object, | 353 void EmitDeepCopy(Handle<JSObject> object, |
| 354 Handle<JSObject> original_object, |
| 354 Register result, | 355 Register result, |
| 355 Register source, | 356 Register source, |
| 356 int* offset, | 357 int* offset, |
| 357 AllocationSiteMode mode); | 358 AllocationSiteMode mode); |
| 358 | 359 |
| 360 void FastLiteralHelper(LFastLiteral* instr, |
| 361 AllocationSiteMode mode); |
| 362 |
| 359 void EnsureSpaceForLazyDeopt(); | 363 void EnsureSpaceForLazyDeopt(); |
| 360 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 364 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
| 361 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 365 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
| 362 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 366 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
| 363 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 367 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
| 364 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 368 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
| 365 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 369 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
| 366 | 370 |
| 367 void EmitReturn(LReturn* instr, bool dynamic_frame_alignment); | 371 void EmitReturn(LReturn* instr, bool dynamic_frame_alignment); |
| 368 | 372 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 LCodeGen* codegen_; | 471 LCodeGen* codegen_; |
| 468 Label entry_; | 472 Label entry_; |
| 469 Label exit_; | 473 Label exit_; |
| 470 Label* external_exit_; | 474 Label* external_exit_; |
| 471 int instruction_index_; | 475 int instruction_index_; |
| 472 }; | 476 }; |
| 473 | 477 |
| 474 } } // namespace v8::internal | 478 } } // namespace v8::internal |
| 475 | 479 |
| 476 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 480 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |