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 3337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3348 // Non-instance prototype: Fetch prototype from constructor field | 3348 // Non-instance prototype: Fetch prototype from constructor field |
3349 // in the function's map. | 3349 // in the function's map. |
3350 __ bind(&non_instance); | 3350 __ bind(&non_instance); |
3351 __ mov(result, FieldOperand(result, Map::kConstructorOffset)); | 3351 __ mov(result, FieldOperand(result, Map::kConstructorOffset)); |
3352 | 3352 |
3353 // All done. | 3353 // All done. |
3354 __ bind(&done); | 3354 __ bind(&done); |
3355 } | 3355 } |
3356 | 3356 |
3357 | 3357 |
| 3358 void LCodeGen::DoLoadRoot(LLoadRoot* instr) { |
| 3359 Register result = ToRegister(instr->result()); |
| 3360 __ LoadRoot(result, instr->index()); |
| 3361 } |
| 3362 |
| 3363 |
3358 void LCodeGen::DoLoadExternalArrayPointer( | 3364 void LCodeGen::DoLoadExternalArrayPointer( |
3359 LLoadExternalArrayPointer* instr) { | 3365 LLoadExternalArrayPointer* instr) { |
3360 Register result = ToRegister(instr->result()); | 3366 Register result = ToRegister(instr->result()); |
3361 Register input = ToRegister(instr->object()); | 3367 Register input = ToRegister(instr->object()); |
3362 __ mov(result, FieldOperand(input, | 3368 __ mov(result, FieldOperand(input, |
3363 ExternalArray::kExternalPointerOffset)); | 3369 ExternalArray::kExternalPointerOffset)); |
3364 } | 3370 } |
3365 | 3371 |
3366 | 3372 |
3367 void LCodeGen::DoAccessArgumentsAt(LAccessArgumentsAt* instr) { | 3373 void LCodeGen::DoAccessArgumentsAt(LAccessArgumentsAt* instr) { |
(...skipping 3001 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6369 FixedArray::kHeaderSize - kPointerSize)); | 6375 FixedArray::kHeaderSize - kPointerSize)); |
6370 __ bind(&done); | 6376 __ bind(&done); |
6371 } | 6377 } |
6372 | 6378 |
6373 | 6379 |
6374 #undef __ | 6380 #undef __ |
6375 | 6381 |
6376 } } // namespace v8::internal | 6382 } } // namespace v8::internal |
6377 | 6383 |
6378 #endif // V8_TARGET_ARCH_IA32 | 6384 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |