Home
last modified time | relevance | path

Searched defs:rhs (Results 1 – 25 of 28) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/compiler/
Dnumber_gate_info.h130 RangeInfo Union(const RangeInfo &rhs) const in Union()
135 RangeInfo intersection(const RangeInfo &rhs) const in intersection()
140 bool MaybeAddOverflow(const RangeInfo &rhs) const in MaybeAddOverflow()
145 bool MaybeAddUnderflow(const RangeInfo &rhs) const in MaybeAddUnderflow()
150 bool MaybeAddOverflowOrUnderflow(const RangeInfo &rhs) const in MaybeAddOverflowOrUnderflow()
162 bool MaybeSubOverflow(const RangeInfo &rhs) const in MaybeSubOverflow()
167 bool MaybeSubUnderflow(const RangeInfo &rhs) const in MaybeSubUnderflow()
172 bool MaybeSubOverflowOrUnderflow(const RangeInfo &rhs) const in MaybeSubOverflowOrUnderflow()
184 bool MaybeShrOverflow(const RangeInfo &rhs) const in MaybeShrOverflow()
192 RangeInfo SHR(const RangeInfo &rhs) const in SHR()
[all …]
Dearly_elimination.cpp246 bool EarlyElimination::MayAccessOneMemory(GateRef lhs, GateRef rhs) in MayAccessOneMemory()
287 bool EarlyElimination::CompareOrder(GateRef lhs, GateRef rhs) in CompareOrder()
292 bool EarlyElimination::CheckReplacement(GateRef lhs, GateRef rhs) in CheckReplacement()
363 bool EarlyElimination::CheckRenameReplacement(GateRef lhs, GateRef rhs) in CheckRenameReplacement()
417 auto rhs = that->head_; in Merge() local
459 auto rhs = that->head_; in Equals() local
Dvalue_numbering.cpp68 bool ValueNumbering::CheckReplacement(GateRef lhs, GateRef rhs) in CheckReplacement()
Drange_guard.cpp165 uint32_t RangeGuard::CheckIndexCheckLengthInput(GateRef lhs, GateRef rhs) in CheckIndexCheckLengthInput()
180 uint32_t RangeGuard::CheckIndexCheckIndexInput(GateRef lhs, GateRef rhs) in CheckIndexCheckIndexInput()
Dlater_elimination.cpp146 bool LaterElimination::CheckReplacement(GateRef lhs, GateRef rhs) in CheckReplacement()
/arkcompiler/ets_frontend/ts2panda/tests/statements/
Dswitch.test.ts44 let rhs = new VReg(); variable
75 let rhs = new VReg(); variable
112 let rhs = new VReg(); variable
149 let rhs = new VReg(); variable
185 let rhs = new VReg(); variable
DforIn.test.ts50 let rhs = new VReg(); variable
88 let rhs = new VReg(); variable
126 let rhs = new VReg(); variable
163 let rhs = new VReg(); variable
/arkcompiler/runtime_core/libpandabase/
Dmacros.h154 #define ASSERT_OP(lhs, op, rhs) do { \ argument
167 #define CHECK_LE(lhs, rhs) ASSERT_OP(lhs, <=, rhs) argument
169 #define CHECK_LT(lhs, rhs) ASSERT_OP(lhs, <, rhs) argument
171 #define CHECK_GE(lhs, rhs) ASSERT_OP(lhs, >=, rhs) argument
173 #define CHECK_GT(lhs, rhs) ASSERT_OP(lhs, >, rhs) argument
175 #define CHECK_EQ(lhs, rhs) ASSERT_OP(lhs, ==, rhs) argument
177 #define CHECK_NE(lhs, rhs) ASSERT_OP(lhs, !=, rhs) argument
215 #define ASSERT_OP(lhs, op, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) argument
216 #define CHECK_LE(lhs, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) argument
217 #define CHECK_LT(lhs, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) argument
[all …]
/arkcompiler/toolchain/tooling/test/utils/
Dtest_util.h254 #define ASSERT_EQ(lhs, rhs) \ argument
263 #define ASSERT_NE(lhs, rhs) \ argument
272 #define ASSERT_STREQ(lhs, rhs) \ argument
297 #define ASSERT_LOCATION_EQ(lhs, rhs) \ argument
/arkcompiler/ets_runtime/ecmascript/compiler/base/
Ddepend_chain_helper.cpp29 auto rhs = that->head_; in Merge() local
53 auto rhs = that->head_; in Equals() local
/arkcompiler/ets_frontend/ts2panda/tests/expression/
DcmpBinary.test.ts301 let rhs = new VReg(); variable
325 let rhs = new VReg(); variable
340 let rhs = new VReg(); variable
/arkcompiler/runtime_core/libpandabase/utils/
Djson_parser.h47 Value(Value &&rhs) noexcept in Value() function
60 void SetValue(T &&rhs) noexcept in SetValue()
Dtype_converter.cpp63 bool operator==(const ValueUnit &lhs, const ValueUnit &rhs) in operator ==()
82 bool operator!=(const ValueUnit &lhs, const ValueUnit &rhs) in operator !=()
Dbit_table.h85 explicit BitTableRow(Reversed *rhs) : table_(rhs->table_), row_index_(rhs->row_index_) {} in BitTableRow()
/arkcompiler/ets_frontend/es2panda/compiler/base/
Ddestructuring.cpp174 static void GenObjectWithRest(PandaGen *pg, const ir::ObjectExpression *object, VReg rhs) in GenObjectWithRest()
214 static void GenObject(PandaGen *pg, const ir::ObjectExpression *object, VReg rhs) in GenObject()
247 VReg rhs = pg->AllocReg(); in Compile() local
/arkcompiler/runtime_core/compiler/tests/x86/
Dasmjit_test.cpp63 x86::Gp rhs = a.zcx(); in TEST_F() local
105 x86::Gp rhs = a.zcx(); in TEST_F() local
/arkcompiler/runtime_core/compiler/tests/amd64/
Dasmjit_test.cpp87 x86::Gp rhs = a.zcx(); in TEST_F() local
178 x86::Gp rhs = a.zcx(); in TEST_F() local
/arkcompiler/runtime_core/libpandabase/tests/
Dserializer_test.cpp77 bool operator==(const PodStruct &lhs, const PodStruct &rhs) in operator ==()
165 bool operator==(const TestStruct &lhs, const TestStruct &rhs) in operator ==()
Dlist_test.cpp35 bool operator==(const TestNode &lhs, const TestNode &rhs) in operator ==()
/arkcompiler/runtime_core/compiler/optimizer/analysis/
Dlinear_order.cpp77 …auto cmp = [](BasicBlock *lhs, BasicBlock *rhs) { return lhs->GetGuestPc() >= rhs->GetGuestPc(); }; in AddSortedByPc()
Dliveness_analyzer.cpp528 … [](const auto &lhs, const auto &rhs) { return lhs->GetBegin() < rhs->GetBegin(); }); in DumpLocationsUsage()
/arkcompiler/runtime_core/libpandafile/
Dfile.cpp444 const std::array<uint8_t, File::VERSION_SIZE> &rhs) in CompareVersions()
456 const std::array<uint8_t, File::VERSION_SIZE> &rhs) in operator <()
462 const std::array<uint8_t, File::VERSION_SIZE> &rhs) in operator >()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_graph_coloring.cpp79 …:upper_bound(active_nodes.begin(), active_nodes.end(), node, [](const auto &lhs, const auto &rhs) { in BuildIG()
338 … [](const auto &lhs, const auto &rhs) { return lhs->GetBegin() < rhs->GetBegin(); }); in AddRange()
/arkcompiler/ets_runtime/ecmascript/
Decma_string.cpp201 EcmaString *rhs = *rightFlat; in Compare() local
296 EcmaString *rhs = *search; in IndexOf() local
350 EcmaString *rhs = *search; in LastIndexOf() local
/arkcompiler/runtime_core/compiler/tests/
Dinst_test.cpp20 inline bool operator==(const Input &lhs, const Inst *rhs) in operator ==()

12