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

Unified Diff: src/typing.cc

Issue 1053143005: Collect type feedback on result of Math.[round|ceil|floor] (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Tweaks Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: src/typing.cc
diff --git a/src/typing.cc b/src/typing.cc
index cbd40f37159e3fea52c107e04c9e0d2fd74d418a..3b630db8e3df7e734483347a468bda01c39cba04 100644
--- a/src/typing.cc
+++ b/src/typing.cc
@@ -540,11 +540,15 @@ void AstTyper::VisitCall(Call* expr) {
if (expr->IsUsingCallFeedbackICSlot(isolate())) {
FeedbackVectorICSlot slot = expr->CallFeedbackICSlot();
is_uninitialized = oracle()->CallIsUninitialized(slot);
- if (!expr->expression()->IsProperty() &&
- oracle()->CallIsMonomorphic(slot)) {
- expr->set_target(oracle()->GetCallTarget(slot));
- Handle<AllocationSite> site = oracle()->GetCallAllocationSite(slot);
- expr->set_allocation_site(site);
+ if (oracle()->CallIsMonomorphic(slot)) {
+ if (oracle()->CallIsRoundWithMinusZeroResult(slot)) {
+ expr->MarkShouldHandleMinusZeroResult();
+ }
+ if (!expr->expression()->IsProperty()) {
+ expr->set_target(oracle()->GetCallTarget(slot));
+ Handle<AllocationSite> site = oracle()->GetCallAllocationSite(slot);
+ expr->set_allocation_site(site);
+ }
}
}
« src/type-info.h ('K') | « src/type-info.cc ('k') | test/mjsunit/math-ceil-minus-zero.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698