Home
last modified time | relevance | path

Searched refs:vB (Results 1 – 5 of 5) sorted by relevance

/tools/dexter/slicer/
Ddex_bytecode.cc162 dec.vB = InstB(inst); in DecodeInstruction()
166 dec.vB = s4(InstB(inst) << 28) >> 28; // sign extend 4-bit value in DecodeInstruction()
181 dec.vB = bytecode[1]; in DecodeInstruction()
186 dec.vB = s2(bytecode[1]); // sign-extend 16-bit value in DecodeInstruction()
193 dec.vB = bytecode[1]; in DecodeInstruction()
197 dec.vB = bytecode[1] & 0xff; in DecodeInstruction()
202 dec.vB = bytecode[1] & 0xff; in DecodeInstruction()
208 dec.vB = InstB(inst); in DecodeInstruction()
214 dec.vB = InstB(inst); in DecodeInstruction()
223 dec.vB = FetchU4(bytecode + 1); in DecodeInstruction()
[all …]
Dbytecode_encoder.cc153 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local
154 bytecode_.Push<dex::u2>(Pack_4_4_8(vB, vA, opcode)); in Visit()
161 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local
163 bytecode_.Push<dex::u2>(Pack_16(vB)); in Visit()
170 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local
173 bytecode_.Push<dex::u2>(Pack_16(vB)); in Visit()
266 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local
277 bytecode_.Push<dex::u2>(Pack_4_4_8(vB, vA, opcode)); in Visit()
303 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local
306 bytecode_.Push<dex::u2>(Pack_8_8(vC, vB)); in Visit()
[all …]
Dcode_ir.cc435 return Alloc<VRegPair>(dex_instr.vB); in GetRegB()
437 return Alloc<VReg>(dex_instr.vB); in GetRegB()
473 instr->operands.push_back(Alloc<Const32>(dex_instr.vB)); in DecodeBytecode()
491 dex::u4 targetOffset = offset + dex::s4(dex_instr.vB); in DecodeBytecode()
541 instr->operands.push_back(GetIndexedOperand(index_type, dex_instr.vB)); in DecodeBytecode()
552 instr->operands.push_back(GetIndexedOperand(index_type, dex_instr.vB)); in DecodeBytecode()
559 instr->operands.push_back(GetIndexedOperand(index_type, dex_instr.vB)); in DecodeBytecode()
575 instr->operands.push_back(GetIndexedOperand(index_type, dex_instr.vB)); in DecodeBytecode()
585 instr->operands.push_back(GetIndexedOperand(index_type, dex_instr.vB)); in DecodeBytecode()
595 instr->operands.push_back(Alloc<Const32>(dex_instr.vB << 16)); in DecodeBytecode()
[all …]
Dreader.cc948 index = dex_instr.vB; in ParseInstructions()
953 index = dex_instr.vB; in ParseInstructions()
/tools/dexter/slicer/export/slicer/
Ddex_bytecode.h126 u4 vB; // the B field of the instruction member