Home | History | Annotate | Download | only in src

Lines Matching full:begin

45 void Disassembler::Dump(FILE* f, byte* begin, byte* end) {
46 for (byte* pc = begin; pc < end; pc++) {
50 pc - begin,
54 reinterpret_cast<uintptr_t>(pc), pc - begin, *pc);
116 byte* begin,
126 byte* pc = begin;
149 "%08x constant pool begin",
160 ptr - begin);
195 out.AddFormatted("%p %4d ", prev_pc, prev_pc - begin);
313 return static_cast<int>(pc - begin);
317 int Disassembler::Decode(FILE* f, byte* begin, byte* end) {
319 return DecodeIt(f, defaultConverter, begin, end);
334 byte* begin = code->instruction_start();
335 byte* end = begin + decode_size;
337 DecodeIt(f, v8NameConverter, begin, end);
342 void Disassembler::Dump(FILE* f, byte* begin, byte* end) {}
343 int Disassembler::Decode(FILE* f, byte* begin, byte* end) { return 0; }