Searched refs:insn (Results 1 - 25 of 69) sorted by relevance

123

/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
H A DContainsTarget.java26 public long getTarget(Instruction insn); argument
28 public void setTarget(Instruction insn, long target); argument
H A DFormat22b.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeByte((byte) insn.vregB);
30 file.writeByte((byte) insn.vregC);
50 public long getConst(Instruction insn) { argument
51 return insn.vregC;
55 public void setConst(Instruction insn, long constant) { argument
56 insn.vregC = constant;
H A DFormat22s.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
29 file.writeUShort((short) insn.vregC);
49 public long getConst(Instruction insn) { argument
50 return insn.vregC;
54 public void setConst(Instruction insn, long constant) { argument
55 insn.vregC = constant;
H A DFormat22t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
29 file.writeUShort((short) insn.vregC);
49 public long getTarget(Instruction insn) { argument
50 return insn.vregC;
54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregC = target;
H A DFormat35mi.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
29 file.writeUShort((short) insn.vregB);
30 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
31 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
32 | insn.invokeFormatInfo.vregE));
H A DFormat35ms.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
29 file.writeUShort((short) insn.vregB);
30 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
31 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
32 | insn.invokeFormatInfo.vregE));
H A DFormat35c.java28 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
29 file.writeByte((byte) insn.info.value);
30 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
31 file.writeUShort((short) insn.vregB);
32 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
33 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
34 | insn.invokeFormatInfo.vregE));
59 public int getPoolIndex(Instruction insn) { argument
64 setPoolIndex(Instruction insn, int poolIndex) argument
[all...]
H A DContainsConst.java27 public long getConst(Instruction insn); argument
29 public void setConst(Instruction insn, long constant); argument
H A DFormat11n.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
48 public long getConst(Instruction insn) { argument
49 return insn.vregB;
53 public void setConst(Instruction insn, long constant) { argument
54 insn.vregB = constant;
H A DFormat21h.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
49 public long getConst(Instruction insn) { argument
50 return insn.vregB;
54 public void setConst(Instruction insn, long constant) { argument
55 insn.vregB = constant;
H A DFormat21s.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
49 public long getConst(Instruction insn) { argument
50 return insn.vregB;
54 public void setConst(Instruction insn, long constant) { argument
55 insn.vregB = constant;
H A DFormat21t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
49 public long getTarget(Instruction insn) { argument
50 return insn.vregB;
54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregB = target;
H A DFormat31c.java27 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
28 file.writeByte((byte) insn.info.value);
29 file.writeByte((byte) insn.vregA);
30 file.writeUInt((int) insn.vregB);
55 public int getPoolIndex(Instruction insn) { argument
56 return (int) insn.vregB;
60 public void setPoolIndex(Instruction insn, int poolIndex) { argument
61 insn.vregB = poolIndex;
H A DFormat31i.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUInt((int) insn.vregB);
49 public long getConst(Instruction insn) { argument
50 return insn.vregB;
54 public void setConst(Instruction insn, long constant) { argument
55 insn.vregB = constant;
H A DFormat31t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUInt((int) insn.vregB);
49 public long getTarget(Instruction insn) { argument
50 return insn.vregB;
54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregB = target;
H A DFormat51l.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) (insn.vregB & 0xffff));
30 file.writeUShort((short) ((insn.vregB & 0xffff0000) >> 16));
31 file.writeUShort((short) ((insn.vregB & 0xffff00000000L) >> 32));
32 file.writeUShort((short) ((insn.vregB & 0xffff000000000000L) >> 48));
52 public long getConst(Instruction insn) { argument
53 return insn.vregB;
57 public void setConst(Instruction insn, lon argument
[all...]
H A DFormat10t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
48 public long getTarget(Instruction insn) { argument
49 return insn.vregA;
53 public void setTarget(Instruction insn, long target) { argument
54 insn.vregA = target;
H A DFormat20t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
29 file.writeUShort((short) insn.vregA);
49 public long getTarget(Instruction insn) { argument
50 return insn.vregA;
54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregA = target;
H A DFormat30t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
29 file.writeUInt((int) insn.vregA);
49 public long getTarget(Instruction insn) { argument
50 return insn.vregA;
54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregA = target;
H A DFormat12x.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
H A DFormat20bc.java30 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
31 file.writeByte((byte) insn.info.value);
32 file.writeByte((byte) insn.vregA);
33 file.writeUShort((short) insn.vregB);
H A DFormat22x.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
/art/tools/dexfuzz/src/dexfuzz/program/
H A DMBranchInsn.java33 newInsn.insn = insn.clone();
H A DMInsnWithData.java33 newInsn.insn = insn.clone();
H A DMInsn.java29 public Instruction insn; field in class:MInsn
48 newInsn.insn = insn.clone();
62 insn.toString());

Completed in 176 milliseconds

123