Home | History | Annotate | Download | only in optimizing

Lines Matching defs:opb

1250     HInstruction* opb = instruction->InputAt(1);
1252 VectorizeUse(node, opb, generate_code, type, restrictions)) {
1254 GenerateVecOp(instruction, vector_map_->Get(opa), vector_map_->Get(opb), type);
1265 HInstruction* opb = instruction->InputAt(1);
1290 IsInt64AndGet(opb, /*out*/ &distance)) {
1295 GenerateVecOp(instruction, vector_map_->Get(r), opb, type);
1344 HInstruction* opb = instruction->InputAt(1);
1346 HInstruction* s = opb;
1351 !IsNarrowerOperands(opa, opb, type, &r, &s, &is_unsigned)) {
1359 s = opb;
1593 HInstruction* opb,
1602 if (opb != nullptr) {
1604 global_allocator_, base, opa, opb, type, org->GetSideEffects(), vector_length_, dex_pc);
1631 if (opb != nullptr) {
1634 org->InputAt(0), opa, opb, component_type, org->GetSideEffects(), dex_pc);
1747 HInstruction* opb,
1755 DCHECK(opb == nullptr);
1760 DCHECK(opb == nullptr);
1765 DCHECK(opb == nullptr);
1770 DCHECK(opb == nullptr);
1776 new (global_allocator_) HVecAdd(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1777 new (global_allocator_) HAdd(org_type, opa, opb, dex_pc));
1780 new (global_allocator_) HVecSub(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1781 new (global_allocator_) HSub(org_type, opa, opb, dex_pc));
1784 new (global_allocator_) HVecMul(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1785 new (global_allocator_) HMul(org_type, opa, opb, dex_pc));
1788 new (global_allocator_) HVecDiv(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1789 new (global_allocator_) HDiv(org_type, opa, opb, dex_pc));
1792 new (global_allocator_) HVecAnd(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1793 new (global_allocator_) HAnd(org_type, opa, opb, dex_pc));
1796 new (global_allocator_) HVecOr(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1797 new (global_allocator_) HOr(org_type, opa, opb, dex_pc));
1800 new (global_allocator_) HVecXor(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1801 new (global_allocator_) HXor(org_type, opa, opb, dex_pc));
1804 new (global_allocator_) HVecShl(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1805 new (global_allocator_) HShl(org_type, opa, opb, dex_pc));
1808 new (global_allocator_) HVecShr(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1809 new (global_allocator_) HShr(org_type, opa, opb, dex_pc));
1812 new (global_allocator_) HVecUShr(global_allocator_, opa, opb, type, vector_length_, dex_pc),
1813 new (global_allocator_) HUShr(org_type, opa, opb, dex_pc));
1822 DCHECK(opb == nullptr);
1833 opb,
1846 opb,