Home
last modified time | relevance | path

Searched refs:Inc (Results 1 – 23 of 23) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/tests/statements/
Dfor.test.ts21 Inc,
134 new Inc(new Imm(1)),
176 new Inc(new Imm(1)),
238 new Inc(new Imm(2)),
250 new Inc(new Imm(4)),
313 new Inc(new Imm(2)),
325 new Inc(new Imm(4)),
/arkcompiler/ets_frontend/ts2panda/tests/expression/
DpostfixOperations.test.ts22 Inc,
51 new Inc(new Imm(2)),
DprefixOperations.test.ts22 Inc,
58 new Inc(new Imm(2)),
Dliteral.test.ts30 Inc,
203 new Inc(new Imm(6)),
DcmpBinary.test.ts25 Inc,
310 new Inc(new Imm(2)),
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcommon_stubs.h45 V(Inc) \
Doperations_stub_builder.h31 GateRef Inc(GateRef glue, GateRef value, ProfileOperation callback = ProfileOperation());
Dcall_signature.h343 V(Inc) \
Doperations_stub_builder.cpp1200 GateRef OperationsStubBuilder::Inc(GateRef glue, GateRef value, ProfileOperation callback) in Inc() function in panda::ecmascript::kungfu::OperationsStubBuilder
1239 result = CallRuntime(glue, RTSTUB_ID(Inc), { value }); in Inc()
Dcall_signature.cpp179 DEF_CALL_SIGNATURE(Inc) in DEF_CALL_SIGNATURE() argument
181 UNARY_CALL_SIGNATURE(Inc) in DEF_CALL_SIGNATURE()
Dcommon_stubs.cpp227 Return(operationBuilder.Inc(glue, x)); in GenerateCircuit()
Dinterpreter_stub.cpp876 GateRef result = builder.Inc(glue, acc, callback); in DECLARE_ASM_HANDLER()
884 GateRef result = builder.Inc(glue, value); in DECLARE_ASM_HANDLER()
Dslowpath_lowering.cpp1290 GateRef result = builder_.CallStub(glue_, gate, CommonStubCSigns::Inc, in LowerInc()
/arkcompiler/ets_frontend/ts2panda/tests/
Dlexenv.test.ts25 Inc,
467 new Inc(new Imm(0)),
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h35 static JSTaggedValue Inc(JSThread *thread, JSTaggedValue value);
Dslow_runtime_stub.cpp105 JSTaggedValue SlowRuntimeStub::Inc(JSThread *thread, JSTaggedValue value) in Inc() function in panda::ecmascript::SlowRuntimeStub
107 INTERPRETER_TRACE(thread, Inc); in Inc()
Dinterpreter-inl.h4702 JSTaggedValue res = SlowRuntimeStub::Inc(thread, value); in RunInternal()
4729 JSTaggedValue res = SlowRuntimeStub::Inc(thread, value); in RunInternal()
Dinterpreter_assembly.cpp741 JSTaggedValue res = SlowRuntimeStub::Inc(thread, value); in HandleIncImm8()
4623 JSTaggedValue res = SlowRuntimeStub::Inc(thread, value); in HandleDeprecatedIncPrefV8()
/arkcompiler/ets_frontend/ts2panda/src/
Dpandagen.ts147 Inc,
961 new Inc(new Imm(0)));
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h160 V(Inc) \
Druntime_stubs.cpp487 DEF_RUNTIME_STUBS(Inc) in DEF_RUNTIME_STUBS() argument
489 RUNTIME_STUBS_HEADER(Inc); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h62 V(Inc) \
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.cpp871 ra_.Emit<Inc>(node, 0); in Unary()