Home
last modified time | relevance | path

Searched refs:ReadVariable (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dnew_object_stub_builder.cpp40 Branch(TaggedIsException(result->ReadVariable()), &hasPendingException, &noException); in NewLexicalEnv()
45 StoreHClass(glue_, result->ReadVariable(), hclass); in NewLexicalEnv()
48 result->ReadVariable(), Hole(), Int32(LexicalEnv::RESERVED_ENV_LENGTH), length); in NewLexicalEnv()
51 glue_, result->ReadVariable(), Int32(LexicalEnv::SCOPE_INFO_INDEX), Hole()); in NewLexicalEnv()
53 glue_, result->ReadVariable(), Int32(LexicalEnv::PARENT_ENV_INDEX), parent); in NewLexicalEnv()
90 Branch(TaggedIsException(result->ReadVariable()), &hasPendingException, &noException); in NewJSObject()
93 StoreHClass(glue_, result->ReadVariable(), hclass); in NewJSObject()
108 result->ReadVariable(), *initValue, Int32(JSObject::SIZE), ChangeIntPtrToInt32(size_)); in NewJSObject()
112 SetHash(glue_, result->ReadVariable(), Int64(JSTaggedValue(0).GetRawData())); in NewJSObject()
114 glue_, result->ReadVariable(), emptyArray); in NewJSObject()
[all …]
Dic_stub_builder.cpp46 Branch(TaggedIsHole(cachedHandler->ReadVariable()), slowPath_, tryICHandler); in NamedICAccessor()
86 GateRef handler = CheckPolyHClass(cachedHandler->ReadVariable(), hclass); in ValuedICAccessor()
88 Branch(TaggedIsHole(cachedHandler->ReadVariable()), slowPath_, tryICHandler); in ValuedICAccessor()
Dcircuit_builder.h708 inline GateRef ReadVariable(Variable *var) in ReadVariable() function
710 return impl_->ReadVariable(var); in ReadVariable()
736 GateRef ReadVariable(Variable *var);
932 return env_->GetCurrentLabel()->ReadVariable(this);
934 GateRef ReadVariable() in ReadVariable() function
936 return env_->GetCurrentLabel()->ReadVariable(this); in ReadVariable()
Dcircuit_builder.cpp1880 GateRef Label::LabelImpl::ReadVariable(Variable *var) in ReadVariable() function in panda::ecmascript::kungfu::Label::LabelImpl
1909 val = predecessors_[0]->ReadVariable(var); in ReadVariableRecursive()
2027 auto preVal = pred.ReadVariable(this); in AddPhiOperand()