Searched refs:vB (Results 1 – 5 of 5) sorted by relevance
/tools/dexter/slicer/ |
D | dex_bytecode.cc | 160 dec.vB = InstB(inst); in DecodeInstruction() 164 dec.vB = s4(InstB(inst) << 28) >> 28; // sign extend 4-bit value in DecodeInstruction() 179 dec.vB = bytecode[1]; in DecodeInstruction() 184 dec.vB = s2(bytecode[1]); // sign-extend 16-bit value in DecodeInstruction() 191 dec.vB = bytecode[1]; in DecodeInstruction() 195 dec.vB = bytecode[1] & 0xff; in DecodeInstruction() 200 dec.vB = bytecode[1] & 0xff; in DecodeInstruction() 206 dec.vB = InstB(inst); in DecodeInstruction() 212 dec.vB = InstB(inst); in DecodeInstruction() 221 dec.vB = FetchU4(bytecode + 1); in DecodeInstruction() [all …]
|
D | bytecode_encoder.cc | 150 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local 151 bytecode_.Push<dex::u2>(Pack_4_4_8(vB, vA, opcode)); in Visit() 158 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local 160 bytecode_.Push<dex::u2>(Pack_16(vB)); in Visit() 167 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local 170 bytecode_.Push<dex::u2>(Pack_16(vB)); in Visit() 263 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local 274 bytecode_.Push<dex::u2>(Pack_4_4_8(vB, vA, opcode)); in Visit() 300 dex::u4 vB = GetRegB(bytecode, 1); in Visit() local 303 bytecode_.Push<dex::u2>(Pack_8_8(vC, vB)); in Visit() [all …]
|
D | code_ir.cc | 436 return Alloc<VRegPair>(dex_instr.vB); in GetRegB() 438 return Alloc<VReg>(dex_instr.vB); in GetRegB() 474 instr->operands.push_back(Alloc<Const32>(dex_instr.vB)); in DecodeBytecode() 492 dex::u4 targetOffset = offset + dex::s4(dex_instr.vB); in DecodeBytecode() 542 instr->operands.push_back(GetIndexedOperand(index_type, dex_instr.vB)); in DecodeBytecode() 553 instr->operands.push_back(GetIndexedOperand(index_type, dex_instr.vB)); in DecodeBytecode() 560 instr->operands.push_back(GetIndexedOperand(index_type, dex_instr.vB)); in DecodeBytecode() 567 instr->operands.push_back(Alloc<Const32>(dex_instr.vB << 16)); in DecodeBytecode() 572 instr->operands.push_back(Alloc<Const64>(dex::u8(dex_instr.vB) << 48)); in DecodeBytecode()
|
D | reader.cc | 890 index = dex_instr.vB; in ParseInstructions()
|
/tools/dexter/slicer/export/slicer/ |
D | dex_bytecode.h | 149 u4 vB; // the B field of the instruction member
|