Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/
Dstring_tlab_allocations.ets73 //! RUN_PAOC options: "--compiler-enable-tlab-events=true --compiler-regex=.*StringSubstring.*"
176 function StringSubstring(): int {
194 compileMethod("string_tlab_allocations.ETSGLOBAL::StringSubstring");
195 return StringSubstring();
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_call_signature.h137 case BuiltinsStubCSigns::ID::StringSubstring: in IsTypedInlineBuiltin()
334 {StringSubstring, "String.prototype.substring"}, in GetBuiltinName()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_string.h94 V("substring", Substring, 2, StringSubstring) \
/arkcompiler/ets_runtime/ecmascript/compiler/
Dnative_inline_lowering.cpp81 case BuiltinsStubCSigns::ID::StringSubstring: in RunNativeInlineLowering()
454 … builder_.IntPtr(static_cast<int64_t>(BuiltinsStubCSigns::ID::StringSubstring)), in TryInlineStringSubstring()
460 ret = builder_.StringSubstring(thisValue, startTag, endTag); in TryInlineStringSubstring()
468 … builder_.IntPtr(static_cast<int64_t>(BuiltinsStubCSigns::ID::StringSubstring))); in TryInlineStringSubstring()
474 ret = builder_.StringSubstring(thisValue, startTag, endTag); in TryInlineStringSubstring()
Dmcr_opcodes.h71 …V(StringSubstring, STRING_SUB_STRING, GateFlags::NO_WRITE, 1, 1, 3) …
Dmcr_circuit_builder.cpp1853 GateRef CircuitBuilder::StringSubstring(GateRef thisValue, GateRef startTag, GateRef endTag) in StringSubstring() function in panda::ecmascript::kungfu::CircuitBuilder
1859 GetCircuit()->NewGate(circuit_->StringSubstring(), MachineType::I64, in StringSubstring()
Dcircuit_builder.h892 GateRef StringSubstring(GateRef thisValue, GateRef startTag, GateRef endTag);
Dtyped_native_inline_lowering.cpp2195 const CallSignature *cs = BuiltinsStubCSigns::Get(BuiltinsStubCSigns::ID::StringSubstring); in LowerStringSubstring()