Searched refs:RESERVED_ENV_LENGTH (Results 1 - 10 of 10) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
H A D | lexical_env.h | 27 static constexpr uint32_t RESERVED_ENV_LENGTH = 2; member in panda::ecmascript::LexicalEnv 37 return TaggedArray::ComputeSize(JSTaggedValue::TaggedTypeSize(), numSlots + RESERVED_ENV_LENGTH); in ComputeSize() 52 return Get(index + RESERVED_ENV_LENGTH); in GetProperties() 57 Set(thread, index + RESERVED_ENV_LENGTH, value); in SetProperties()
|
H A D | object_factory-inl.h | 144 array->InitializeWithSpecialValue(JSTaggedValue::Hole(), numSlots + LexicalEnv::RESERVED_ENV_LENGTH); in InlineNewLexicalEnv() member in panda::ecmascript::LexicalEnv
|
H A D | object_factory.cpp | 2314 array->InitializeWithSpecialValue(JSTaggedValue::Hole(), numSlots + LexicalEnv::RESERVED_ENV_LENGTH); in NewLexicalEnv() member in panda::ecmascript::LexicalEnv
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | ntype_bytecode_lowering.cpp | 161 indexValue += LexicalEnv::RESERVED_ENV_LENGTH; in LowerLdLexVar() 185 indexValue += LexicalEnv::RESERVED_ENV_LENGTH; in LowerStLexVar()
|
H A D | circuit_builder.cpp | 1114 GateRef valueIndex = Int32Add(index, Int32(LexicalEnv::RESERVED_ENV_LENGTH)); in GetPropertiesFromLexicalEnv()
|
H A D | new_object_stub_builder.cpp | 42 auto length = Int32Add(numSlots, Int32(LexicalEnv::RESERVED_ENV_LENGTH));
in NewLexicalEnv() 55 result->ReadVariable(), Hole(), Int32(LexicalEnv::RESERVED_ENV_LENGTH), length);
in NewLexicalEnv()
|
H A D | slowpath_lowering.cpp | 2630 GateRef valueIndex = builder_.Int32Add(slot, builder_.Int32(LexicalEnv::RESERVED_ENV_LENGTH)); in LowerLdLexVar() 2699 GateRef valueIndex = builder_.Int32Add(slot, builder_.Int32(LexicalEnv::RESERVED_ENV_LENGTH)); in LowerStLexVar()
|
H A D | stub_builder.cpp | 5349 GateRef valueIndex = Int32Add(index, Int32(LexicalEnv::RESERVED_ENV_LENGTH)); in SetPropertiesToLexicalEnv()
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | dropframe_manager.cpp | 115 slot < LexicalEnv::Cast(env.GetTaggedObject())->GetLength() - LexicalEnv::RESERVED_ENV_LENGTH && in AddLexPropertiesToRecord() 160 ASSERT(slot < LexicalEnv::Cast(env.GetTaggedObject())->GetLength() - LexicalEnv::RESERVED_ENV_LENGTH); in DropLastFrame() member in panda::ecmascript::tooling::LexicalEnv
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs-inl.h | 3221 uint32_t length = handleLexicalEnv->GetLength() - LexicalEnv::RESERVED_ENV_LENGTH;
|
Completed in 63 milliseconds