Home
last modified time | relevance | path

Searched defs:lhs (Results 1 – 25 of 35) sorted by relevance

12

/arkcompiler/ets_frontend/ts2panda/tests/expression/
DoperationEqual.test.ts48 let lhs = new VReg(); variable
68 let lhs = new VReg(); variable
88 let lhs = new VReg(); variable
108 let lhs = new VReg(); variable
128 let lhs = new VReg(); variable
148 let lhs = new VReg(); variable
168 let lhs = new VReg(); variable
188 let lhs = new VReg(); variable
209 let lhs = new VReg(); variable
Dbinary.test.ts61 let lhs = new VReg(); variable
75 let lhs = new VReg(); variable
148 let lhs = new VReg(); variable
179 let lhs = new VReg(); variable
193 let lhs = new VReg(); variable
207 let lhs = new VReg(); variable
221 let lhs = new VReg(); variable
235 let lhs = new VReg(); variable
249 let lhs = new VReg(); variable
263 let lhs = new VReg(); variable
[all …]
DcmpBinary.test.ts59 let lhs = new VReg(); variable
82 let lhs = new VReg(); variable
105 let lhs = new VReg(); variable
128 let lhs = new VReg(); variable
151 let lhs = new VReg(); variable
174 let lhs = new VReg(); variable
197 let lhs = new VReg(); variable
220 let lhs = new VReg(); variable
244 let lhs = new VReg(); variable
263 let lhs = new VReg(); variable
[all …]
DlogicBinary.test.ts39 let lhs = new VReg(); variable
61 let lhs = new VReg(); variable
Dconditions.test.ts106 let lhs = new VReg(); variable
Dliteral.test.ts247 let lhs = new VReg(); variable
/arkcompiler/ets_frontend/ts2panda/tests/statements/
Dwhile.test.ts66 let lhs = new VReg(); variable
93 let lhs = new VReg(); variable
126 let lhs = new VReg(); variable
159 let lhs = new VReg(); variable
DdoWhile.test.ts73 let lhs = new VReg(); variable
109 let lhs = new VReg(); variable
Dfor.test.ts110 let lhs = new VReg(); variable
152 let lhs = new VReg(); variable
202 let lhs = new VReg(); variable
277 let lhs = 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/ets_frontend/es2panda/ir/expressions/
DbinaryExpression.cpp44 compiler::VReg lhs = pg->AllocReg(); in CompileLogical() local
89 compiler::VReg lhs = pg->AllocReg(); in Compile() local
DtemplateLiteral.cpp54 compiler::VReg lhs = pg->AllocReg(); in Compile() local
/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.cpp28 auto lhs = this->head_; in Merge() local
52 auto lhs = this->head_; in Equals() local
/arkcompiler/ets_frontend/es2panda/compiler/base/
Dcondition.cpp44 VReg lhs = pg->AllocReg(); in Compile() local
/arkcompiler/ets_runtime/ecmascript/compiler/
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()
416 auto lhs = this->head_; in Merge() local
458 auto lhs = this->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/runtime_core/libpandabase/utils/
Dtype_converter.cpp63 bool operator==(const ValueUnit &lhs, const ValueUnit &rhs) in operator ==()
82 bool operator!=(const ValueUnit &lhs, const ValueUnit &rhs) in operator !=()
/arkcompiler/runtime_core/compiler/tests/x86/
Dasmjit_test.cpp62 x86::Gp lhs = a.zax(); in TEST_F() local
104 x86::Gp lhs = a.zax(); in TEST_F() local
/arkcompiler/runtime_core/compiler/tests/amd64/
Dasmjit_test.cpp86 x86::Gp lhs = a.zax(); in TEST_F() local
177 x86::Gp lhs = a.zax(); 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 ==()
/arkcompiler/runtime_core/compiler/optimizer/analysis/
Dlinear_order.cpp77 …auto cmp = [](BasicBlock *lhs, BasicBlock *rhs) { return lhs->GetGuestPc() >= rhs->GetGuestPc(); }; in AddSortedByPc()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.cpp805 void PandaGen::Condition(const ir::AstNode *node, lexer::TokenType op, VReg lhs, Label *ifFalse) in Condition()
890 void PandaGen::Binary(const ir::AstNode *node, lexer::TokenType op, VReg lhs) in Binary()
999 void PandaGen::Equal(const ir::AstNode *node, VReg lhs) in Equal()
1004 void PandaGen::NotEqual(const ir::AstNode *node, VReg lhs) in NotEqual()
1009 void PandaGen::StrictEqual(const ir::AstNode *node, VReg lhs) in StrictEqual()
1014 void PandaGen::StrictNotEqual(const ir::AstNode *node, VReg lhs) in StrictNotEqual()
1019 void PandaGen::LessThan(const ir::AstNode *node, VReg lhs) in LessThan()
1024 void PandaGen::LessEqual(const ir::AstNode *node, VReg lhs) in LessEqual()
1029 void PandaGen::GreaterThan(const ir::AstNode *node, VReg lhs) in GreaterThan()
1034 void PandaGen::GreaterEqual(const ir::AstNode *node, VReg lhs) in GreaterEqual()

12