Home
last modified time | relevance | path

Searched defs:right (Results 1 – 25 of 44) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/ic/
Dic_binary_op.h37 JSTaggedValue right, JSTaggedValue argType) in AddWithTSType()
101 JSTaggedValue right, JSTaggedValue argType) in SubWithTSType()
133 JSTaggedValue right, JSTaggedValue argType) in MulWithTSType()
167 JSTaggedValue right, JSTaggedValue argType) in DivWithTSType()
201 JSTaggedValue right, JSTaggedValue argType) in ModWithTSType()
246 static inline void GetBitOPDate(JSThread *thread, JSTaggedValue left, JSTaggedValue right, in GetBitOPDate()
283 JSTaggedValue right, JSTaggedValue argType) in ShlWithTSType()
299 JSTaggedValue right, JSTaggedValue argType) in ShrWithTSType()
313 JSTaggedValue right, JSTaggedValue argType) in AshrWithTSType()
329 JSTaggedValue right, JSTaggedValue argType) in AndWithTSType()
[all …]
Dic_compare_op.cpp30 JSTaggedValue right, CompareOpType operationType) in EqualWithIC()
215 JSTaggedValue right, CompareOpType operationType) in NotEqualWithIC()
223 JSTaggedValue right, CompareOpType operationType) in Compare()
434 JSTaggedValue right, CompareOpType operationType) in LessWithIC()
443 JSTaggedValue right, CompareOpType operationType) in LessEqWithIC()
452 JSTaggedValue right, CompareOpType operationType) in GreaterWithIC()
461 JSTaggedValue right, CompareOpType operationType) in GreaterEqWithIC()
/arkcompiler/runtime_core/libark_defect_scan_aux/tests/
Dtest_helper.h25 inline static void ExpectEqual(const T1 &left, const T2 &right) in ExpectEqual()
34 inline static void ExpectNotEqual(const T1 &left, const T2 &right) in ExpectNotEqual()
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DassignmentExpression.h35 …explicit AssignmentExpression(Expression *left, Expression *right, lexer::TokenType assignmentOper… in AssignmentExpression()
40 explicit AssignmentExpression(AstNodeType type, Expression *left, Expression *right, in AssignmentExpression()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dts_type_lowering.cpp363 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedAdd() local
376 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedSub() local
389 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedMul() local
402 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedMod() local
415 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedLess() local
428 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedLessEq() local
441 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedGreater() local
454 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedGreaterEq() local
467 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedDiv() local
480 GateRef right = acc_.GetValueIn(gate, 1); in LowerTypedEq() local
[all …]
Doperations_stub_builder.cpp22 GateRef OperationsStubBuilder::Equal(GateRef glue, GateRef left, GateRef right) in Equal()
44 GateRef OperationsStubBuilder::NotEqual(GateRef glue, GateRef left, GateRef right) in NotEqual()
84 GateRef OperationsStubBuilder::Less(GateRef glue, GateRef left, GateRef right) in Less()
181 GateRef OperationsStubBuilder::LessEq(GateRef glue, GateRef left, GateRef right) in LessEq()
278 GateRef OperationsStubBuilder::Greater(GateRef glue, GateRef left, GateRef right) in Greater()
374 GateRef OperationsStubBuilder::GreaterEq(GateRef glue, GateRef left, GateRef right) in GreaterEq()
471 GateRef OperationsStubBuilder::Add(GateRef glue, GateRef left, GateRef right) in Add()
491 GateRef OperationsStubBuilder::Sub(GateRef glue, GateRef left, GateRef right) in Sub()
511 GateRef OperationsStubBuilder::Mul(GateRef glue, GateRef left, GateRef right) in Mul()
531 GateRef OperationsStubBuilder::Div(GateRef glue, GateRef left, GateRef right) in Div()
[all …]
Dtype_lowering.cpp1088 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberAdd() local
1099 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberSub() local
1110 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberMul() local
1121 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberMod() local
1132 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberLess() local
1143 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberLessEq() local
1154 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberGreater() local
1165 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberGreaterEq() local
1176 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberDiv() local
1187 GateRef right = acc_.GetValueIn(gate, 1); in LowerNumberEq() local
[all …]
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dfast_runtime_stub-inl.h38 JSTaggedValue FastRuntimeStub::FastMul(JSTaggedValue left, JSTaggedValue right) in FastMul()
47 JSTaggedValue FastRuntimeStub::FastDiv(JSTaggedValue left, JSTaggedValue right) in FastDiv()
64 JSTaggedValue FastRuntimeStub::FastMod(JSTaggedValue left, JSTaggedValue right) in FastMod()
87 JSTaggedValue FastRuntimeStub::FastEqual(JSTaggedValue left, JSTaggedValue right) in FastEqual()
119 bool FastRuntimeStub::FastStrictEqual(JSTaggedValue left, JSTaggedValue right) in FastStrictEqual()
Dslow_runtime_stub.cpp147 JSTaggedValue SlowRuntimeStub::Add2(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Add2()
157 JSTaggedValue SlowRuntimeStub::Sub2(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Sub2()
167 JSTaggedValue SlowRuntimeStub::Mul2(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Mul2()
177 JSTaggedValue SlowRuntimeStub::Div2(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Div2()
187 JSTaggedValue SlowRuntimeStub::Mod2(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Mod2()
197 JSTaggedValue SlowRuntimeStub::Eq(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Eq()
207 JSTaggedValue SlowRuntimeStub::NotEq(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in NotEq()
217 JSTaggedValue SlowRuntimeStub::Less(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Less()
227 JSTaggedValue SlowRuntimeStub::LessEq(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in LessEq()
237 JSTaggedValue SlowRuntimeStub::Greater(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Greater()
[all …]
/arkcompiler/runtime_core/runtime/tooling/inspector/tests/
Dcombined_event_loop.h24 CombinedEventLoop(EventLoop &left, EventLoop &right) : left_(left), right_(right) {} in CombinedEventLoop()
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsQualifiedName.h34 explicit TSQualifiedName(Expression *left, Identifier *right) in TSQualifiedName()
/arkcompiler/runtime_core/compiler/tests/
Dspill_fill_encoder_test.cpp23 bool operator==(const SpillFillData &left, const SpillFillData &right) in operator ==()
/arkcompiler/ets_runtime/ecmascript/
Dtagged_tree.cpp84 int right = GetRightChild(index).GetInt(); in LeftRotate() local
122 JSTaggedValue right = GetRightChild(parentOfIndex); in RightRotate() local
163 JSTaggedValue right = tree->GetRightChild(parent); in AdjustTaggedTree() local
201 JSTaggedValue right = tree->GetRightChild(successor); in Remove() local
520 int right = GetRightChildIndex(parent); in HasValue() local
543 int right = src->GetRightChildIndex(parent); in SetAll() local
/arkcompiler/ets_frontend/es2panda/ir/statements/
DforInStatement.h40 …explicit ForInStatement(binder::LoopScope *scope, AstNode *left, Expression *right, Statement *bod… in ForInStatement()
DforOfStatement.h40 …explicit ForOfStatement(binder::LoopScope *scope, AstNode *left, Expression *right, Statement *bod… in ForOfStatement()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dscheduler.cpp316 auto cmp_asap = [this](Inst *left, Inst *right) { in ScheduleInstsBetweenBarriers()
323 auto cmp_prio = [this](Inst *left, Inst *right) { in ScheduleInstsBetweenBarriers()
379 auto cmp_old = [this](Inst *left, Inst *right) { return old_[left] < old_[right]; }; in SchedWithGlued()
/arkcompiler/runtime_core/compiler/optimizer/analysis/
Dlive_registers.cpp56 LifeIntervalsIt PartitionLeftSplit(const LifeIntervalsIt &left, const LifeIntervalsIt &right, LifeN… in PartitionLeftSplit()
74 LifeIntervalsIt PartitionRightSplit(const LifeIntervalsIt &left, const LifeIntervalsIt &right, Life… in PartitionRightSplit()
Dlive_registers.h81 void SetRight(LifeIntervalsTreeNode *right) in SetRight()
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp186 ir::Expression *right = CreateMemberExpressionFromQualified(express); in VisitTsImportEqualsDeclaration() local
279 auto *right = std::get<ir::AstNode *>(VisitTSNode(it->Init()))->AsExpression(); in VisitExportNamedVariable() local
301 auto *right = AllocNode<ir::Identifier>(tsQualifiedName->Right()->Name(), Allocator()); in CreateMemberExpressionFromQualified() local
336 auto *right = AllocNode<ir::Identifier>(name, Allocator()); in CreateTsModuleAssignment() local
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.cpp808 JSTaggedValue right = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local
818 JSTaggedValue right = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local
828 JSTaggedValue right = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local
838 JSTaggedValue right = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local
848 JSTaggedValue right = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local
858 JSTaggedValue right = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local
1312 …JSHandle<JSTaggedValue> right = GetHArg<JSTaggedValue>(argv, argc, 1); // 1: means the first para… in DEF_RUNTIME_STUBS() local
1320 …JSHandle<JSTaggedValue> right = GetHArg<JSTaggedValue>(argv, argc, 1); // 1: means the first para… in DEF_RUNTIME_STUBS() local
1328 …JSHandle<JSTaggedValue> right = GetHArg<JSTaggedValue>(argv, argc, 1); // 1: means the first para… in DEF_RUNTIME_STUBS() local
1336 …JSHandle<JSTaggedValue> right = GetHArg<JSTaggedValue>(argv, argc, 1); // 1: means the first para… in DEF_RUNTIME_STUBS() local
[all …]
Druntime_stubs-inl.h1359 const JSHandle<JSTaggedValue> &right) in RuntimeEq()
1367 const JSHandle<JSTaggedValue> &right) in RuntimeNotEq()
1375 const JSHandle<JSTaggedValue> &right) in RuntimeLess()
1383 const JSHandle<JSTaggedValue> &right) in RuntimeLessEq()
1391 const JSHandle<JSTaggedValue> &right) in RuntimeGreater()
1399 const JSHandle<JSTaggedValue> &right) in RuntimeGreaterEq()
1408 const JSHandle<JSTaggedValue> &right) in RuntimeAdd2()
1449 const JSHandle<JSTaggedValue> &right) in RuntimeShl2()
1478 const JSHandle<JSTaggedValue> &right) in RuntimeShr2()
1504 const JSHandle<JSTaggedValue> &right) in RuntimeSub2()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_hashmap.cpp89 JSTaggedValue right = p->GetRight(); in HasValueRBTreeNode() local
195 JSMutableHandle<RBTreeNode> right(thread, node->GetRight()); in SetAllRBTreeNode() local
Djs_api_hashmap_iterator.cpp138 JSHandle<JSTaggedValue> right(thread, root->GetRight()); in GetCurrentNode() local
Djs_api_hashset_iterator.cpp132 JSHandle<JSTaggedValue> right(thread, root->GetRight()); in GetCurrentNode() local
/arkcompiler/runtime_core/runtime/mem/gc/
Dgc_root.cpp312 uint32_t operator&(VisitGCRootFlags left, VisitGCRootFlags right) in operator &()
317 VisitGCRootFlags operator|(VisitGCRootFlags left, VisitGCRootFlags right) in operator |()

12