Lines Matching refs:Decoder
74 class Decoder { class
76 Decoder(const disasm::NameConverter& converter, in Decoder() function in v8::internal::Decoder
84 ~Decoder() {} in ~Decoder()
136 DISALLOW_COPY_AND_ASSIGN(Decoder);
146 void Decoder::PrintChar(const char ch) { in PrintChar()
152 void Decoder::Print(const char* str) { in Print()
163 void Decoder::PrintRegister(int reg) { in PrintRegister()
168 void Decoder::PrintRs(Instruction* instr) { in PrintRs()
174 void Decoder::PrintRt(Instruction* instr) { in PrintRt()
180 void Decoder::PrintRd(Instruction* instr) { in PrintRd()
187 void Decoder::PrintFPURegister(int freg) { in PrintFPURegister()
192 void Decoder::PrintFs(Instruction* instr) { in PrintFs()
198 void Decoder::PrintFt(Instruction* instr) { in PrintFt()
204 void Decoder::PrintFd(Instruction* instr) { in PrintFd()
211 void Decoder::PrintSa(Instruction* instr) { in PrintSa()
218 void Decoder::PrintSd(Instruction* instr) { in PrintSd()
225 void Decoder::PrintSs1(Instruction* instr) { in PrintSs1()
232 void Decoder::PrintSs2(Instruction* instr) { in PrintSs2()
241 void Decoder::PrintBc(Instruction* instr) { in PrintBc()
248 void Decoder::PrintCc(Instruction* instr) { in PrintCc()
255 void Decoder::PrintUImm16(Instruction* instr) { in PrintUImm16()
262 void Decoder::PrintSImm16(Instruction* instr) { in PrintSImm16()
269 void Decoder::PrintXImm16(Instruction* instr) { in PrintXImm16()
276 void Decoder::PrintXImm26(Instruction* instr) { in PrintXImm26()
283 void Decoder::PrintCode(Instruction* instr) { in PrintCode()
311 void Decoder::PrintInstructionName(Instruction* instr) { in PrintInstructionName()
317 int Decoder::FormatRegister(Instruction* instr, const char* format) { in FormatRegister()
339 int Decoder::FormatFPURegister(Instruction* instr, const char* format) { in FormatFPURegister()
364 int Decoder::FormatOption(Instruction* instr, const char* format) { in FormatOption()
441 void Decoder::Format(Instruction* instr, const char* format) { in Format()
457 void Decoder::Unknown(Instruction* instr) { in Unknown()
462 void Decoder::DecodeTypeRegister(Instruction* instr) { in DecodeTypeRegister()
798 void Decoder::DecodeTypeImmediate(Instruction* instr) { in DecodeTypeImmediate()
926 void Decoder::DecodeTypeJump(Instruction* instr) { in DecodeTypeJump()
941 int Decoder::InstructionDecode(byte* instr_ptr) { in InstructionDecode()
1022 v8::internal::Decoder d(converter_, buffer); in InstructionDecode()