Searched refs:vB (Results 1 – 5 of 5) sorted by relevance
/tools/dexter/slicer/ |
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 | dex_bytecode.cc | 764 dec.vB = InstB(inst); in DecodeInstruction() 768 dec.vB = s4(InstB(inst) << 28) >> 28; // sign extend 4-bit value in DecodeInstruction() 783 dec.vB = bytecode[1]; in DecodeInstruction() 788 dec.vB = s2(bytecode[1]); // sign-extend 16-bit value in DecodeInstruction() 795 dec.vB = bytecode[1]; in DecodeInstruction() 799 dec.vB = bytecode[1] & 0xff; in DecodeInstruction() 804 dec.vB = bytecode[1] & 0xff; in DecodeInstruction() 810 dec.vB = InstB(inst); in DecodeInstruction() 816 dec.vB = InstB(inst); in DecodeInstruction() 825 dec.vB = FetchU4(bytecode + 1); in DecodeInstruction() [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 | 365 u4 vB; // the B field of the instruction member
|