Searched refs:registerCount (Results 1 - 4 of 4) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
H A DRegisterRangeDecodedInstruction.java30 private final int registerCount; field in class:RegisterRangeDecodedInstruction
37 int a, int registerCount) {
41 this.registerCount = registerCount;
46 return registerCount;
58 getTarget(), getLiteral(), a, registerCount);
35 RegisterRangeDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int registerCount) argument
H A DDecodedInstruction.java274 int registerCount = getRegisterCount();
276 if ((registerCount & ~0xffff) != 0) {
278 + Hex.u8(registerCount));
281 return (short) registerCount;
H A DInstructionCodec.java772 int registerCount = nibble3(opcodeUnit);
782 switch (registerCount) {
814 throw new DexException("bogus registerCount: "
815 + Hex.uNibble(registerCount));
836 int registerCount = byte1(opcodeUnit);
843 a, registerCount);
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaMethod.java54 private int registerCount; field in class:SsaMethod
123 this.registerCount = ropMethod.getBlocks().getRegCount();
124 this.spareRegisterBase = registerCount;
291 return registerCount;
322 registerCount = Math.max(registerCount, result + category);
398 registerCount = mapper.getNewRegisterCount();
399 spareRegisterBase = registerCount;
445 useList = new ArrayList[registerCount];
447 for (int i = 0; i < registerCount;
[all...]

Completed in 154 milliseconds