Home
last modified time | relevance | path

Searched refs:FastStringEqual (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dcommon_stubs.h94 V(FastStringEqual) \
Dcall_signature.h479 V(FastStringEqual) \
Dcommon_stubs.cpp1021 result = FastStringEqual(glue, str1, str2); in GenerateCircuit()
Dstub_builder.h682 GateRef FastStringEqual(GateRef glue, GateRef left, GateRef right);
Dstub_builder.cpp4804 result = FastStringEqual(glue, left, right); in SameValue()
4915 result = FastStringEqual(glue, left, right); in SameValueZero()
4939 GateRef StubBuilder::FastStringEqual(GateRef glue, GateRef left, GateRef right) in FastStringEqual() function in panda::ecmascript::kungfu::StubBuilder
5084 result = FastStringEqual(glue, left, right); in FastStrictEqual()
5282 … Branch(FastStringEqual(glue, left, right), &stringEqual, &stringNotEqual); in FastEqual()
Dcall_signature.cpp2375 DEF_CALL_SIGNATURE(FastStringEqual) in DEF_CALL_SIGNATURE() argument
Dtyped_hcr_lowering.cpp1722 … result = builder_.CallStub(glue, gate, CommonStubCSigns::FastStringEqual, { glue, left, right }); in LowerStringEqual()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_array_stub_builder.cpp1660 Branch(FastStringEqual(glue, cacheStr, item), &strEqual, slowPath); in From()