Home
last modified time | relevance | path

Searched refs:globalValue (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ic/
Dic_runtime_stub.h27 … JSTaggedValue globalValue, JSTaggedValue key, uint32_t slotId,
30 JSTaggedValue globalValue, JSTaggedValue key,
Dic_runtime_stub-inl.h38 … JSTaggedValue globalValue, JSTaggedValue key, uint32_t slotId, in LoadGlobalICByName() argument
50 return LoadMiss(thread, profileTypeInfo, globalValue, key, slotId, kind); in LoadGlobalICByName()
54 JSTaggedValue globalValue, JSTaggedValue key, in StoreGlobalICByName() argument
66 return StoreMiss(thread, profileTypeInfo, globalValue, key, value, slotId, kind); in StoreGlobalICByName()
/arkcompiler/ets_runtime/ecmascript/ic/tests/
Dic_runtime_stub_test.cpp70 …JSHandle<JSTaggedValue> globalValue(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(objFun)… in HWTEST_F_L0() local
89globalValue.GetTaggedValue(), propKey.GetTaggedValue(), 1, true); in HWTEST_F_L0()
102 …JSHandle<JSTaggedValue> globalValue(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(objFun)… in HWTEST_F_L0() local
120 … ICRuntimeStub::StoreGlobalICByName(thread, *handleProfileTypeInfo, globalValue.GetTaggedValue(), in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins.h286 …alThis(const JSHandle<JSObject> &obj, const char *key, const JSHandle<JSTaggedValue> &globalValue);
Dbuiltins_regexp.cpp399 JSTaggedValue globalValue = in Match() local
411 bool isGlobal = globalValue.ToBoolean(); in Match()
742 JSTaggedValue globalValue = in Replace() local
746 bool isGlobal = globalValue.ToBoolean(); in Replace()
Dbuiltins.cpp3078 …balThis(const JSHandle<JSObject> &obj, const char *key, const JSHandle<JSTaggedValue> &globalValue) in SetGlobalThis() argument
3081 PropertyDescriptor descriptor(thread_, globalValue, true, false, true); in SetGlobalThis()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dllvm_ir_builder.cpp1212 LLVMValueRef globalValue = LLVMAddGlobal(module_, GetInt64T(), "G"); in VisitRelocatableData() local
1213 LLVMSetInitializer(globalValue, LLVMConstInt(GetInt64T(), value, 0)); in VisitRelocatableData()
1214 gate2LValue_[gate] = globalValue; in VisitRelocatableData()