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 DoLoadKeyedExternal(LLoadKeyed* instr); |
| 344 void DoStoreKeyedExternal(LStoreKeyed* instr); |
343 | 345 |
344 // Emits code for pushing either a tagged constant, a (non-double) | 346 // Emits code for pushing either a tagged constant, a (non-double) |
345 // register, or a stack slot operand. | 347 // register, or a stack slot operand. |
346 void EmitPushTaggedOperand(LOperand* operand); | 348 void EmitPushTaggedOperand(LOperand* operand); |
347 | 349 |
348 Zone* zone_; | 350 Zone* zone_; |
349 LPlatformChunk* const chunk_; | 351 LPlatformChunk* const chunk_; |
350 MacroAssembler* const masm_; | 352 MacroAssembler* const masm_; |
351 CompilationInfo* const info_; | 353 CompilationInfo* const info_; |
352 | 354 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 LCodeGen* codegen_; | 427 LCodeGen* codegen_; |
426 Label entry_; | 428 Label entry_; |
427 Label exit_; | 429 Label exit_; |
428 Label* external_exit_; | 430 Label* external_exit_; |
429 int instruction_index_; | 431 int instruction_index_; |
430 }; | 432 }; |
431 | 433 |
432 } } // namespace v8::internal | 434 } } // namespace v8::internal |
433 | 435 |
434 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 436 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
OLD | NEW |