Searched refs:GetLeft (Results 1 - 6 of 6) sorted by path

/art/compiler/optimizing/
H A Dbounds_check_elimination.cc74 HInstruction* left = bin_op->GetLeft();
961 HInstruction* left = cond->GetLeft();
971 ValueRange* left_range = LookupValueRange(add->GetLeft(), add->GetBlock());
983 HInstruction* left = sub->GetLeft();
1058 HInstruction* left = instruction->GetLeft();
H A Dconstant_folding.cc132 HInstruction* left = instruction->GetLeft();
144 if (instruction->GetLeft()->IsConstant() &&
145 instruction->GetLeft()->AsConstant()->IsArithmeticZero()) {
180 if (instruction->GetLeft()->IsConstant() &&
181 instruction->GetLeft()->AsConstant()->IsArithmeticZero()) {
266 if (instruction->GetLeft()->IsConstant() &&
267 instruction->GetLeft()->AsConstant()->IsArithmeticZero()) {
272 instruction->ReplaceWith(instruction->GetLeft());
279 (instruction->GetLeft() == instruction->GetRight())) {
314 if (instruction->GetLeft()
[all...]
H A Dinstruction_simplifier.cc151 DCHECK(binop->GetLeft()->IsNeg() && binop->GetRight()->IsNeg());
152 HNeg* left_neg = binop->GetLeft()->AsNeg();
185 HInstruction* left = op->GetLeft();
258 sub->GetLeft()->IsConstant() &&
259 (Int64FromConstant(sub->GetLeft()->AsConstant()) & (reg_bits - 1)) == 0);
266 HRor* ror = new (GetGraph()->GetArena()) HRor(ushr->GetType(), ushr->GetLeft(), ushr->GetRight());
286 HInstruction* left = op->GetLeft();
294 ushr->GetLeft() == shl->GetLeft()) {
913 HInstruction* left = instruction->GetLeft();
[all...]
H A Dinstruction_simplifier_shared.cc58 input_b = input_binop->GetLeft();
60 } else if (input_binop->GetLeft()->IsConstant() &&
61 input_binop->GetLeft()->AsConstant()->IsOne()) {
124 HInstruction* binop_left = binop->GetLeft();
141 mul->GetLeft(),
154 mul->GetLeft(),
169 if (mul->GetLeft() == mul->GetRight()) {
173 HInstruction* left = mul->GetLeft();
189 HInstruction* left = op->GetLeft();
H A Dnodes.cc1262 if (GetLeft()->IsIntConstant() && GetRight()->IsIntConstant()) {
1263 return Evaluate(GetLeft()->AsIntConstant(), GetRight()->AsIntConstant());
1264 } else if (GetLeft()->IsLongConstant()) {
1268 return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsIntConstant());
1270 return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsLongConstant());
1272 } else if (GetLeft()->IsNullConstant() && GetRight()->IsNullConstant()) {
1275 return Evaluate(GetLeft()->AsNullConstant(), GetRight()->AsNullConstant());
1277 if (GetLeft()->IsFloatConstant() && GetRight()->IsFloatConstant()) {
1278 return Evaluate(GetLeft()->AsFloatConstant(), GetRight()->AsFloatConstant());
1279 } else if (GetLeft()
[all...]
H A Dnodes.h2947 HInstruction* GetLeft() const { return InputAt(0); } function in class:art::HTryBoundary::HClassTableGet::HBinaryOperation

Completed in 27 milliseconds