Home
last modified time | relevance | path

Searched refs:vA (Results 1 – 4 of 4) sorted by relevance

/tools/dexter/slicer/
Ddex_bytecode.cc161 dec.vA = InstA(inst); in DecodeInstruction()
165 dec.vA = InstA(inst); in DecodeInstruction()
169 dec.vA = InstAA(inst); in DecodeInstruction()
172 dec.vA = s1(InstAA(inst)); // sign-extend 8-bit value in DecodeInstruction()
175 dec.vA = s2(bytecode[1]); // sign-extend 16-bit value in DecodeInstruction()
180 dec.vA = InstAA(inst); in DecodeInstruction()
185 dec.vA = InstAA(inst); in DecodeInstruction()
189 dec.vA = InstAA(inst); in DecodeInstruction()
196 dec.vA = InstAA(inst); in DecodeInstruction()
201 dec.vA = InstAA(inst); in DecodeInstruction()
[all …]
Dbytecode_encoder.cc152 dex::u4 vA = GetRegA(bytecode, 0); in Visit() local
154 bytecode_.Push<dex::u2>(Pack_4_4_8(vB, vA, opcode)); in Visit()
160 dex::u4 vA = GetRegA(bytecode, 0); in Visit() local
162 bytecode_.Push<dex::u2>(Pack_8_8(vA, opcode)); in Visit()
169 dex::u4 vA = GetRegA(bytecode, 0); in Visit() local
172 bytecode_.Push<dex::u2>(Pack_16(vA)); in Visit()
179 dex::u4 vA = GetRegA(bytecode, 0); in Visit() local
181 bytecode_.Push<dex::u2>(Pack_4_4_8(B, vA, opcode)); in Visit()
187 dex::u4 vA = GetRegA(bytecode, 0); in Visit() local
189 bytecode_.Push<dex::u2>(Pack_8_8(vA, opcode)); in Visit()
[all …]
Dcode_ir.cc426 return Alloc<VRegPair>(dex_instr.vA); in GetRegA()
428 return Alloc<VReg>(dex_instr.vA); in GetRegA()
484 auto label = GetLabel(offset + dex::s4(dex_instr.vA)); in DecodeBytecode()
546 SLICER_CHECK_LE(dex_instr.vA, 5); in DecodeBytecode()
548 for (dex::u4 i = 0; i < dex_instr.vA; ++i) { in DecodeBytecode()
557 auto vreg_range = Alloc<VRegRange>(dex_instr.vC, dex_instr.vA); in DecodeBytecode()
565 SLICER_CHECK_LE(dex_instr.vA, 5); in DecodeBytecode()
567 if (dex_instr.vA > 1) { in DecodeBytecode()
571 for (dex::u4 i = 1; i < dex_instr.vA; ++i) { in DecodeBytecode()
583 auto vreg_range = Alloc<VRegRange>(dex_instr.vC, dex_instr.vA); in DecodeBytecode()
/tools/dexter/slicer/export/slicer/
Ddex_bytecode.h125 u4 vA; // the A field of the instruction member