Lines Matching refs:VariableLocation
36 LocationField::encode(VariableLocation::UNALLOCATED) | in scope_()
63 location() == VariableLocation::MODULE); in ForceContextAllocation()
79 return location() == VariableLocation::UNALLOCATED; in IsUnallocated()
81 bool IsParameter() const { return location() == VariableLocation::PARAMETER; } in IsParameter()
82 bool IsStackLocal() const { return location() == VariableLocation::LOCAL; } in IsStackLocal()
84 bool IsContextSlot() const { return location() == VariableLocation::CONTEXT; } in IsContextSlot()
85 bool IsLookupSlot() const { return location() == VariableLocation::LOOKUP; } in IsLookupSlot()
150 VariableLocation location() const { in location()
164 DCHECK_EQ(location(), VariableLocation::MODULE); in IsExport()
169 void AllocateTo(VariableLocation location, int index) { in AllocateTo()
172 DCHECK_IMPLIES(location == VariableLocation::MODULE, index != 0); in AllocateTo()
204 : public BitField16<VariableLocation, VariableKindField::kNext, 3> {};