Home
last modified time | relevance | path

Searched refs:LocationField (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/ast/
Dvariables.h39 LocationField::encode(VariableLocation::UNALLOCATED) | in scope_()
205 return LocationField::decode(bit_field_); in location()
227 bit_field_ = LocationField::update(bit_field_, location); in AllocateTo()
270 using LocationField = VariableKindField::Next<VariableLocation, 3>; variable
271 using ForceContextAllocationBit = LocationField::Next<bool, 1>;
Dvariables.cc43 LocationField::update(bit_field_, VariableLocation::REPL_GLOBAL); in RewriteLocationForRepl()
/external/v8/src/objects/
Dproperty-details.h222 value_ = KindField::encode(kind) | LocationField::encode(kField) |
233 LocationField::encode(location) |
287 PropertyLocation location() const { return LocationField::decode(value_); } in location()
326 using LocationField = KindField::Next<PropertyLocation, 1>; variable
327 using ConstnessField = LocationField::Next<PropertyConstness, 1>;
/external/v8/src/compiler/
Dlinkage.h142 return static_cast<int32_t>(bit_field_ & LocationField::kMask) >> in GetLocation()
143 LocationField::kShift; in GetLocation()
172 using LocationField = TypeField::Next<int32_t, 31>; variable
181 ((static_cast<uint32_t>(location) << LocationField::kShift) & in LinkageLocation()
182 LocationField::kMask); in LinkageLocation()
/external/v8/src/ic/
Daccessor-assembler.cc1310 Branch(Word32Equal(DecodeWord32<PropertyDetails::LocationField>(details), in OverwriteExistingFastDataProperty()
/external/v8/src/codegen/
Dcode-stub-assembler.cc8556 DecodeWord32<PropertyDetails::LocationField>(details); in LoadPropertyFromFastObject()