Searched refs:new_rep (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/v8/src/ |
D | hydrogen-instructions.cc | 62 Representation new_rep = RepresentationFromInputs(); in InferRepresentation() local 63 UpdateRepresentation(new_rep, h_infer, "inputs"); in InferRepresentation() 64 new_rep = RepresentationFromUses(); in InferRepresentation() 65 UpdateRepresentation(new_rep, h_infer, "uses"); in InferRepresentation() 105 void HValue::UpdateRepresentation(Representation new_rep, in UpdateRepresentation() argument 109 if (new_rep.is_more_general_than(r)) { in UpdateRepresentation() 110 if (CheckFlag(kCannotBeTagged) && new_rep.IsTagged()) return; in UpdateRepresentation() 113 id(), Mnemonic(), r.Mnemonic(), new_rep.Mnemonic(), reason); in UpdateRepresentation() 115 ChangeRepresentation(new_rep); in UpdateRepresentation() 2968 Representation new_rep = RepresentationFromInputs(); in InferRepresentation() local [all …]
|
D | hydrogen-instructions.h | 855 virtual void UpdateRepresentation(Representation new_rep, 3825 virtual void UpdateRepresentation(Representation new_rep, in UpdateRepresentation() argument 3828 Representation rep = !FLAG_smi_binop && new_rep.IsSmi() in UpdateRepresentation() 3829 ? Representation::Integer32() : new_rep; in UpdateRepresentation() 4163 virtual void UpdateRepresentation(Representation new_rep, in UpdateRepresentation() argument 4167 if (new_rep.IsDouble()) new_rep = Representation::Integer32(); in UpdateRepresentation() 4168 HBinaryOperation::UpdateRepresentation(new_rep, h_infer, reason); in UpdateRepresentation() 4930 virtual void UpdateRepresentation(Representation new_rep, in UpdateRepresentation() argument 4933 HArithmeticBinaryOperation::UpdateRepresentation(new_rep, h_infer, reason); in UpdateRepresentation() 4962 virtual void UpdateRepresentation(Representation new_rep, in UpdateRepresentation() argument [all …]
|