Lines Matching refs:VariableLocation
39 LocationField::encode(VariableLocation::UNALLOCATED) | in scope_()
80 location() == VariableLocation::MODULE); in ForceContextAllocation()
119 return location() == VariableLocation::UNALLOCATED; in IsUnallocated()
121 bool IsParameter() const { return location() == VariableLocation::PARAMETER; } in IsParameter()
122 bool IsStackLocal() const { return location() == VariableLocation::LOCAL; } in IsStackLocal()
124 bool IsContextSlot() const { return location() == VariableLocation::CONTEXT; } in IsContextSlot()
125 bool IsLookupSlot() const { return location() == VariableLocation::LOOKUP; } in IsLookupSlot()
205 VariableLocation location() const { in location()
219 DCHECK_EQ(location(), VariableLocation::MODULE); in IsExport()
224 void AllocateTo(VariableLocation location, int index) { in AllocateTo()
227 DCHECK_IMPLIES(location == VariableLocation::MODULE, index != 0); in AllocateTo()
271 using LocationField = VariableKindField::Next<VariableLocation, 3>;