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 4918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4929 __ And(scratch1, scratch1, Operand(HeapNumber::kSignMask)); | 4929 __ And(scratch1, scratch1, Operand(HeapNumber::kSignMask)); |
4930 DeoptimizeIf(ne, instr->environment(), scratch1, Operand(zero_reg)); | 4930 DeoptimizeIf(ne, instr->environment(), scratch1, Operand(zero_reg)); |
4931 __ bind(&done); | 4931 __ bind(&done); |
4932 } | 4932 } |
4933 } | 4933 } |
4934 __ SmiTagCheckOverflow(result_reg, result_reg, scratch1); | 4934 __ SmiTagCheckOverflow(result_reg, result_reg, scratch1); |
4935 DeoptimizeIf(lt, instr->environment(), scratch1, Operand(zero_reg)); | 4935 DeoptimizeIf(lt, instr->environment(), scratch1, Operand(zero_reg)); |
4936 } | 4936 } |
4937 | 4937 |
4938 | 4938 |
| 4939 void LCodeGen::DoCheckSmiAndReturn(LCheckSmiAndReturn* instr) { |
| 4940 LOperand* input = instr->value(); |
| 4941 __ And(at, ToRegister(input), Operand(kSmiTagMask)); |
| 4942 DeoptimizeIf(ne, instr->environment(), at, Operand(zero_reg)); |
| 4943 } |
| 4944 |
| 4945 |
4939 void LCodeGen::DoCheckSmi(LCheckSmi* instr) { | 4946 void LCodeGen::DoCheckSmi(LCheckSmi* instr) { |
4940 LOperand* input = instr->value(); | 4947 LOperand* input = instr->value(); |
4941 __ And(at, ToRegister(input), Operand(kSmiTagMask)); | 4948 __ And(at, ToRegister(input), Operand(kSmiTagMask)); |
4942 DeoptimizeIf(ne, instr->environment(), at, Operand(zero_reg)); | 4949 DeoptimizeIf(ne, instr->environment(), at, Operand(zero_reg)); |
4943 } | 4950 } |
4944 | 4951 |
4945 | 4952 |
4946 void LCodeGen::DoCheckNonSmi(LCheckNonSmi* instr) { | 4953 void LCodeGen::DoCheckNonSmi(LCheckNonSmi* instr) { |
4947 LOperand* input = instr->value(); | 4954 LOperand* input = instr->value(); |
4948 __ And(at, ToRegister(input), Operand(kSmiTagMask)); | 4955 __ And(at, ToRegister(input), Operand(kSmiTagMask)); |
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5739 __ Subu(scratch, result, scratch); | 5746 __ Subu(scratch, result, scratch); |
5740 __ lw(result, FieldMemOperand(scratch, | 5747 __ lw(result, FieldMemOperand(scratch, |
5741 FixedArray::kHeaderSize - kPointerSize)); | 5748 FixedArray::kHeaderSize - kPointerSize)); |
5742 __ bind(&done); | 5749 __ bind(&done); |
5743 } | 5750 } |
5744 | 5751 |
5745 | 5752 |
5746 #undef __ | 5753 #undef __ |
5747 | 5754 |
5748 } } // namespace v8::internal | 5755 } } // namespace v8::internal |
OLD | NEW |