OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 1483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1494 if (int_val == 0) { | 1494 if (int_val == 0) { |
1495 __ xorps(res, res); | 1495 __ xorps(res, res); |
1496 } else { | 1496 } else { |
1497 Register tmp = ToRegister(instr->temp()); | 1497 Register tmp = ToRegister(instr->temp()); |
1498 __ Set(tmp, int_val); | 1498 __ Set(tmp, int_val); |
1499 __ movq(res, tmp); | 1499 __ movq(res, tmp); |
1500 } | 1500 } |
1501 } | 1501 } |
1502 | 1502 |
1503 | 1503 |
| 1504 void LCodeGen::DoConstantE(LConstantE* instr) { |
| 1505 __ LoadAddress(ToRegister(instr->result()), instr->value()); |
| 1506 } |
| 1507 |
| 1508 |
1504 void LCodeGen::DoConstantT(LConstantT* instr) { | 1509 void LCodeGen::DoConstantT(LConstantT* instr) { |
1505 Handle<Object> value = instr->value(); | 1510 Handle<Object> value = instr->value(); |
1506 AllowDeferredHandleDereference smi_check; | 1511 AllowDeferredHandleDereference smi_check; |
1507 __ LoadObject(ToRegister(instr->result()), value); | 1512 __ LoadObject(ToRegister(instr->result()), value); |
1508 } | 1513 } |
1509 | 1514 |
1510 | 1515 |
1511 void LCodeGen::DoMapEnumLength(LMapEnumLength* instr) { | 1516 void LCodeGen::DoMapEnumLength(LMapEnumLength* instr) { |
1512 Register result = ToRegister(instr->result()); | 1517 Register result = ToRegister(instr->result()); |
1513 Register map = ToRegister(instr->value()); | 1518 Register map = ToRegister(instr->value()); |
(...skipping 4014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5528 FixedArray::kHeaderSize - kPointerSize)); | 5533 FixedArray::kHeaderSize - kPointerSize)); |
5529 __ bind(&done); | 5534 __ bind(&done); |
5530 } | 5535 } |
5531 | 5536 |
5532 | 5537 |
5533 #undef __ | 5538 #undef __ |
5534 | 5539 |
5535 } } // namespace v8::internal | 5540 } } // namespace v8::internal |
5536 | 5541 |
5537 #endif // V8_TARGET_ARCH_X64 | 5542 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |