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 2006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2017 return AssignEnvironment(new(zone()) LCheckNonSmi(value)); | 2017 return AssignEnvironment(new(zone()) LCheckNonSmi(value)); |
2018 } | 2018 } |
2019 | 2019 |
2020 | 2020 |
2021 LInstruction* LChunkBuilder::DoCheckSmi(HCheckSmi* instr) { | 2021 LInstruction* LChunkBuilder::DoCheckSmi(HCheckSmi* instr) { |
2022 LOperand* value = UseRegisterAtStart(instr->value()); | 2022 LOperand* value = UseRegisterAtStart(instr->value()); |
2023 return AssignEnvironment(new(zone()) LCheckSmi(value)); | 2023 return AssignEnvironment(new(zone()) LCheckSmi(value)); |
2024 } | 2024 } |
2025 | 2025 |
2026 | 2026 |
2027 LInstruction* LChunkBuilder::DoIsNumberAndBranch(HIsNumberAndBranch* instr) { | |
2028 return new(zone()) | |
2029 LIsNumberAndBranch(UseRegisterOrConstantAtStart(instr->value())); | |
2030 } | |
2031 | |
2032 | |
2033 LInstruction* LChunkBuilder::DoCheckInstanceType(HCheckInstanceType* instr) { | 2027 LInstruction* LChunkBuilder::DoCheckInstanceType(HCheckInstanceType* instr) { |
2034 LOperand* value = UseRegisterAtStart(instr->value()); | 2028 LOperand* value = UseRegisterAtStart(instr->value()); |
2035 LOperand* temp = TempRegister(); | 2029 LOperand* temp = TempRegister(); |
2036 LCheckInstanceType* result = new(zone()) LCheckInstanceType(value, temp); | 2030 LCheckInstanceType* result = new(zone()) LCheckInstanceType(value, temp); |
2037 return AssignEnvironment(result); | 2031 return AssignEnvironment(result); |
2038 } | 2032 } |
2039 | 2033 |
2040 | 2034 |
2041 LInstruction* LChunkBuilder::DoCheckValue(HCheckValue* instr) { | 2035 LInstruction* LChunkBuilder::DoCheckValue(HCheckValue* instr) { |
2042 // If the object is in new space, we'll emit a global cell compare and so | 2036 // If the object is in new space, we'll emit a global cell compare and so |
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2720 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2714 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2721 LOperand* object = UseRegister(instr->object()); | 2715 LOperand* object = UseRegister(instr->object()); |
2722 LOperand* index = UseTempRegister(instr->index()); | 2716 LOperand* index = UseTempRegister(instr->index()); |
2723 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2717 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2724 } | 2718 } |
2725 | 2719 |
2726 | 2720 |
2727 } } // namespace v8::internal | 2721 } } // namespace v8::internal |
2728 | 2722 |
2729 #endif // V8_TARGET_ARCH_IA32 | 2723 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |