Home | History | Annotate | Download | only in arm

Lines Matching full:disassembler

28 // A Disassembler object is used to disassemble a block of code instruction by
35 // Disassembler d(converter);
44 // The Disassembler class also has a convenience method to disassemble a block
46 // achieved by just calling Disassembler::Disassemble(stdout, begin, end);
172 // These condition names are defined in a way to match the native disassembler
204 // These shift names are defined in a way to match the native disassembler
712 // The disassembler may end up decoding data inlined in the code. We do not want
721 // For currently unimplemented decodings the disassembler calls Unknown(instr)
1776 Disassembler::Disassembler(const NameConverter& converter)
1780 Disassembler::~Disassembler() {}
1783 int Disassembler::InstructionDecode(v8::internal::Vector<char> buffer,
1790 int Disassembler::ConstantPoolSizeAt(byte* instruction) {
1795 void Disassembler::Disassemble(FILE* f, byte* begin, byte* end) {
1797 Disassembler d(converter);