/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
D | aarch64_operand.cpp | 24 bool StImmOperand::Less(const Operand &right) const in Less() function in maplebe::StImmOperand 45 bool ExtendShiftOperand::Less(const Operand &right) const in Less() function in maplebe::ExtendShiftOperand
|
/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/compiler/codegen/maple/maple_be/src/cg/ |
D | operand.cpp | 146 bool MemOperand::Less(const Operand &right) const in Less() function in maplebe::MemOperand 172 return ofstOpnd->Less(*rofstOpnd); in Less() 185 return indexReg->Less(*rindexReg); in Less() 196 return ofstOpnd->Less(*rofstOpnd); in Less() 207 bool CondOperand::Less(const Operand &right) const in Less() function in maplebe::CondOperand
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
D | cfi.h | 140 bool Less(const Operand &right) const override in Less() function 169 bool Less(const Operand &right) const override in Less() function 193 bool Less(const Operand &right) const override in Less() function 221 bool Less(const Operand &right) const override in Less() function 254 bool Less(const Operand &right) const override in Less() function
|
D | operand.h | 211 virtual bool Less(const Operand &right) const = 0; 324 bool Less(const Operand &right) const override in Less() function 341 bool Less(const RegOperand &right) const in Less() function 737 bool Less(const Operand &right) const override in Less() function 1427 bool Less(const Operand &right) const override; 1487 bool Less(const Operand &right) const override in Less() function 1560 bool Less(const Operand &right) const override in Less() function 1636 bool Less(const Operand &right) const override; 1688 bool Less(const Operand &right) const override; 1723 bool Less(const Operand &right) const override in Less() function [all …]
|
D | dbg.h | 117 bool Less(const Operand &right) const override in Less() function
|
/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_frontend/ets2panda/linter/docs/rules/ |
D | recipe22.md | 31 // Rewrite with Object. Less type control, need more type checks for safety
|
/arkcompiler/ets_frontend/ets2panda/linter-4.2/docs/rules/ |
D | recipe22.md | 31 // Rewrite with Object. Less type control, need more type checks for safety
|
/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() 412 …if (JSTaggedValue::Less(thread, indexHandle, zero) || !JSTaggedValue::Less(thread, indexHandle, ar… in IntegerIndexedElementGet()
|
D | js_tagged_value.h | 396 …static bool Less(JSThread *thread, const JSHandle<JSTaggedValue> &x, const JSHandle<JSTaggedValue>…
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | tagged_value_test.cpp | 1087 HWTEST_F_L0(JSTaggedValueTest, Less) in HWTEST_F_L0() argument 1093 ASSERT_TRUE(JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1.0)), in HWTEST_F_L0() 1095 ASSERT_FALSE(JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(0.0)), in HWTEST_F_L0() 1097 ASSERT_TRUE(JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1)), in HWTEST_F_L0() 1100 ASSERT_TRUE(JSTaggedValue::Less(thread, test, test1)); in HWTEST_F_L0() 1101 ASSERT_FALSE(JSTaggedValue::Less(thread, test2, test1)); in HWTEST_F_L0() 1102 …ASSERT_FALSE(JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1)), test1)… in HWTEST_F_L0() 1103 …ASSERT_FALSE(JSTaggedValue::Less(thread, test2, JSHandle<JSTaggedValue>(thread, JSTaggedValue(2)))… in HWTEST_F_L0() 1105 ASSERT_TRUE(JSTaggedValue::Less( in HWTEST_F_L0() 1108 ASSERT_TRUE(JSTaggedValue::Less( in HWTEST_F_L0() [all …]
|
/arkcompiler/ets_frontend/ts2panda/tests/expression/ |
D | cmpBinary.test.ts | 28 Less, 67 new Less(new Imm(0), lhs),
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | common_stubs.h | 32 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 | 157 GateRef OperationsStubBuilder::Less(GateRef glue, GateRef left, GateRef right, ProfileOperation cal… in Less() function in panda::ecmascript::kungfu::OperationsStubBuilder 255 result = CallRuntime(glue, RTSTUB_ID(Less), { left, right }); in Less()
|
D | call_signature.cpp | 98 DEF_CALL_SIGNATURE(Less) in DEF_CALL_SIGNATURE() argument 100 BINARY_CALL_SIGNATURE(Less) in DEF_CALL_SIGNATURE()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
D | mpl_int_val.h | 248 bool Less(const IntVal &rhs, PrimType pType) const in Less() function 491 return a.Less(b, newType) ? IntVal(a, newType) : IntVal(b, newType); in Min()
|
/arkcompiler/runtime_core/static_core/docs/ |
D | cross-values.md | 31 3. Less flexibility of the code, problems with maintaing;
|
/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));
|