| // Copyright (c) 2016, the R8 project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| package com.android.tools.r8.code; |
| |
| import com.android.tools.r8.dex.Constants; |
| import com.android.tools.r8.dex.IndexedItemCollection; |
| import com.android.tools.r8.graph.ObjectToOffsetMapping; |
| import com.android.tools.r8.ir.code.If.Type; |
| import com.android.tools.r8.ir.conversion.IRBuilder; |
| import com.android.tools.r8.naming.ClassNameMapper; |
| import java.nio.ShortBuffer; |
| |
| abstract class Format22t extends Base2Format { |
| |
| public final int A; |
| public final int B; |
| public final /* offset */ int CCCC; |
| |
| // vB | vA | op | +CCCC |
| Format22t(int high, BytecodeStream stream) { |
| super(stream); |
| A = high & 0xf; |
| B = (high >> 4) & 0xf; |
| CCCC = readSigned16BitValue(stream); |
| } |
| |
| Format22t(int register1, int register2, int offset) { |
| assert 0 <= register1 && register1 <= Constants.U4BIT_MAX; |
| assert 0 <= register2 && register2 <= Constants.U4BIT_MAX; |
| assert Short.MIN_VALUE <= offset && offset <= Short.MAX_VALUE; |
| A = register1; |
| B = register2; |
| CCCC = offset; |
| } |
| |
| public void write(ShortBuffer dest, ObjectToOffsetMapping mapping) { |
| writeFirst(B, A, dest); |
| write16BitValue(CCCC, dest); |
| } |
| |
| public final int hashCode() { |
| return ((CCCC << 8) | (B << 4) | A) ^ getClass().hashCode(); |
| } |
| |
| public final boolean equals(Object other) { |
| if (other == null || this.getClass() != other.getClass()) { |
| return false; |
| } |
| Format22t o = (Format22t) other; |
| return o.A == A && o.B == B && o.CCCC == CCCC; |
| } |
| |
| public abstract Type getType(); |
| |
| @Override |
| public int[] getTargets() { |
| return new int[]{CCCC, getSize()}; |
| } |
| |
| @Override |
| public void buildIR(IRBuilder builder) { |
| int offset = getOffset(); |
| int size = getSize(); |
| builder.addIf(getType(), A, B, offset + CCCC, offset + size); |
| } |
| |
| public String toString(ClassNameMapper naming) { |
| return formatString("v" + A + ", v" + B + ", +" + CCCC + " (" + (getOffset() + CCCC) + ")"); |
| } |
| |
| public String toSmaliString(ClassNameMapper naming) { |
| return formatSmaliString("v" + A + ", v" + B + ", :label_" + (getOffset() + CCCC)); |
| } |
| |
| @Override |
| public void collectIndexedItems(IndexedItemCollection indexedItems) { |
| // No references. |
| } |
| } |