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