/arkcompiler/runtime_core/static_core/runtime/tooling/sampler/ |
H A D | sample_info.h | 64 bool operator==(const SampleInfo &lhs, const SampleInfo &rhs); 65 bool operator!=(const SampleInfo &lhs, const SampleInfo &rhs); 66 bool operator==(const FileInfo &lhs, const FileInfo &rhs); 67 bool operator!=(const FileInfo &lhs, const FileInfo &rhs); 68 bool operator==(const SampleInfo::ManagedStackFrameId &lhs, const SampleInfo::ManagedStackFrameId &rhs); 69 bool operator!=(const SampleInfo::ManagedStackFrameId &lhs, const SampleInfo::ManagedStackFrameId &rhs); 70 bool operator==(const SampleInfo::StackInfo &lhs, const SampleInfo::StackInfo &rhs); 71 bool operator!=(const SampleInfo::StackInfo &lhs, const SampleInfo::StackInfo &rhs); 72 bool operator==(const SampleInfo::ThreadInfo &lhs, const SampleInfo::ThreadInfo &rhs); 73 bool operator!=(const SampleInfo::ThreadInfo &lhs, cons 95 operator ==(const SampleInfo::ManagedStackFrameId &lhs, const SampleInfo::ManagedStackFrameId &rhs) operator ==() argument 100 operator !=(const SampleInfo::ManagedStackFrameId &lhs, const SampleInfo::ManagedStackFrameId &rhs) operator !=() argument 105 operator ==(const FileInfo &lhs, const FileInfo &rhs) operator ==() argument 110 operator !=(const FileInfo &lhs, const FileInfo &rhs) operator !=() argument 115 operator ==(const SampleInfo::StackInfo &lhs, const SampleInfo::StackInfo &rhs) operator ==() argument 128 operator !=(const SampleInfo::StackInfo &lhs, const SampleInfo::StackInfo &rhs) operator !=() argument 133 operator ==(const SampleInfo::ThreadInfo &lhs, const SampleInfo::ThreadInfo &rhs) operator ==() argument 138 operator !=(const SampleInfo::ThreadInfo &lhs, const SampleInfo::ThreadInfo &rhs) operator !=() argument 143 operator ==(const SampleInfo &lhs, const SampleInfo &rhs) operator ==() argument 154 operator !=(const SampleInfo &lhs, const SampleInfo &rhs) operator !=() argument [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
H A D | mpl_number.h | 163 inline bool operator==(const Number<T, Tag> &lhs, const Number<T, Tag> &rhs) in operator ==() argument 165 return lhs.get() == rhs.get(); in operator ==() 169 inline bool operator!=(const Number<T, Tag> &lhs, const Number<T, Tag> &rhs) in operator !=() argument 171 return !(lhs == rhs); in operator !=() 175 inline bool operator<(const Number<T, Tag> &lhs, const Number<T, Tag> &rhs) in operator <() argument 177 return lhs.get() < rhs.get(); in operator <() 181 inline bool operator<=(const Number<T, Tag> &lhs, const Number<T, Tag> &rhs) in operator <=() argument 183 return lhs.get() <= rhs.get(); in operator <=() 187 inline bool operator>(const Number<T, Tag> &lhs, const Number<T, Tag> &rhs) in operator >() argument 189 return !(lhs < in operator >() 193 operator >=(const Number<T, Tag> &lhs, const Number<T, Tag> &rhs) operator >=() argument 199 operator +(const Number<T, Tag> &lhs, const Number<T, Tag> &rhs) operator +() argument 205 operator -(const Number<T, Tag> &lhs, const Number<T, Tag> &rhs) operator -() argument 212 operator ==(const Number<T, Tag> &lhs, const U &rhs) operator ==() argument 219 operator ==(const U &lhs, const Number<T, Tag> &rhs) operator ==() argument 226 operator !=(const Number<T, Tag> &lhs, const U &rhs) operator !=() argument 233 operator !=(const U &lhs, const Number<T, Tag> &rhs) operator !=() argument 240 operator <(const Number<T, Tag> &lhs, const U &rhs) operator <() argument 247 operator <(const U &lhs, const Number<T, Tag> &rhs) operator <() argument 254 operator <=(const Number<T, Tag> &lhs, const U &rhs) operator <=() argument 261 operator <=(const U &lhs, const Number<T, Tag> &rhs) operator <=() argument 268 operator >(const Number<T, Tag> &lhs, const U &rhs) operator >() argument 275 operator >(const U &lhs, const Number<T, Tag> &rhs) operator >() argument 282 operator >=(const Number<T, Tag> &lhs, const U &rhs) operator >=() argument 289 operator >=(const U &lhs, const Number<T, Tag> &rhs) operator >=() argument 295 operator +(const Number<T, Tag> &lhs, const U &rhs) operator +() argument 301 operator +(const U &lhs, const Number<T, Tag> &rhs) operator +() argument 307 operator -(const Number<T, Tag> &lhs, const U &rhs) operator -() argument 313 operator -(const U &lhs, const Number<T, Tag> &rhs) operator -() argument [all...] |
H A D | ptr.h | 221 inline bool operator==(const Ptr<T, CheckT> &lhs, const Ptr<U, CheckU> &rhs) in operator ==() argument 223 return lhs.get() == rhs.get(); in operator ==() 227 inline bool operator!=(const Ptr<T, CheckT> &lhs, const Ptr<U, CheckU> &rhs) in operator !=() argument 229 return !(lhs == rhs); in operator !=() 233 inline bool operator<(const Ptr<T, CheckT> &lhs, const Ptr<U, CheckU> &rhs) in operator <() argument 235 return lhs.get() < rhs.get(); in operator <() 239 inline bool operator<=(const Ptr<T, CheckT> &lhs, const Ptr<U, CheckU> &rhs) in operator <=() argument 241 return lhs.get() <= rhs.get(); in operator <=() 245 inline bool operator>(const Ptr<T, CheckT> &lhs, const Ptr<U, CheckU> &rhs) in operator >() argument 247 return !(lhs < in operator >() 251 operator >=(const Ptr<T, CheckT> &lhs, const Ptr<U, CheckU> &rhs) operator >=() argument 257 operator ==(const Ptr<T, CheckT> &lhs, std::nullptr_t) operator ==() argument 269 operator !=(const Ptr<T, CheckT> &lhs, std::nullptr_t) operator !=() argument 281 operator <(const Ptr<T, CheckT> &lhs, std::nullptr_t) operator <() argument 293 operator <=(const Ptr<T, CheckT> &lhs, std::nullptr_t) operator <=() argument 305 operator >(const Ptr<T, CheckT> &lhs, std::nullptr_t) operator >() argument 317 operator >=(const Ptr<T, CheckT> &lhs, std::nullptr_t) operator >=() argument [all...] |
H A D | safe_ptr.h | 159 inline bool operator==(const SafePtr<T> &lhs, const SafePtr<U> &rhs) in operator ==() argument 161 return lhs.get() == rhs.get(); in operator ==() 165 inline bool operator!=(const SafePtr<T> &lhs, const SafePtr<U> &rhs) in operator !=() argument 167 return !(lhs == rhs); in operator !=() 171 inline bool operator<(const SafePtr<T> &lhs, const SafePtr<U> &rhs) = delete; 174 inline bool operator<=(const SafePtr<T> &lhs, const SafePtr<U> &rhs) = delete; 177 inline bool operator>(const SafePtr<T> &lhs, const SafePtr<U> &rhs) = delete; 180 inline bool operator>=(const SafePtr<T> &lhs, const SafePtr<U> &rhs) = delete; 183 inline bool operator==(const SafePtr<T> &lhs, std::nullptr_t) = delete; 189 inline bool operator!=(const SafePtr<T> &lhs, st [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/base/ |
H A D | depend_chain_helper.cpp | 28 auto lhs = this->head_; in Merge() local 35 while (lhs != rhs) { in Merge() 36 ASSERT(lhs != nullptr); in Merge() 37 lhs = lhs->next; in Merge() 41 head_ = lhs; in Merge() 52 auto lhs = this->head_; in Equals() local 54 while (lhs != rhs) { in Equals() 55 if (lhs->gate != rhs->gate) { in Equals() 58 lhs in Equals() [all...] |
/arkcompiler/runtime_core/static_core/libpandabase/ |
H A D | macros.h | 146 #define ASSERT_OP(lhs, op, rhs) \ 148 auto __lhs = lhs; \ 151 std::cerr << "CHECK FAILED: " << #lhs << " " #op " " #rhs << std::endl; \ 160 #define CHECK_LE(lhs, rhs) ASSERT_OP(lhs, <=, rhs) 162 #define CHECK_LT(lhs, rhs) ASSERT_OP(lhs, <, rhs) 164 #define CHECK_GE(lhs, rhs) ASSERT_OP(lhs, >=, rhs) 166 #define CHECK_GT(lhs, rh [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/utils/ |
H A D | iterator.h | 126 inline bool operator==(const mpl_iterator<T, Container> &lhs, const mpl_iterator<T, Container> &rhs) noexcept 128 return lhs.base() == rhs.base(); 132 inline bool operator==(const mpl_iterator<T, Container> &lhs, const mpl_iterator<U, Container> &rhs) noexcept 134 return lhs.base() == rhs.base(); 138 inline bool operator!=(const mpl_iterator<T, Container> &lhs, const mpl_iterator<T, Container> &rhs) noexcept 140 return !(lhs == rhs); 144 inline bool operator!=(const mpl_iterator<T, Container> &lhs, const mpl_iterator<U, Container> &rhs) noexcept 146 return !(lhs == rhs); 150 inline bool operator<(const mpl_iterator<T, Container> &lhs, const mpl_iterator<T, Container> &rhs) noexcept 152 return lhs [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | early_elimination.cpp | 258 bool EarlyElimination::MayAccessOneMemory(GateRef lhs, GateRef rhs) in MayAccessOneMemory() argument 261 auto lop = acc_.GetOpCode(lhs); in MayAccessOneMemory() 265 return acc_.GetOpCode(lhs) == OpCode::LOAD_ELEMENT; in MayAccessOneMemory() 268 GateRef lopValueIn = acc_.GetValueIn(lhs, 0); // loadelement receiver in MayAccessOneMemory() 276 bool lopIsTypedArray = acc_.TypedOpIsTypedArray(lhs, TypedOpKind::TYPED_LOAD_OP); in MayAccessOneMemory() 285 auto loff = acc_.GetValueIn(lhs, 1); in MayAccessOneMemory() 291 auto lindex = acc_.GetHClassIndex(lhs); in MayAccessOneMemory() 299 auto loff = acc_.GetOffset(lhs); in MayAccessOneMemory() 307 if (acc_.GetGateType(lhs).Value() != acc_.GetGateType(rhs).Value()) { in MayAccessOneMemory() 317 bool EarlyElimination::CompareOrder(GateRef lhs, GateRe argument 322 CheckReplacement(GateRef lhs, GateRef rhs) CheckReplacement() argument 427 CheckRenameReplacement(GateRef lhs, GateRef rhs) CheckRenameReplacement() argument 480 auto lhs = this->head_; Merge() local 522 auto lhs = this->head_; Equals() local [all...] |
H A D | later_elimination.cpp | 140 bool LaterElimination::CheckReplacement(GateRef lhs, GateRef rhs) in CheckReplacement() argument 142 if (!acc_.MetaDataEqu(lhs, rhs)) { in CheckReplacement() 143 if (acc_.GetOpCode(lhs) != acc_.GetOpCode(rhs)) { in CheckReplacement() 147 size_t valueCount = acc_.GetNumValueIn(lhs); in CheckReplacement() 149 if (acc_.GetValueIn(lhs, i) != acc_.GetValueIn(rhs, i)) { in CheckReplacement() 153 auto opcode = acc_.GetOpCode(lhs); in CheckReplacement() 158 if (acc_.GetIndex(lhs) != acc_.GetIndex(rhs)) { in CheckReplacement() 164 if (acc_.GetJSType(lhs) != acc_.GetJSType(rhs)) { in CheckReplacement() 170 if (acc_.GetSrcType(lhs) != acc_.GetSrcType(rhs)) { in CheckReplacement() 173 if (acc_.GetDstType(lhs) ! in CheckReplacement() [all...] |
H A D | number_gate_info.h | 217 int32_t TryMul(int32_t lhs, int32_t rhs) const in TryMul() argument 219 if (MaybeMulOverflow(lhs, rhs)) { in TryMul() 222 if (MaybeMulUnderflow(lhs, rhs)) { in TryMul() 225 return lhs * rhs; in TryMul() 243 bool MaybeMulUnderflow(int32_t lhs, int32_t rhs) const in MaybeMulUnderflow() argument 245 return (lhs > 0 && rhs < 0 && rhs < INT32_MIN / lhs) || (lhs < 0 && rhs > 0 && lhs < INT32_MIN / rhs); in MaybeMulUnderflow() 248 bool MaybeMulOverflow(int32_t lhs, int32_ argument [all...] |
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | math_helper.h | 73 inline int32_t SignedDiv32(int32_t lhs, int32_t rhs) in SignedDiv32() argument 79 return lhs == std::numeric_limits<int32_t>::min() ? lhs : -lhs; in SignedDiv32() 81 return lhs / rhs; in SignedDiv32() 84 inline int64_t SignedDiv64(int64_t lhs, int64_t rhs) in SignedDiv64() argument 90 return lhs == std::numeric_limits<int64_t>::min() ? lhs : -lhs; in SignedDiv64() 92 return lhs / rh in SignedDiv64() 95 SignedMod32(int32_t lhs, int32_t rhs) SignedMod32() argument 104 SignedAddOverflow32(int32_t lhs, int32_t rhs, int32_t *val) SignedAddOverflow32() argument 113 SignedSubOverflow32(int32_t lhs, int32_t rhs, int32_t *val) SignedSubOverflow32() argument 121 SignedMulOverflow32(int32_t lhs, int32_t rhs, int32_t *val) SignedMulOverflow32() argument [all...] |
/arkcompiler/runtime_core/static_core/verification/type/ |
H A D | type_type.cpp | 110 void BuildBuiltinLeastUpperBoundsNestedFunction(std::array<uint32_t, Builtin::LAST> const &supertypes, size_t &lhs, in BuildBuiltinLeastUpperBoundsNestedFunction() argument 113 for (size_t rhs = 1; rhs < lhs; rhs++) { in BuildBuiltinLeastUpperBoundsNestedFunction() 115 uint32_t supertype_bits = supertypes[lhs] & supertypes[rhs]; in BuildBuiltinLeastUpperBoundsNestedFunction() 121 result[lhs][rhs] = candidate; in BuildBuiltinLeastUpperBoundsNestedFunction() 122 result[rhs][lhs] = candidate; in BuildBuiltinLeastUpperBoundsNestedFunction() 124 result[lhs][lhs] = Builtin {lhs}; in BuildBuiltinLeastUpperBoundsNestedFunction() 132 for (size_t lhs = 1; lhs < Builti in BuildBuiltinLeastUpperBounds() 463 IsSubtypeImpl(Type lhs, Type rhs, TypeSystem *tsys) IsSubtypeImpl() argument 612 IntersectSpans(Span<Type const> lhs, Span<Type const> rhs, TypeSystem *tsys) IntersectSpans() argument 647 TpIntersection(Type lhs, Type rhs, TypeSystem *tsys) TpIntersection() argument 705 TpUnion(Type lhs, Type rhs, TypeSystem *tsys) TpUnion() argument [all...] |
H A D | type_type.h | 183 static Type IntersectSpans(Span<Type const> lhs, Span<Type const> rhs, TypeSystem *tsys); 185 friend bool IsSubtypeImpl(Type lhs, Type rhs, TypeSystem *tsys); 186 friend Type TpIntersection(Type lhs, Type rhs, TypeSystem *tsys); 187 friend Type TpUnion(Type lhs, Type rhs, TypeSystem *tsys); 189 friend bool operator==(Type lhs, Type rhs); 192 ALWAYS_INLINE inline bool operator==(Type lhs, Type rhs) in operator ==() argument 194 return lhs.content_ == rhs.content_; in operator ==() 197 ALWAYS_INLINE inline bool operator!=(Type lhs, Type rhs) in operator !=() argument 199 return !(lhs == rhs); in operator !=() 202 ALWAYS_INLINE inline bool IsSubtype(Type lhs, Typ argument [all...] |
/arkcompiler/runtime_core/libpandabase/ |
H A D | macros.h | 169 #define ASSERT_OP(lhs, op, rhs) do { \ 170 auto __lhs = lhs; \ 173 std::cerr << "CHECK FAILED: " << #lhs << " " #op " " #rhs << std::endl; \ 182 #define CHECK_LE(lhs, rhs) ASSERT_OP(lhs, <=, rhs) 184 #define CHECK_LT(lhs, rhs) ASSERT_OP(lhs, <, rhs) 186 #define CHECK_GE(lhs, rhs) ASSERT_OP(lhs, >=, rhs) 188 #define CHECK_GT(lhs, rh [all...] |
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | type_converter.cpp | 63 bool operator==(const ValueUnit &lhs, const ValueUnit &rhs) in operator ==() argument 66 if (lhs.GetLiteral() != rhs.GetLiteral()) { in operator ==() 69 if (lhs.GetValue().index() != rhs.GetValue().index()) { in operator ==() 72 if (lhs.GetValue().index() == 0U) { in operator ==() 73 return std::fabs(lhs.GetDoubleValue() - rhs.GetDoubleValue()) < in operator ==() 74 std::pow(NUMERAL_SYSTEM, -std::max(lhs.GetPrecision(), rhs.GetPrecision())); in operator ==() 76 if (lhs.GetValue().index() == 1U) { in operator ==() 77 return lhs.GetUint64Value() == rhs.GetUint64Value(); in operator ==() 82 bool operator!=(const ValueUnit &lhs, const ValueUnit &rhs) in operator !=() argument 84 return !(lhs in operator !=() [all...] |
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | type_converter.cpp | 60 bool operator==(const ValueUnit &lhs, const ValueUnit &rhs) in operator ==() argument 63 if (lhs.GetLiteral() != rhs.GetLiteral()) { in operator ==() 66 if (lhs.GetValue().index() != rhs.GetValue().index()) { in operator ==() 69 if (lhs.GetValue().index() == 0U) { in operator ==() 70 return std::fabs(lhs.GetDoubleValue() - rhs.GetDoubleValue()) < in operator ==() 71 std::pow(NUMERAL_SYSTEM, -std::max(lhs.GetPrecision(), rhs.GetPrecision())); in operator ==() 73 if (lhs.GetValue().index() == 1U) { in operator ==() 74 return lhs.GetUint64Value() == rhs.GetUint64Value(); in operator ==() 79 bool operator!=(const ValueUnit &lhs, const ValueUnit &rhs) in operator !=() argument 81 return !(lhs in operator !=() [all...] |
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | serializer_test.cpp | 77 bool operator==(const PodStruct &lhs, const PodStruct &rhs) in operator ==() argument 79 return lhs.a == rhs.a && lhs.b == rhs.b && lhs.c == rhs.c && lhs.d == rhs.d && lhs.e == rhs.e && lhs.f == rhs.f; in operator ==() 165 bool operator==(const TestStruct &lhs, const TestStruct &rhs) in operator ==() argument 167 return lhs.a == rhs.a && lhs in operator ==() [all...] |
/arkcompiler/runtime_core/static_core/verification/value/ |
H A D | abstract_typed_value.h | 110 friend AbstractTypedValue AtvJoin(AbstractTypedValue const * /* lhs */, AbstractTypedValue const * /* rhs */, 114 inline AbstractTypedValue AtvJoin(AbstractTypedValue const *lhs, AbstractTypedValue const *rhs, TypeSystem *tsys) in AtvJoin() argument 116 if (lhs->origin_.IsValid() && rhs->origin_.IsValid() && lhs->origin_ == rhs->origin_) { in AtvJoin() 117 return {TpUnion(lhs->type_, rhs->GetAbstractType(), tsys), lhs->value_ & rhs->GetAbstractValue(), lhs->origin_}; in AtvJoin() 119 return {TpUnion(lhs->type_, rhs->GetAbstractType(), tsys), lhs->value_ & rhs->GetAbstractValue()}; in AtvJoin()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | branch_elimination.h | 26 Inst *lhs; member 33 return std::tie(obj1.lhs, obj1.rhs) == std::tie(obj2.lhs, obj2.rhs) || in operator ()() 34 std::tie(obj1.lhs, obj1.rhs) == std::tie(obj2.rhs, obj2.lhs); in operator ()() 41 uint32_t hash = std::hash<Inst *> {}(obj.lhs); in operator ()()
|
/arkcompiler/runtime_core/compiler/tests/x86/ |
H A D | asmjit_test.cpp | 62 x86::Gp lhs = a.zax(); in TEST_F() local 70 frame.addDirtyRegs(lhs, rhs); in TEST_F() 73 args.assignAll(lhs, rhs); in TEST_F() 79 a.add(lhs, rhs); in TEST_F() 104 x86::Gp lhs = a.zax(); in TEST_F() local 112 frame.addDirtyRegs(lhs, rhs); in TEST_F() 115 args.assignAll(lhs, rhs); in TEST_F() 121 a.add(lhs, rhs); in TEST_F() 141 typedef size_t (*Func)(size_t lhs, size_t rhs); in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/tests/x86/ |
H A D | asmjit_test.cpp | 61 x86::Gp lhs = a.zax(); in TEST_F() local 69 frame.addDirtyRegs(lhs, rhs); in TEST_F() 72 args.assignAll(lhs, rhs); in TEST_F() 78 a.add(lhs, rhs); in TEST_F() 103 x86::Gp lhs = a.zax(); in TEST_F() local 111 frame.addDirtyRegs(lhs, rhs); in TEST_F() 114 args.assignAll(lhs, rhs); in TEST_F() 120 a.add(lhs, rhs); in TEST_F() 140 typedef size_t (*Func)(size_t lhs, size_t rhs); in TEST_F()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/ |
H A D | std_core_StringBuilder.cpp | 47 EtsString *StdCoreStringBuilderConcatStrings(EtsString *lhs, EtsString *rhs) in StdCoreStringBuilderConcatStrings() argument 49 if (lhs == nullptr || rhs == nullptr) { in StdCoreStringBuilderConcatStrings() 50 // GetNullString()-call below may trigger GC and move lhs/rhs args, need to hold them in StdCoreStringBuilderConcatStrings() 53 VMHandle<EtsString> lhsHandle(thread, lhs == nullptr ? nullptr : lhs->GetCoreType()); in StdCoreStringBuilderConcatStrings() 59 lhs = lhsHandle.GetPtr(); in StdCoreStringBuilderConcatStrings() 62 lhs = lhs == nullptr ? nullString : lhs; in StdCoreStringBuilderConcatStrings() 65 return EtsString::Concat(lhs, rh in StdCoreStringBuilderConcatStrings() [all...] |
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | serializer_test.cpp | 80 bool operator==(const PodStruct &lhs, const PodStruct &rhs) in operator ==() argument 82 return lhs.a == rhs.a && lhs.b == rhs.b && lhs.c == rhs.c && lhs.d == rhs.d && lhs.e == rhs.e && lhs.f == rhs.f; in operator ==() 170 bool operator==(const TestStruct &lhs, const TestStruct &rhs) in operator ==() argument 172 return lhs.a == rhs.a && lhs in operator ==() [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | reg_alloc_lsra.h | 299 bool operator()(const LiveInterval *lhs, const LiveInterval *rhs) const in operator ()() 301 CHECK_NULL_FATAL(lhs); in operator ()() 304 if (lhs == rhs) { in operator ()() 307 if (lhs->GetFirstDef() == rhs->GetFirstDef() && lhs->GetLastUse() == rhs->GetLastUse() && in operator ()() 308 lhs->GetRegNO() == rhs->GetRegNO() && lhs->GetRegType() == rhs->GetRegType() && in operator ()() 309 lhs->GetAssignedReg() == rhs->GetAssignedReg()) { in operator ()() 312 if (lhs->GetFirstDef() == rhs->GetFirstDef() && lhs in operator ()() [all...] |
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | graph_checker_macros.h | 25 #define CHECKER_EQ(lhs, rhs) CHECK_EQ(lhs, rhs) 63 #define ABCKIT_CHECK_EQ(lhs, rhs) \ 64 if (UNLIKELY(!(lhs == rhs))) { \ 69 #define CHECKER_EQ(lhs, rhs) \ 71 ABCKIT_CHECK_EQ((lhs), (rhs)); \ 73 CHECK_EQ(lhs, rhs); \
|