OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 1237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1248 HType HCompareJSObjectEq::CalculateInferredType() const { | 1248 HType HCompareJSObjectEq::CalculateInferredType() const { |
1249 return HType::Boolean(); | 1249 return HType::Boolean(); |
1250 } | 1250 } |
1251 | 1251 |
1252 | 1252 |
1253 HType HUnaryPredicate::CalculateInferredType() const { | 1253 HType HUnaryPredicate::CalculateInferredType() const { |
1254 return HType::Boolean(); | 1254 return HType::Boolean(); |
1255 } | 1255 } |
1256 | 1256 |
1257 | 1257 |
| 1258 HType HBitwiseBinaryOperation::CalculateInferredType() const { |
| 1259 return HType::TaggedNumber(); |
| 1260 } |
| 1261 |
| 1262 |
1258 HType HArithmeticBinaryOperation::CalculateInferredType() const { | 1263 HType HArithmeticBinaryOperation::CalculateInferredType() const { |
1259 return HType::TaggedNumber(); | 1264 return HType::TaggedNumber(); |
1260 } | 1265 } |
1261 | 1266 |
1262 | 1267 |
1263 HType HAdd::CalculateInferredType() const { | 1268 HType HAdd::CalculateInferredType() const { |
1264 return HType::Tagged(); | 1269 return HType::Tagged(); |
1265 } | 1270 } |
1266 | 1271 |
1267 | 1272 |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1443 | 1448 |
1444 | 1449 |
1445 void HCheckPrototypeMaps::Verify() const { | 1450 void HCheckPrototypeMaps::Verify() const { |
1446 HInstruction::Verify(); | 1451 HInstruction::Verify(); |
1447 ASSERT(HasNoUses()); | 1452 ASSERT(HasNoUses()); |
1448 } | 1453 } |
1449 | 1454 |
1450 #endif | 1455 #endif |
1451 | 1456 |
1452 } } // namespace v8::internal | 1457 } } // namespace v8::internal |
OLD | NEW |