• Home
  • Raw
  • Download

Lines Matching refs:Decoder

48 class Decoder {  class
50 Decoder(const disasm::NameConverter& converter, Vector<char> out_buffer) in Decoder() function in v8::internal::Decoder
55 ~Decoder() {} in ~Decoder()
89 DISALLOW_COPY_AND_ASSIGN(Decoder);
99 void Decoder::PrintChar(const char ch) { out_buffer_[out_buffer_pos_++] = ch; } in PrintChar()
103 void Decoder::Print(const char* str) { in Print()
114 void Decoder::PrintRegister(int reg) { in PrintRegister()
120 void Decoder::PrintDRegister(int reg) { in PrintDRegister()
127 void Decoder::PrintSoftwareInterrupt(SoftwareInterruptCodes svc) { in PrintSoftwareInterrupt()
149 int Decoder::FormatRegister(Instruction* instr, const char* format) { in FormatRegister()
173 int Decoder::FormatFPRegister(Instruction* instr, const char* format) { in FormatFPRegister()
201 int Decoder::FormatOption(Instruction* instr, const char* format) { in FormatOption()
333 void Decoder::Format(Instruction* instr, const char* format) { in Format()
358 void Decoder::Unknown(Instruction* instr) { Format(instr, "unknown"); } in Unknown()
364 void Decoder::UnknownFormat(Instruction* instr, const char* name) { in UnknownFormat()
371 void Decoder::DecodeExt1(Instruction* instr) { in DecodeExt1()
540 void Decoder::DecodeExt2(Instruction* instr) { in DecodeExt2()
886 void Decoder::DecodeExt3(Instruction* instr) { in DecodeExt3()
903 void Decoder::DecodeExt4(Instruction* instr) { in DecodeExt4()
1039 void Decoder::DecodeExt5(Instruction* instr) { in DecodeExt5()
1070 int Decoder::InstructionDecode(byte* instr_ptr) { in InstructionDecode()
1441 v8::internal::Decoder d(converter_, buffer); in InstructionDecode()