Searched refs:Compute (Results 1 – 6 of 6) sorted by relevance
/art/compiler/optimizing/ |
D | nodes_x86.h | 142 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()
|
D | nodes.h | 3712 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc()); in Evaluate() 3718 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), in Evaluate() 3722 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 3725 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 3742 template <typename T> static bool Compute(T x, T y) { return x == y; } in Compute() function 3759 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc()); in Evaluate() 3765 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 3768 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 3771 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 3788 template <typename T> static bool Compute(T x, T y) { return x != y; } in Compute() function [all …]
|
D | nodes_shared.h | 83 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()
|
D | instruction_simplifier.cc | 2722 return HAdd::Compute<int32_t>(x, y); in ComputeAddition() 2725 return HAdd::Compute<int64_t>(x, y); in ComputeAddition()
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 1781 # Compute the rosalloc bracket index from the size. Since the size is already aligned we can 1854 subu $a3, $a2, $v0 # Compute the remaining buffer size.
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 1705 # Compute the rosalloc bracket index from the size. Since the size is already aligned we can
|