Home
last modified time | relevance | path

Searched refs:TaggedIsUndefined (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dic_stub_builder.cpp28 Branch(TaggedIsUndefined(profileTypeInfo_), tryFastPath_, &tryIC); in NamedICAccessor()
51 Branch(TaggedIsUndefined(firstValue), slowPath_, tryFastPath_); in NamedICAccessor()
66 Branch(TaggedIsUndefined(profileTypeInfo_), tryFastPath_, &tryIC); in ValuedICAccessor()
93 Branch(TaggedIsUndefined(firstValue), slowPath_, tryFastPath_); in ValuedICAccessor()
193 Branch(TaggedIsUndefined(profileTypeInfo_), tryFastPath_, &tryIC); in TryLoadGlobalICByName()
214 Branch(TaggedIsUndefined(profileTypeInfo_), tryFastPath_, &tryIC); in TryStoreGlobalICByName()
Dprofiler_stub_builder.cpp59 Branch(TaggedIsUndefined(profileTypeInfo), &slowpath, &profiler); in ProfileOpType()
88 Branch(TaggedIsUndefined(slotValue), &updateSlot, &updateProfile); in ProfileOpType()
206 Branch(TaggedIsUndefined(targetProfileInfo), &nonHotness, &exit); in ProfileCall()
Daccess_object_stub_builder.cpp261 Branch(TaggedIsUndefined(record), &notFoundInRecord, &foundInRecord); in TryLoadGlobalByName()
310 Branch(TaggedIsUndefined(record), &notFoundInRecord, &foundInRecord); in TryStoreGlobalByName()
Dstub_builder.cpp208 Branch(TaggedIsUndefined(element), &isUndefined, &notUndefined); in FindElementFromNumberDictionary()
295 Branch(TaggedIsUndefined(element), &isUndefined, &notUndefined); in FindEntryFromNameDictionary()
405 Branch(TaggedIsUndefined(element), &isUndefined, &notUndefined); in FindEntryFromTransitionDictionary()
597 Branch(TaggedIsUndefined(getter), &objIsUndefined, &objNotUndefined); in CallGetterHelper()
646 Branch(TaggedIsUndefined(setter), &objIsUndefined, &objNotUndefined); in CallSetterHelper()
3348 Branch(TaggedIsUndefined(obj), &objIsUndefined, &objNotUndefined); in FastTypeOf()
3488 Branch(TaggedIsUndefined(instof), &instOfIsUndefined, &instOfNotUndefined); in InstanceOf()
5124 Branch(TaggedIsUndefined(outPut), &returnObj, &throwExeption); in ConstructorCheck()
6139 auto isUndefined = TaggedIsUndefined(tagged); in ToNumber()
6536 Branch(TaggedIsUndefined(*profileTypeInfo), &needUpdate, &exit); in UpdateProfileTypeInfo()
Dcircuit_builder-inl.h356 GateRef CircuitBuilder::TaggedIsUndefined(GateRef x) in TaggedIsUndefined() function
457 return BoolOr(TaggedIsUndefined(x), TaggedIsNull(x)); in TaggedIsUndefinedOrNull()
Dinterpreter_stub.cpp127 …Branch(BoolOr(TaggedIsUndefined(*varProfileTypeInfo), Int8Equal(interruptsFlag, …
2316 Branch(TaggedIsUndefined(*varProfileTypeInfo), &updateHotness, &tryContinue); in DECLARE_ASM_HANDLER()
2379 Branch(TaggedIsUndefined(*varProfileTypeInfo), &updateHotness, &tryContinue); in DECLARE_ASM_HANDLER()
2455 Branch(TaggedIsUndefined(*varProfileTypeInfo), &updateHotness, &tryContinue); in DECLARE_ASM_HANDLER()
2529 Branch(TaggedIsUndefined(*varProfileTypeInfo), &updateHotness, &tryContinue); in DECLARE_ASM_HANDLER()
2861 Branch(TaggedIsUndefined(*varProfileTypeInfo), &updateHotness, &tryContinue); in DECLARE_ASM_HANDLER()
Dcommon_stubs.cpp795 Branch(TaggedIsUndefined(method), &isUndefined, &isNotUndefined); in GenerateCircuit()
Dstub_builder-inl.h613 inline GateRef StubBuilder::TaggedIsUndefined(GateRef x) in TaggedIsUndefined() function
615 return env_->GetBuilder()->TaggedIsUndefined(x); in TaggedIsUndefined()
Dstub_builder.h204 GateRef TaggedIsUndefined(GateRef x);
Dcircuit_builder.h465 inline GateRef TaggedIsUndefined(GateRef x);
Dslowpath_lowering.cpp2537 builder_.Branch(builder_.TaggedIsUndefined(obj), &objIsUndefined, &objNotUndefined); in LowerTypeof()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_stubs.cpp879 Branch(TaggedIsUndefined(arrayObj), &targetIsUndefined, &targetNotUndefined); in DECLARE_BUILTINS()