Home | History | Annotate | Download | only in optimizing

Lines Matching defs:opa

1082     HInstruction* opa = nullptr;
1084 if (GenerateCode(info->op_a, nullptr, graph, block, &opa, false, false) &&
1110 e = new (allocator) HMul(type, opa, graph->GetConstant(type, fpow));
1112 e = new (allocator) HDiv(type, opa, graph->GetConstant(type, fpow), kNoDexPc);
1234 HInstruction* opa = nullptr;
1251 if (GenerateCode(info->op_a, trip, graph, block, &opa, in_body, is_min) &&
1257 operation = new (graph->GetAllocator()) HAdd(type, opa, opb); break;
1259 operation = new (graph->GetAllocator()) HSub(type, opa, opb); break;
1261 operation = new (graph->GetAllocator()) HMul(type, opa, opb, kNoDexPc); break;
1263 operation = new (graph->GetAllocator()) HDiv(type, opa, opb, kNoDexPc); break;
1265 operation = new (graph->GetAllocator()) HRem(type, opa, opb, kNoDexPc); break;
1267 operation = new (graph->GetAllocator()) HXor(type, opa, opb); break;
1269 operation = new (graph->GetAllocator()) HLessThan(opa, opb); break;
1271 operation = new (graph->GetAllocator()) HLessThanOrEqual(opa, opb); break;
1273 operation = new (graph->GetAllocator()) HGreaterThan(opa, opb); break;
1275 operation = new (graph->GetAllocator()) HGreaterThanOrEqual(opa, opb); break;
1337 if (GenerateCode(trip, trip, graph, block, &opa, in_body, is_min_a) &&
1343 oper = new (allocator) HAdd(type, opa, opb);
1345 oper = new (graph->GetAllocator()) HSub(type, opb, opa);
1348 new (allocator) HMul(type, graph->GetConstant(type, stride_value), opa);