From 84759d7e6e2d2e6a0bb6bc5cc37e2021a9876ead Mon Sep 17 00:00:00 2001 From: "verwaest@chromium.org" Date: Fri, 14 Jun 2013 14:13:48 +0000 Subject: [PATCH] Cleanup RepresentationFromUseRequirements, move it to HValue and use it where relevant BUG= R=jkummerow@chromium.org Review URL: https://chromiumcodereview.appspot.com/17005004 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15155 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/hydrogen-instructions.cc | 38 +++++++++++++++++++------------------- src/hydrogen-instructions.h | 2 +- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc index b36706b..55af215 100644 --- a/src/hydrogen-instructions.cc +++ b/src/hydrogen-instructions.cc @@ -84,6 +84,10 @@ void HValue::InferRepresentation(HInferRepresentation* h_infer) { UpdateRepresentation(new_rep, h_infer, "inputs"); new_rep = RepresentationFromUses(); UpdateRepresentation(new_rep, h_infer, "uses"); + new_rep = RepresentationFromUseRequirements(); + if (new_rep.fits_into(Representation::Integer32())) { + UpdateRepresentation(new_rep, h_infer, "use requirements"); + } } @@ -2304,6 +2308,10 @@ void HBinaryOperation::InferRepresentation(HInferRepresentation* h_infer) { if (!observed_output_representation_.IsNone()) return; new_rep = RepresentationFromUses(); UpdateRepresentation(new_rep, h_infer, "uses"); + new_rep = RepresentationFromUseRequirements(); + if (new_rep.fits_into(Representation::Integer32())) { + UpdateRepresentation(new_rep, h_infer, "use requirements"); + } } @@ -3660,34 +3668,26 @@ Representation HPhi::RepresentationFromInputs() { } -Representation HPhi::RepresentationFromUseRequirements() { - Representation all_uses_require = Representation::None(); - bool all_uses_require_the_same = true; +// Returns a representation if all uses agree on the same representation. +// Integer32 is also returned when some uses are Smi but others are Integer32. +Representation HValue::RepresentationFromUseRequirements() { + Representation rep = Representation::None(); for (HUseIterator it(uses()); !it.Done(); it.Advance()) { // We check for observed_input_representation elsewhere. Representation use_rep = it.value()->RequiredInputRepresentation(it.index()); - // No useful info from this use -> look at the next one. - if (use_rep.IsNone()) { + if (rep.IsNone()) { + rep = use_rep; continue; } - if (use_rep.Equals(all_uses_require)) { + if (use_rep.IsNone() || rep.Equals(use_rep)) continue; + if (rep.generalize(use_rep).IsInteger32()) { + rep = Representation::Integer32(); continue; } - // This use's representation contradicts what we've seen so far. - if (!all_uses_require.IsNone()) { - ASSERT(!use_rep.Equals(all_uses_require)); - all_uses_require_the_same = false; - break; - } - // Otherwise, initialize observed representation. - all_uses_require = use_rep; - } - if (all_uses_require_the_same) { - return all_uses_require; + return Representation::None(); } - - return Representation::None(); + return rep; } diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h index 03a91c4..209f53f 100644 --- a/src/hydrogen-instructions.h +++ b/src/hydrogen-instructions.h @@ -1150,6 +1150,7 @@ class HValue: public ZoneObject { return representation(); } Representation RepresentationFromUses(); + Representation RepresentationFromUseRequirements(); virtual void UpdateRepresentation(Representation new_rep, HInferRepresentation* h_infer, const char* reason); @@ -3068,7 +3069,6 @@ class HPhi: public HValue { virtual Range* InferRange(Zone* zone); virtual void InferRepresentation(HInferRepresentation* h_infer); - Representation RepresentationFromUseRequirements(); virtual Representation RequiredInputRepresentation(int index) { return representation(); } -- 2.7.4