/arkcompiler/ets_frontend/ts2panda/tests/statements/ |
D | for.test.ts | 22 Less, 125 new Less(new Imm(0), lhs), 167 new Less(new Imm(0), lhs), 219 new Less(new Imm(0), lhs), 230 new Less(new Imm(1), lhs), 294 new Less(new Imm(0), lhs), 305 new Less(new Imm(1), lhs),
|
D | while.test.ts | 23 Less, 104 new Less(new Imm(1), lhs), 137 new Less(new Imm(2), lhs), 170 new Less(new Imm(2), lhs),
|
D | doWhile.test.ts | 21 Less, 91 new Less(new Imm(3), lhs), 127 new Less(new Imm(3), lhs),
|
/arkcompiler/ets_runtime/ecmascript/ic/tests/ |
D | ic_compareop_test.cpp | 215 JSTaggedValue resInSlowPath1 = SlowRuntimeStub::Less(thread, arg1Handle.GetTaggedValue(), in HWTEST_F_L0() 217 JSTaggedValue resInSlowPath2 = SlowRuntimeStub::Less(thread, Str1.GetTaggedValue(), in HWTEST_F_L0() 219 JSTaggedValue resInSlowPath3 = SlowRuntimeStub::Less(thread, Str1.GetTaggedValue(), in HWTEST_F_L0() 221 JSTaggedValue resInSlowPath4 = SlowRuntimeStub::Less(thread, Str1.GetTaggedValue(), in HWTEST_F_L0() 223 JSTaggedValue resInSlowPath5 = SlowRuntimeStub::Less(thread, arg1Handle.GetTaggedValue(), in HWTEST_F_L0() 225 JSTaggedValue resInSlowPath9 = SlowRuntimeStub::Less(thread, in HWTEST_F_L0() 227 JSTaggedValue resInSlowPath10 = SlowRuntimeStub::Less(thread, in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_typed_array.cpp | 110 if (JSTaggedValue::Less(thread, numericIndexHandle, zero)) { in HasProperty() 115 return JSTaggedValue::Less(thread, numericIndexHandle, arrLenHandle); in HasProperty() 173 if (JSTaggedValue::Less(thread, numericIndexHandle, zero)) { in DefineOwnProperty() 178 if (!JSTaggedValue::Less(thread, numericIndexHandle, arrLenHandle)) { in DefineOwnProperty() 402 …if (JSTaggedValue::Less(thread, indexHandle, zero) || !JSTaggedValue::Less(thread, indexHandle, ar… in IntegerIndexedElementGet()
|
D | js_tagged_value.h | 452 …static bool Less(JSThread *thread, const JSHandle<JSTaggedValue> &x, const JSHandle<JSTaggedValue>…
|
D | js_function.cpp | 537 ASSERT_PRINT(!JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, length), in SetFunctionLength()
|
D | js_tagged_value-inl.h | 386 inline bool JSTaggedValue::Less(JSThread *thread, const JSHandle<JSTaggedValue> &x, const JSHandle<… in Less() function
|
D | runtime_call_id.h | 48 V(Less) \
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | tagged_value_test.cpp | 1071 HWTEST_F_L0(JSTaggedValueTest, Less) in HWTEST_F_L0() argument 1077 ASSERT_TRUE(JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1.0)), in HWTEST_F_L0() 1079 ASSERT_FALSE(JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(0.0)), in HWTEST_F_L0() 1081 ASSERT_TRUE(JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1)), in HWTEST_F_L0() 1084 ASSERT_TRUE(JSTaggedValue::Less(thread, test, test1)); in HWTEST_F_L0() 1085 ASSERT_FALSE(JSTaggedValue::Less(thread, test2, test1)); in HWTEST_F_L0() 1086 …ASSERT_FALSE(JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1)), test1)… in HWTEST_F_L0() 1087 …ASSERT_FALSE(JSTaggedValue::Less(thread, test2, JSHandle<JSTaggedValue>(thread, JSTaggedValue(2)))… in HWTEST_F_L0() 1089 ASSERT_TRUE(JSTaggedValue::Less( in HWTEST_F_L0() 1092 ASSERT_TRUE(JSTaggedValue::Less( in HWTEST_F_L0() [all …]
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | common_stubs.h | 33 V(Less) \
|
D | operations_stub_builder.h | 41 …GateRef Less(GateRef glue, GateRef left, GateRef right, ProfileOperation callback = ProfileOperati…
|
D | call_signature.h | 332 V(Less) \
|
D | operations_stub_builder.cpp | 124 GateRef OperationsStubBuilder::Less(GateRef glue, GateRef left, GateRef right, ProfileOperation cal… in Less() function in panda::ecmascript::kungfu::OperationsStubBuilder 220 result = CallRuntime(glue, RTSTUB_ID(Less), { left, right }); in Less()
|
D | call_signature.cpp | 97 DEF_CALL_SIGNATURE(Less) in DEF_CALL_SIGNATURE() argument 99 BINARY_CALL_SIGNATURE(Less) in DEF_CALL_SIGNATURE()
|
D | common_stubs.cpp | 127 Return(operationBuilder.Less(glue, x, y)); in GenerateCircuit()
|
D | slowpath_lowering.cpp | 1236 GateRef result = builder_.CallStub(glue_, gate, CommonStubCSigns::Less, in LowerLess()
|
D | interpreter_stub.cpp | 544 GateRef result = builder.Less(glue, left, acc, callback); in DECLARE_ASM_HANDLER()
|
/arkcompiler/ets_frontend/ts2panda/tests/expression/ |
D | cmpBinary.test.ts | 28 Less, 67 new Less(new Imm(0), lhs),
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
D | slow_runtime_stub.h | 47 static JSTaggedValue Less(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
|
D | slow_runtime_stub.cpp | 217 JSTaggedValue SlowRuntimeStub::Less(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Less() function in panda::ecmascript::SlowRuntimeStub 219 INTERPRETER_TRACE(thread, Less); in Less()
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | pandagen.ts | 150 Less, 870 this.add(node, new Less(new Imm(0), lhs));
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs.h | 236 V(Less) \
|
D | runtime_stubs.cpp | 1437 DEF_RUNTIME_STUBS(Less) in DEF_RUNTIME_STUBS() argument 1439 RUNTIME_STUBS_HEADER(Less); in DEF_RUNTIME_STUBS()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | pandagen.cpp | 1021 ra_.Emit<Less>(node, 0, lhs); in LessThan()
|