Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: src/hydrogen-instructions.cc

Issue 6366006: Use typefeedback for bitwise operations.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698