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 2484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2495 | 2495 |
2496 LInstruction* LChunkBuilder::DoTypeof(HTypeof* instr) { | 2496 LInstruction* LChunkBuilder::DoTypeof(HTypeof* instr) { |
2497 LOperand* context = UseFixed(instr->context(), rsi); | 2497 LOperand* context = UseFixed(instr->context(), rsi); |
2498 LOperand* value = UseAtStart(instr->value()); | 2498 LOperand* value = UseAtStart(instr->value()); |
2499 LTypeof* result = new(zone()) LTypeof(context, value); | 2499 LTypeof* result = new(zone()) LTypeof(context, value); |
2500 return MarkAsCall(DefineFixed(result, rax), instr); | 2500 return MarkAsCall(DefineFixed(result, rax), instr); |
2501 } | 2501 } |
2502 | 2502 |
2503 | 2503 |
2504 LInstruction* LChunkBuilder::DoTypeofIsAndBranch(HTypeofIsAndBranch* instr) { | 2504 LInstruction* LChunkBuilder::DoTypeofIsAndBranch(HTypeofIsAndBranch* instr) { |
| 2505 LInstruction* goto_instr = CheckElideControlInstruction(instr); |
| 2506 if (goto_instr != NULL) return goto_instr; |
| 2507 |
2505 return new(zone()) LTypeofIsAndBranch(UseTempRegister(instr->value())); | 2508 return new(zone()) LTypeofIsAndBranch(UseTempRegister(instr->value())); |
2506 } | 2509 } |
2507 | 2510 |
2508 | 2511 |
2509 LInstruction* LChunkBuilder::DoIsConstructCallAndBranch( | 2512 LInstruction* LChunkBuilder::DoIsConstructCallAndBranch( |
2510 HIsConstructCallAndBranch* instr) { | 2513 HIsConstructCallAndBranch* instr) { |
2511 return new(zone()) LIsConstructCallAndBranch(TempRegister()); | 2514 return new(zone()) LIsConstructCallAndBranch(TempRegister()); |
2512 } | 2515 } |
2513 | 2516 |
2514 | 2517 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2611 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2614 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2612 LOperand* object = UseRegister(instr->object()); | 2615 LOperand* object = UseRegister(instr->object()); |
2613 LOperand* index = UseTempRegister(instr->index()); | 2616 LOperand* index = UseTempRegister(instr->index()); |
2614 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2617 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2615 } | 2618 } |
2616 | 2619 |
2617 | 2620 |
2618 } } // namespace v8::internal | 2621 } } // namespace v8::internal |
2619 | 2622 |
2620 #endif // V8_TARGET_ARCH_X64 | 2623 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |