blob: cb5b4456a3019f3a33e55aebadf4bcc396ac1f47 [file] [log] [blame]
// Copyright (c) 2017, 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.ir.conversion;
import com.android.tools.r8.cf.code.CfInstruction;
import com.android.tools.r8.errors.Unimplemented;
import com.android.tools.r8.graph.CfCode;
import com.android.tools.r8.graph.Code;
import com.android.tools.r8.graph.DexEncodedMethod;
import com.android.tools.r8.graph.DexMethod;
import com.android.tools.r8.ir.code.Argument;
import com.android.tools.r8.ir.code.BasicBlock;
import com.android.tools.r8.ir.code.IRCode;
import com.android.tools.r8.ir.code.Instruction;
import com.android.tools.r8.ir.code.InstructionIterator;
import com.android.tools.r8.ir.code.InstructionListIterator;
import com.android.tools.r8.ir.code.Load;
import com.android.tools.r8.ir.code.Pop;
import com.android.tools.r8.ir.code.StackValue;
import com.android.tools.r8.ir.code.Store;
import com.android.tools.r8.ir.code.Value;
import com.android.tools.r8.ir.code.ValueType;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
public class CfBuilder {
private final DexEncodedMethod method;
private final IRCode code;
private List<CfInstruction> instructions;
public static class StackHelper {
public final DexMethod method;
public StackHelper(DexMethod method) {
this.method = method;
}
public void loadInValues(Instruction instruction, InstructionListIterator it) {
it.previous();
for (int i = 0; i < instruction.inValues().size(); i++) {
Value value = instruction.inValues().get(i);
StackValue stackValue = new StackValue(value.outType());
instruction.replaceValue(value, stackValue);
add(new Load(stackValue, value), instruction, it);
}
it.next();
}
public void storeOutValue(Instruction instruction, InstructionListIterator it) {
StackValue newOutValue = new StackValue(instruction.outType());
Value oldOutValue = instruction.swapOutValue(newOutValue);
add(new Store(oldOutValue, newOutValue), instruction, it);
}
public void popOutValue(ValueType type, Instruction instruction, InstructionListIterator it) {
StackValue newOutValue = new StackValue(type);
instruction.swapOutValue(newOutValue);
add(new Pop(newOutValue), instruction, it);
}
private static void add(
Instruction newInstruction, Instruction existingInstruction, InstructionListIterator it) {
newInstruction.setBlock(existingInstruction.getBlock());
newInstruction.setPosition(existingInstruction.getPosition());
it.add(newInstruction);
}
}
public CfBuilder(DexEncodedMethod method, IRCode code) {
this.method = method;
this.code = code;
}
public Code build() {
try {
loadStoreInsertion();
// TODO(zerny): Optimize load/store patterns.
// TODO(zerny): Compute locals/register allocation.
// TODO(zerny): Compute debug info.
return buildCfCode();
} catch (Unimplemented e) {
System.out.println("Incomplete CF construction: " + e.getMessage());
return method.getCode().asJarCode();
}
}
private void loadStoreInsertion() {
StackHelper stack = new StackHelper(method.method);
for (BasicBlock block : code.blocks) {
InstructionListIterator it = block.listIterator();
while (it.hasNext()) {
Instruction current = it.next();
current.insertLoadAndStores(it, stack);
}
}
}
private CfCode buildCfCode() {
int maxLocalNumber = -1;
int maxStack = 0;
int currentStack = 0;
instructions = new ArrayList<>();
Iterator<BasicBlock> blockIterator = code.listIterator();
while (blockIterator.hasNext()) {
BasicBlock block = blockIterator.next();
InstructionIterator it = block.iterator();
while (it.hasNext()) {
Instruction instruction = it.next();
if (instruction.outValue() != null) {
Value outValue = instruction.outValue();
if (outValue instanceof StackValue) {
++currentStack;
maxStack = Math.max(maxStack, currentStack);
} else {
maxLocalNumber = Math.max(maxLocalNumber, outValue.getNumber());
}
}
for (Value inValue : instruction.inValues()) {
if (inValue instanceof StackValue) {
--currentStack;
}
}
instruction.buildCf(this);
}
}
assert currentStack == 0;
return new CfCode(maxStack, maxLocalNumber + 1, instructions);
}
// Callbacks
public void add(CfInstruction instruction) {
instructions.add(instruction);
}
public void addArgument(Argument argument) {
// Nothing so far.
}
}