Home
last modified time | relevance | path

Searched refs:other_rep (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Dregister-configuration.cc220 MachineRepresentation other_rep, in GetAliases() argument
223 DCHECK(IsFloatingPoint(rep) && IsFloatingPoint(other_rep)); in GetAliases()
224 if (rep == other_rep) { in GetAliases()
229 int other_rep_int = static_cast<int>(other_rep); in GetAliases()
246 MachineRepresentation other_rep, in AreAliases() argument
249 DCHECK(IsFloatingPoint(rep) && IsFloatingPoint(other_rep)); in AreAliases()
250 if (rep == other_rep) { in AreAliases()
254 int other_rep_int = static_cast<int>(other_rep); in AreAliases()
Dregister-configuration.h124 MachineRepresentation other_rep, int* alias_base_index) const;
129 MachineRepresentation other_rep, int other_index) const;
/external/v8/src/compiler/
Dinstruction.cc81 MachineRepresentation other_rep = other_loc.representation(); in InterferesWith() local
82 if (rep == other_rep) return EqualsCanonicalized(other); in InterferesWith()
85 return GetRegConfig()->AreAliases(rep, loc.register_code(), other_rep, in InterferesWith()
95 other_index_hi - (1 << ElementSizeLog2Of(other_rep)) / kPointerSize + 1; in InterferesWith()