Home
last modified time | relevance | path

Searched refs:Compute (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dnodes_x86.h142 template <typename T> static T Compute(T x, T y) { return ~x & y; } in Compute() function
146 Compute(x->GetValue(), y->GetValue()), GetDexPc()); in Evaluate()
150 Compute(x->GetValue(), y->GetValue()), GetDexPc()); in Evaluate()
179 auto Compute(T x) const -> decltype(x & (x-1)) {
194 return GetBlock()->GetGraph()->GetIntConstant(Compute(x->GetValue()), GetDexPc()); in Evaluate()
197 return GetBlock()->GetGraph()->GetLongConstant(Compute(x->GetValue()), GetDexPc()); in Evaluate()
Dnodes.h3784 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc()); in Evaluate()
3790 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), in Evaluate()
3794 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
3797 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
3814 template <typename T> static bool Compute(T x, T y) { return x == y; } in Compute() function
3831 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc()); in Evaluate()
3837 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
3840 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
3843 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
3860 template <typename T> static bool Compute(T x, T y) { return x != y; } in Compute() function
[all …]
Dnodes_shared.h83 auto Compute(T x, U y) const -> decltype(x & ~y) {
102 Compute(x->GetValue(), y->GetValue()), GetDexPc()); in Evaluate()
106 Compute(x->GetValue(), y->GetValue()), GetDexPc()); in Evaluate()
Dinstruction_simplifier.cc2833 return HAdd::Compute<int32_t>(x, y); in ComputeAddition()
2836 return HAdd::Compute<int64_t>(x, y); in ComputeAddition()