Searched refs:vregB (Results 1 - 25 of 34) sorted by relevance

12

/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
H A DFormat51l.java29 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));
53 return insn.vregB;
58 insn.vregB = constant;
H A DFormat11n.java28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
49 return insn.vregB;
54 insn.vregB = constant;
H A DFormat21h.java29 file.writeUShort((short) insn.vregB);
50 return insn.vregB;
55 insn.vregB = constant;
H A DFormat21s.java29 file.writeUShort((short) insn.vregB);
50 return insn.vregB;
55 insn.vregB = constant;
H A DFormat21t.java29 file.writeUShort((short) insn.vregB);
50 return insn.vregB;
55 insn.vregB = target;
H A DFormat31c.java30 file.writeUInt((int) insn.vregB);
56 return (int) insn.vregB;
61 insn.vregB = poolIndex;
H A DFormat31i.java29 file.writeUInt((int) insn.vregB);
50 return insn.vregB;
55 insn.vregB = constant;
H A DFormat31t.java29 file.writeUInt((int) insn.vregB);
50 return insn.vregB;
55 insn.vregB = target;
H A DFormat21c.java31 file.writeUShort((short) insn.vregB);
57 return (int) insn.vregB;
62 insn.vregB = poolIndex;
H A DFormat35c.java31 file.writeUShort((short) insn.vregB);
60 return (int) insn.vregB;
65 insn.vregB = poolIndex;
H A DFormat3rc.java31 file.writeUShort((short) insn.vregB);
53 return (int) insn.vregB;
58 insn.vregB = poolIndex;
H A DFormat12x.java28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
H A DFormat20bc.java33 file.writeUShort((short) insn.vregB);
H A DFormat22x.java29 file.writeUShort((short) insn.vregB);
H A DFormat22b.java29 file.writeByte((byte) insn.vregB);
H A DFormat22s.java28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
H A DFormat22t.java28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
H A DFormat23x.java29 file.writeByte((byte) insn.vregB);
H A DFormat32x.java30 file.writeUShort((short) insn.vregB);
H A DFormat35mi.java29 file.writeUShort((short) insn.vregB);
H A DFormat35ms.java29 file.writeUShort((short) insn.vregB);
H A DFormat3rmi.java29 file.writeUShort((short) insn.vregB);
H A DFormat3rms.java29 file.writeUShort((short) insn.vregB);
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DCodeItem.java154 if (insn.vregB >= insertedIdx) {
155 insn.vregB++;
166 if (insn.vregB >= insertedIdx) {
167 insn.vregB++;
179 if (insn.vregB >= insertedIdx) {
180 insn.vregB++;
194 if (insn.vregB >= insertedIdx) {
195 insn.vregB++;
/art/runtime/verifier/
H A Dregister_line.cc236 const uint32_t vregB = inst->VRegB_23x(); local
238 if (VerifyRegisterType(verifier, vregB, src_type1) &&
242 if (GetRegisterType(verifier, vregB).IsBooleanTypes() &&
275 const uint32_t vregB = inst->VRegB_12x(); local
277 VerifyRegisterType(verifier, vregB, src_type2)) {
281 GetRegisterType(verifier, vregB).IsBooleanTypes()) {
295 const uint32_t vregB = inst->VRegB_12x(); local
297 VerifyRegisterTypeWide(verifier, vregB, src_type2_1, src_type2_2)) {
306 const uint32_t vregB = inst->VRegB_12x(); local
308 VerifyRegisterType(verifier, vregB, int_typ
317 const uint32_t vregB = is_lit16 ? inst->VRegB_22s() : inst->VRegB_22b(); local
[all...]

Completed in 369 milliseconds

12