Searched refs:get (Results 76 - 100 of 296) sorted by relevance

1234567891011>>

/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DBasicBlock.java79 Rop one = insns.get(i).getOpcode();
86 Insn lastInsn = insns.get(sz - 1);
186 int succ = successors.get(0);
188 succ = successors.get(1);
196 * convenient shorthand for {@code getInsns().get(0)}.
201 return insns.get(0);
H A DLocalVariableExtractor.java121 Insn insn = insns.get(i);
135 && primaryState.get(result.getReg()) != null) {
136 primaryState.remove(primaryState.get(result.getReg()));
143 RegisterSpec already = primaryState.get(result);
182 int succ = successors.get(i);
H A DBasicBlockList.java66 public BasicBlock get(int n) { method in class:BasicBlockList
138 Insn insn = insns.get(j);
166 return get(idx);
178 BasicBlock one = get(i);
240 return labelToBlock(successors.get(0));
247 return labelToBlock(successors.get(0));
288 int label1 = succ1.get(i);
289 int label2 = succ2.get(i);
381 processReg(sources.get(i));
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java48 public Entry get(int n) { method in class:CatchHandlerList
75 Entry entry = get(i);
110 Entry last = get(size - 1);
147 Entry thisEntry = get(i);
148 Entry otherEntry = other.get(i);
H A DArrayData.java122 Constant cst = values.get(i);
129 Constant cst = values.get(i);
136 Constant cst = values.get(i);
143 Constant cst = values.get(i);
174 sb.append(values.get(i).toHuman());
194 sb.append(values.get(i).toHuman());
H A DCatchTable.java49 public Entry get(int n) { method in class:CatchTable
75 Entry thisEntry = get(i);
76 Entry otherEntry = other.get(i);
/dalvik/dx/src/com/android/dx/dex/file/
H A DTypeIdsSection.java56 public IndexedItem get(Constant cst) { method in class:TypeIdsSection
64 IndexedItem result = typeIds.get(type);
110 TypeIdItem result = typeIds.get(type);
134 TypeIdItem result = typeIds.get(typePerSe);
158 TypeIdItem item = typeIds.get(type);
H A DProtoIdsSection.java56 public IndexedItem get(Constant cst) { method in class:ProtoIdsSection
97 ProtoIdItem result = protoIds.get(prototype);
121 ProtoIdItem item = protoIds.get(prototype);
/dalvik/dx/src/com/android/dx/rop/code/
H A DBasicBlock.java79 Rop one = insns.get(i).getOpcode();
86 Insn lastInsn = insns.get(sz - 1);
186 int succ = successors.get(0);
188 succ = successors.get(1);
196 * convenient shorthand for {@code getInsns().get(0)}.
201 return insns.get(0);
H A DLocalVariableExtractor.java121 Insn insn = insns.get(i);
135 && primaryState.get(result.getReg()) != null) {
136 primaryState.remove(primaryState.get(result.getReg()));
143 RegisterSpec already = primaryState.get(result);
182 int succ = successors.get(i);
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
H A DForm35c.java108 int r0 = (sz > 0) ? regs.get(0).getReg() : 0;
109 int r1 = (sz > 1) ? regs.get(1).getReg() : 0;
110 int r2 = (sz > 2) ? regs.get(2).getReg() : 0;
111 int r3 = (sz > 3) ? regs.get(3).getReg() : 0;
112 int r4 = (sz > 4) ? regs.get(4).getReg() : 0;
142 RegisterSpec one = regs.get(i);
179 RegisterSpec one = orig.get(i);
H A DForm3rc.java60 sb.append(regs.get(0).regString());
64 RegisterSpec lastReg = regs.get(size - 1);
73 sb.append(regs.get(0).regString());
128 int first = regs.get(0).getReg();
136 RegisterSpec one = regs.get(i);
165 int lastReg = regs.get(sz - 1).getNextReg();
166 firstReg = regs.get(0).getReg();
H A DForm11n.java49 return regs.get(0).regString() + ", " + literalBitsString(value);
72 unsignedFitsInNibble(regs.get(0).getReg()))) {
102 opcodeUnit(insn, makeByte(regs.get(0).getReg(), value & 0xf)));
H A DForm21s.java49 return regs.get(0).regString() + ", " + literalBitsString(value);
71 unsignedFitsInByte(regs.get(0).getReg()))) {
101 opcodeUnit(insn, regs.get(0).getReg()),
H A DForm31i.java49 return regs.get(0).regString() + ", " + literalBitsString(value);
71 unsignedFitsInByte(regs.get(0).getReg()))) {
99 opcodeUnit(insn, regs.get(0).getReg()),
H A DForm51l.java50 return regs.get(0).regString() + ", " + literalBitsString(value);
72 unsignedFitsInByte(regs.get(0).getReg()))) {
96 opcodeUnit(insn, regs.get(0).getReg()),
/dalvik/dx/src/com/android/dx/ssa/
H A DLocalVariableExtractor.java106 SsaBasicBlock block = blocks.get(blockIndex);
122 SsaInsn lastInsn = insns.get(insnSz - 1);
142 SsaInsn insn = insns.get(i);
152 if (result != null && primaryState.get(result.getReg()) != null) {
153 primaryState.remove(primaryState.get(result.getReg()));
160 RegisterSpec already = primaryState.get(result);
199 int succ = successors.get(i);
H A DLiteralOpUpgrader.java112 if (isConstIntZeroOrKnownNull(sources.get(0))) {
115 } else if (isConstIntZeroOrKnownNull(sources.get(1))) {
120 opcode, sources.get(0), sources.get(1))) {
124 opcode, sources.get(1), sources.get(0))) {
131 sources.get(1), sources.get(0)));
163 ssaMeth.getBlocks().get(pred).getInsns();
165 (NormalSsaInsn) predInsns.get(predInsn
[all...]
H A DInterferenceRegisterMapper.java88 IntSet existing = newRegInterference.get(newReg);
128 oldReg, newRegInterference.get(newReg));
148 RegisterSpec oldSpec = oldSpecs.get(i);
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopper.java199 * For each subroutine caller, get it's target. If the
207 successors.add(subCaller.getSuccessors().get(0));
227 int succLabel = subCaller.getSuccessors().get(0);
448 BasicBlock one = result.get(i);
472 return result.get(idx);
495 * original get removed as a result of calling this method.
574 BasicBlock block = result.get(idx);
582 int label = successors.get(i);
606 bbl.set(i, result.get(i));
709 int subroutineLabel = successors.get(
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DArrayData.java122 Constant cst = values.get(i);
129 Constant cst = values.get(i);
136 Constant cst = values.get(i);
143 Constant cst = values.get(i);
174 sb.append(values.get(i).toHuman());
194 sb.append(values.get(i).toHuman());
H A DCatchTable.java49 public Entry get(int n) { method in class:CatchTable
75 Entry thisEntry = get(i);
76 Entry otherEntry = other.get(i);
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DProtoIdsSection.java56 public IndexedItem get(Constant cst) { method in class:ProtoIdsSection
97 ProtoIdItem result = protoIds.get(prototype);
121 ProtoIdItem item = protoIds.get(prototype);
H A DHeaderSection.java48 public IndexedItem get(Constant cst) { method in class:HeaderSection
H A DStringIdsSection.java59 public IndexedItem get(Constant cst) { method in class:StringIdsSection
70 IndexedItem result = strings.get((CstUtf8) cst);
146 StringIdItem already = strings.get(value);
180 StringIdItem s = strings.get(string);

Completed in 2149 milliseconds

1234567891011>>