Lines Matching refs:VariableLocation
43 location() == VariableLocation::MODULE); in ForceContextAllocation()
59 return location() == VariableLocation::UNALLOCATED; in IsUnallocated()
61 bool IsParameter() const { return location() == VariableLocation::PARAMETER; } in IsParameter()
62 bool IsStackLocal() const { return location() == VariableLocation::LOCAL; } in IsStackLocal()
64 bool IsContextSlot() const { return location() == VariableLocation::CONTEXT; } in IsContextSlot()
65 bool IsLookupSlot() const { return location() == VariableLocation::LOOKUP; } in IsLookupSlot()
93 VariableLocation location() const { in location()
104 DCHECK_EQ(location(), VariableLocation::MODULE); in IsExport()
109 void AllocateTo(VariableLocation location, int index) { in AllocateTo()
112 DCHECK_IMPLIES(location == VariableLocation::MODULE, index != 0); in AllocateTo()
143 : public BitField16<VariableLocation, VariableKindField::kNext, 3> {};