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 3834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3845 if (!phi->CheckFlag(HInstruction::kUint32)) { | 3845 if (!phi->CheckFlag(HInstruction::kUint32)) { |
3846 // This phi is not uint32 safe. No need to check operands. | 3846 // This phi is not uint32 safe. No need to check operands. |
3847 return false; | 3847 return false; |
3848 } | 3848 } |
3849 | 3849 |
3850 for (int j = 0; j < phi->OperandCount(); j++) { | 3850 for (int j = 0; j < phi->OperandCount(); j++) { |
3851 HValue* operand = phi->OperandAt(j); | 3851 HValue* operand = phi->OperandAt(j); |
3852 if (!operand->CheckFlag(HInstruction::kUint32)) { | 3852 if (!operand->CheckFlag(HInstruction::kUint32)) { |
3853 // Lazyly mark constants that fit into uint32 range with kUint32 flag. | 3853 // Lazyly mark constants that fit into uint32 range with kUint32 flag. |
3854 if (operand->IsConstant() && | 3854 if (operand->IsConstant() && |
3855 HConstant::cast(operand)->IsUint32()) { | 3855 HConstant::cast(operand)->HasInteger32Value() && |
3856 HConstant::cast(operand)->Integer32Value() >= 0) { | |
Sven Panne
2013/04/18 09:46:23
operand->IsInteger32Constant() && operarand->GetIn
| |
3856 operand->SetFlag(HInstruction::kUint32); | 3857 operand->SetFlag(HInstruction::kUint32); |
3857 continue; | 3858 continue; |
3858 } | 3859 } |
3859 | 3860 |
3860 // This phi is not safe, some operands are not uint32 values. | 3861 // This phi is not safe, some operands are not uint32 values. |
3861 return false; | 3862 return false; |
3862 } | 3863 } |
3863 } | 3864 } |
3864 | 3865 |
3865 return true; | 3866 return true; |
(...skipping 4749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
8615 HInstruction* sqrt = | 8616 HInstruction* sqrt = |
8616 HUnaryMathOperation::New(zone(), context, left, kMathPowHalf); | 8617 HUnaryMathOperation::New(zone(), context, left, kMathPowHalf); |
8617 AddInstruction(sqrt); | 8618 AddInstruction(sqrt); |
8618 // MathPowHalf doesn't have side effects so there's no need for | 8619 // MathPowHalf doesn't have side effects so there's no need for |
8619 // an environment simulation here. | 8620 // an environment simulation here. |
8620 ASSERT(!sqrt->HasObservableSideEffects()); | 8621 ASSERT(!sqrt->HasObservableSideEffects()); |
8621 result = HDiv::New(zone(), context, double_one, sqrt); | 8622 result = HDiv::New(zone(), context, double_one, sqrt); |
8622 } else if (exponent == 2.0) { | 8623 } else if (exponent == 2.0) { |
8623 result = HMul::New(zone(), context, left, left); | 8624 result = HMul::New(zone(), context, left, left); |
8624 } | 8625 } |
8625 } else if (right->IsConstant() && | 8626 } else if (right->EqualsInteger32Constant(2)) { |
8626 HConstant::cast(right)->HasInteger32Value() && | |
8627 HConstant::cast(right)->Integer32Value() == 2) { | |
8628 result = HMul::New(zone(), context, left, left); | 8627 result = HMul::New(zone(), context, left, left); |
8629 } | 8628 } |
8630 | 8629 |
8631 if (result == NULL) { | 8630 if (result == NULL) { |
8632 result = HPower::New(zone(), left, right); | 8631 result = HPower::New(zone(), left, right); |
8633 } | 8632 } |
8634 ast_context()->ReturnInstruction(result, expr->id()); | 8633 ast_context()->ReturnInstruction(result, expr->id()); |
8635 return true; | 8634 return true; |
8636 } | 8635 } |
8637 break; | 8636 break; |
(...skipping 3055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
11693 } | 11692 } |
11694 } | 11693 } |
11695 | 11694 |
11696 #ifdef DEBUG | 11695 #ifdef DEBUG |
11697 if (graph_ != NULL) graph_->Verify(false); // No full verify. | 11696 if (graph_ != NULL) graph_->Verify(false); // No full verify. |
11698 if (allocator_ != NULL) allocator_->Verify(); | 11697 if (allocator_ != NULL) allocator_->Verify(); |
11699 #endif | 11698 #endif |
11700 } | 11699 } |
11701 | 11700 |
11702 } } // namespace v8::internal | 11701 } } // namespace v8::internal |
OLD | NEW |