/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/ |
H A D | regfile.cpp | 41 if (calleeSaved_.Has(i)) { in GetCalleeSaved() 44 if (calleeSavedv_.Has(i)) { in GetCalleeSaved() 88 if (!scalarUsed && calleeSaved_.Has(i)) { in SetUsedRegs() 91 if (!scalarUsed && callerSaved_.Has(i)) { in SetUsedRegs() 96 if (!vectorUsed && calleeSavedv_.Has(i)) { in SetUsedRegs() 99 if (!vectorUsed && callerSavedv_.Has(i)) { in SetUsedRegs() 212 ASSERT(scratchv_.Has(reg.GetId())); in AcquireScratchRegister() 215 ASSERT(scratch_.Has(reg.GetId())); in AcquireScratchRegister() 232 return scratchv_.Has(reg.GetId()); in IsScratchRegisterReleased() 234 return scratch_.Has(re in IsScratchRegisterReleased() [all...] |
H A D | callconv.cpp | 67 if (vregs.Has(ii)) { in PushRegs() 76 if (regs.Has(ii)) { in PushRegs() 91 if (regs.Has(i)) { in PopRegs() 98 if (vregs.Has(i)) { in PopRegs()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_weak_container.cpp | 49 bool JSWeakMap::Has(JSThread *thread, JSTaggedValue key) const in Has() function in panda::ecmascript::JSWeakMap 51 return LinkedHashMap::Cast(GetLinkedMap().GetTaggedObject())->Has(thread, key); in Has() 100 bool JSWeakSet::Has(JSThread *thread, JSTaggedValue value) const in Has() function in panda::ecmascript::JSWeakSet 102 return LinkedHashSet::Cast(GetLinkedSet().GetTaggedObject())->Has(thread, value); in Has()
|
H A D | js_set.cpp | 51 bool JSSet::Has(const JSThread *thread, JSTaggedValue value) const in Has() function in panda::ecmascript::JSSet 53 return LinkedHashSet::Cast(GetLinkedSet().GetTaggedObject())->Has(thread, value); in Has()
|
H A D | js_weak_container.h | 35 bool Has(JSThread *thread, JSTaggedValue key) const; 63 bool Has(JSThread *thread, JSTaggedValue value) const;
|
H A D | js_map.cpp | 52 bool JSMap::Has(JSThread *thread, JSTaggedValue key) const in Has() function in panda::ecmascript::JSMap 54 return LinkedHashMap::Cast(GetLinkedMap().GetTaggedObject())->Has(thread, key); in Has()
|
H A D | js_set.h | 33 bool Has(const JSThread *thread, JSTaggedValue value) const;
|
/arkcompiler/runtime_core/static_core/runtime/interpreter/ |
H A D | cache.h | 26 bool Has(const void *pc, Method *caller) const in Has() function in ark::InterpreterCache 35 if (UNLIKELY(!Has(pc, caller))) { in Get()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_set.h | 40 V("has", Has, 1, SetHas) \ 62 static JSTaggedValue Has(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_map.h | 38 V("has", Has, 1, MapHas) \ 64 static JSTaggedValue Has(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_weak_set.h | 32 static JSTaggedValue Has(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_weak_map.h | 32 static JSTaggedValue Has(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_weak_map.cpp | 92 JSTaggedValue BuiltinsWeakMap::Has(EcmaRuntimeCallInfo *argv) in Has() function in panda::ecmascript::builtins::BuiltinsWeakMap 95 BUILTINS_API_TRACE(argv->GetThread(), WeakMap, Has); in Has() 110 return GetTaggedBoolean(jsWeakMap->Has(thread, key.GetTaggedValue())); in Has()
|
H A D | builtins_weak_set.cpp | 148 JSTaggedValue BuiltinsWeakSet::Has(EcmaRuntimeCallInfo *argv) in Has() function in panda::ecmascript::builtins::BuiltinsWeakSet 151 BUILTINS_API_TRACE(argv->GetThread(), WeakSet, Has); in Has() 166 return GetTaggedBoolean(jsWeakSet->Has(thread, value.GetTaggedValue())); in Has()
|
H A D | builtins_shared_map.h | 38 V("has", Has, 1, MapHas) \ 56 static JSTaggedValue Has(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_shared_set.h | 40 V("has", Has, 1, SetHas) \ 54 static JSTaggedValue Has(EcmaRuntimeCallInfo *argv);
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_api_hashset_test.cpp | 74 JSTaggedValue bHas = hashSet->Has(thread, value.GetTaggedValue()); in HWTEST_F_L0() 83 // test Has exception in HWTEST_F_L0() 84 JSTaggedValue exceptionHas = hashSet->Has(thread, JSTaggedValue::Hole()); in HWTEST_F_L0() 111 JSTaggedValue has = hashSet->Has(thread, value.GetTaggedValue()); in HWTEST_F_L0() 120 JSTaggedValue has = hashSet->Has(thread, value.GetTaggedValue()); in HWTEST_F_L0() 161 JSTaggedValue has = hashSet->Has(thread, value.GetTaggedValue()); in HWTEST_F_L0() 167 JSTaggedValue has = hashSet->Has(thread, value.GetTaggedValue()); in HWTEST_F_L0() 203 JSTaggedValue iterValueFlag = hashSet->Has(thread, tmpIterValue.GetTaggedValue()); in HWTEST_F_L0() 221 JSTaggedValue iterValueFlag = hashSet->Has(thread, tmpValue.GetTaggedValue()); in HWTEST_F_L0()
|
H A D | js_set_test.cpp | 65 EXPECT_TRUE(set->Has(thread, key.GetTaggedValue())); in HWTEST_F_L0() 80 EXPECT_TRUE(set->Has(thread, key.GetTaggedValue())); in HWTEST_F_L0() 87 EXPECT_FALSE(set->Has(thread, deleteKey.GetTaggedValue())); in HWTEST_F_L0()
|
H A D | js_api_tree_set_test.cpp | 90 bool has = JSAPITreeSet::Has(thread, tset, key); in HWTEST_F_L0() 127 bool has = JSAPITreeSet::Has(thread, tset, key); in HWTEST_F_L0() 136 bool has = JSAPITreeSet::Has(thread, tset, key); in HWTEST_F_L0() 158 bool has = JSAPITreeSet::Has(thread, tset, key); in HWTEST_F_L0() 192 bool has = JSAPITreeSet::Has(thread, tset, key); in HWTEST_F_L0() 201 has = JSAPITreeSet::Has(thread, tset, key); in HWTEST_F_L0()
|
H A D | js_api_linked_list_test.cpp | 106 EXPECT_EQ(toor->Has(value.GetTaggedValue()), false); in HWTEST_F_L0() 111 EXPECT_EQ(toor->Has(value.GetTaggedValue()), false); in HWTEST_F_L0() 116 EXPECT_EQ(toor->Has(value.GetTaggedValue()), false); in HWTEST_F_L0() 121 EXPECT_EQ(toor->Has(value.GetTaggedValue()), false); in HWTEST_F_L0() 126 EXPECT_EQ(toor->Has(value.GetTaggedValue()), false); in HWTEST_F_L0() 131 EXPECT_EQ(toor->Has(value.GetTaggedValue()), false); in HWTEST_F_L0()
|
H A D | js_map_test.cpp | 66 EXPECT_TRUE(map->Has(thread, key.GetTaggedValue())); in HWTEST_F_L0() 82 EXPECT_TRUE(map->Has(thread, key.GetTaggedValue())); in HWTEST_F_L0() 90 EXPECT_FALSE(map->Has(thread, deleteKey.GetTaggedValue())); in HWTEST_F_L0()
|
H A D | js_set_iterator_test.cpp | 102 EXPECT_TRUE(resultSet->Has(thread, keyHandle1.GetTaggedValue())); in HWTEST_F_L0() 103 EXPECT_TRUE(resultSet->Has(thread, keyHandle2.GetTaggedValue())); in HWTEST_F_L0() 104 EXPECT_TRUE(resultSet->Has(thread, keyHandle3.GetTaggedValue())); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_weak_map_test.cpp | 117 JSTaggedValue result1 = BuiltinsWeakMap::Has(ecmaRuntimeCallInfo); in HWTEST_F_L0() 129 // test Has() in HWTEST_F_L0() 137 JSTaggedValue result3 = BuiltinsWeakMap::Has(ecmaRuntimeCallInfo1); in HWTEST_F_L0() 182 JSTaggedValue result2 = BuiltinsWeakMap::Has(ecmaRuntimeCallInfo1); in HWTEST_F_L0() 193 JSTaggedValue result4 = BuiltinsWeakMap::Has(ecmaRuntimeCallInfo1); in HWTEST_F_L0() 231 JSTaggedValue result4 = BuiltinsWeakMap::Has(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
|
H A D | builtins_weak_set_test.cpp | 113 JSTaggedValue result1 = BuiltinsWeakSet::Has(ecmaRuntimeCallInfo); in HWTEST_F_L0() 125 // test Has() in HWTEST_F_L0() 132 JSTaggedValue result3 = BuiltinsWeakSet::Has(ecmaRuntimeCallInfo1); in HWTEST_F_L0() 165 JSTaggedValue result2 = BuiltinsWeakSet::Has(ecmaRuntimeCallInfo1); in HasAndDeleteCommon() 176 JSTaggedValue result4 = BuiltinsWeakSet::Has(ecmaRuntimeCallInfo1); in HasAndDeleteCommon()
|
/arkcompiler/ets_runtime/ecmascript/shared_objects/ |
H A D | js_shared_set.cpp | 62 bool JSSharedSet::Has(JSThread *thread, const JSHandle<JSSharedSet> &set, JSTaggedValue value) in Has() function in panda::ecmascript::JSSharedSet 66 return LinkedHashSet::Cast(set->GetLinkedSet().GetTaggedObject())->Has(thread, value); in Has()
|