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 2636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2647 | 2647 |
2648 LInstruction* LChunkBuilder::DoTypeof(HTypeof* instr) { | 2648 LInstruction* LChunkBuilder::DoTypeof(HTypeof* instr) { |
2649 LOperand* context = UseFixed(instr->context(), esi); | 2649 LOperand* context = UseFixed(instr->context(), esi); |
2650 LOperand* value = UseAtStart(instr->value()); | 2650 LOperand* value = UseAtStart(instr->value()); |
2651 LTypeof* result = new(zone()) LTypeof(context, value); | 2651 LTypeof* result = new(zone()) LTypeof(context, value); |
2652 return MarkAsCall(DefineFixed(result, eax), instr); | 2652 return MarkAsCall(DefineFixed(result, eax), instr); |
2653 } | 2653 } |
2654 | 2654 |
2655 | 2655 |
2656 LInstruction* LChunkBuilder::DoTypeofIsAndBranch(HTypeofIsAndBranch* instr) { | 2656 LInstruction* LChunkBuilder::DoTypeofIsAndBranch(HTypeofIsAndBranch* instr) { |
| 2657 LInstruction* goto_instr = CheckElideControlInstruction(instr); |
| 2658 if (goto_instr != NULL) return goto_instr; |
2657 return new(zone()) LTypeofIsAndBranch(UseTempRegister(instr->value())); | 2659 return new(zone()) LTypeofIsAndBranch(UseTempRegister(instr->value())); |
2658 } | 2660 } |
2659 | 2661 |
2660 | 2662 |
2661 LInstruction* LChunkBuilder::DoIsConstructCallAndBranch( | 2663 LInstruction* LChunkBuilder::DoIsConstructCallAndBranch( |
2662 HIsConstructCallAndBranch* instr) { | 2664 HIsConstructCallAndBranch* instr) { |
2663 return new(zone()) LIsConstructCallAndBranch(TempRegister()); | 2665 return new(zone()) LIsConstructCallAndBranch(TempRegister()); |
2664 } | 2666 } |
2665 | 2667 |
2666 | 2668 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2763 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2765 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2764 LOperand* object = UseRegister(instr->object()); | 2766 LOperand* object = UseRegister(instr->object()); |
2765 LOperand* index = UseTempRegister(instr->index()); | 2767 LOperand* index = UseTempRegister(instr->index()); |
2766 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2768 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2767 } | 2769 } |
2768 | 2770 |
2769 | 2771 |
2770 } } // namespace v8::internal | 2772 } } // namespace v8::internal |
2771 | 2773 |
2772 #endif // V8_TARGET_ARCH_IA32 | 2774 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |