Lines Matching refs:Decoder
46 class Decoder { class
48 Decoder(const disasm::NameConverter& converter, in Decoder() function in v8::internal::Decoder
56 ~Decoder() {} in ~Decoder()
139 DISALLOW_COPY_AND_ASSIGN(Decoder);
149 void Decoder::PrintChar(const char ch) { in PrintChar()
155 void Decoder::Print(const char* str) { in Print()
166 void Decoder::PrintRegister(int reg) { in PrintRegister()
171 void Decoder::PrintRs(Instruction* instr) { in PrintRs()
177 void Decoder::PrintRt(Instruction* instr) { in PrintRt()
183 void Decoder::PrintRd(Instruction* instr) { in PrintRd()
190 void Decoder::PrintFPURegister(int freg) { in PrintFPURegister()
195 void Decoder::PrintFPUStatusRegister(int freg) { in PrintFPUStatusRegister()
206 void Decoder::PrintFs(Instruction* instr) { in PrintFs()
212 void Decoder::PrintFt(Instruction* instr) { in PrintFt()
218 void Decoder::PrintFd(Instruction* instr) { in PrintFd()
225 void Decoder::PrintSa(Instruction* instr) { in PrintSa()
232 void Decoder::PrintLsaSa(Instruction* instr) { in PrintLsaSa()
239 void Decoder::PrintSd(Instruction* instr) { in PrintSd()
246 void Decoder::PrintSs1(Instruction* instr) { in PrintSs1()
253 void Decoder::PrintSs2(Instruction* instr) { in PrintSs2()
262 void Decoder::PrintBc(Instruction* instr) { in PrintBc()
269 void Decoder::PrintCc(Instruction* instr) { in PrintCc()
276 void Decoder::PrintUImm16(Instruction* instr) { in PrintUImm16()
283 void Decoder::PrintSImm16(Instruction* instr) { in PrintSImm16()
291 void Decoder::PrintXImm16(Instruction* instr) { in PrintXImm16()
300 void Decoder::PrintPCImm16(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm16()
310 void Decoder::PrintSImm18(Instruction* instr) { in PrintSImm18()
318 void Decoder::PrintXImm18(Instruction* instr) { in PrintXImm18()
325 void Decoder::PrintXImm19(Instruction* instr) { in PrintXImm19()
332 void Decoder::PrintSImm19(Instruction* instr) { in PrintSImm19()
342 void Decoder::PrintXImm21(Instruction* instr) { in PrintXImm21()
349 void Decoder::PrintSImm21(Instruction* instr) { in PrintSImm21()
361 void Decoder::PrintPCImm21(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm21()
374 void Decoder::PrintXImm26(Instruction* instr) { in PrintXImm26()
383 void Decoder::PrintSImm26(Instruction* instr) { in PrintSImm26()
395 void Decoder::PrintPCImm26(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm26()
410 void Decoder::PrintPCImm26(Instruction* instr) { in PrintPCImm26()
420 void Decoder::PrintBp2(Instruction* instr) { in PrintBp2()
426 void Decoder::PrintBp3(Instruction* instr) { in PrintBp3()
433 void Decoder::PrintCode(Instruction* instr) { in PrintCode()
460 void Decoder::PrintFormat(Instruction* instr) { in PrintFormat()
484 void Decoder::PrintInstructionName(Instruction* instr) { in PrintInstructionName()
490 int Decoder::FormatRegister(Instruction* instr, const char* format) { in FormatRegister()
512 int Decoder::FormatFPURegister(Instruction* instr, const char* format) { in FormatFPURegister()
561 int Decoder::FormatOption(Instruction* instr, const char* format) { in FormatOption()
778 void Decoder::Format(Instruction* instr, const char* format) { in Format()
794 void Decoder::Unknown(Instruction* instr) { in Unknown()
799 int Decoder::DecodeBreakInstr(Instruction* instr) { in DecodeBreakInstr()
823 bool Decoder::DecodeTypeRegisterRsType(Instruction* instr) { in DecodeTypeRegisterRsType()
959 void Decoder::DecodeTypeRegisterSRsType(Instruction* instr) { in DecodeTypeRegisterSRsType()
973 void Decoder::DecodeTypeRegisterDRsType(Instruction* instr) { in DecodeTypeRegisterDRsType()
980 void Decoder::DecodeTypeRegisterLRsType(Instruction* instr) { in DecodeTypeRegisterLRsType()
1027 void Decoder::DecodeTypeRegisterWRsType(Instruction* instr) { in DecodeTypeRegisterWRsType()
1074 void Decoder::DecodeTypeRegisterCOP1(Instruction* instr) { in DecodeTypeRegisterCOP1()
1119 void Decoder::DecodeTypeRegisterCOP1X(Instruction* instr) { in DecodeTypeRegisterCOP1X()
1130 void Decoder::DecodeTypeRegisterSPECIAL(Instruction* instr) { in DecodeTypeRegisterSPECIAL()
1428 void Decoder::DecodeTypeRegisterSPECIAL2(Instruction* instr) { in DecodeTypeRegisterSPECIAL2()
1449 void Decoder::DecodeTypeRegisterSPECIAL3(Instruction* instr) { in DecodeTypeRegisterSPECIAL3()
1531 int Decoder::DecodeTypeRegister(Instruction* instr) { in DecodeTypeRegister()
1561 void Decoder::DecodeTypeImmediateCOP1(Instruction* instr) { in DecodeTypeImmediateCOP1()
1582 void Decoder::DecodeTypeImmediateREGIMM(Instruction* instr) { in DecodeTypeImmediateREGIMM()
1615 void Decoder::DecodeTypeImmediate(Instruction* instr) { in DecodeTypeImmediate()
1897 void Decoder::DecodeTypeJump(Instruction* instr) { in DecodeTypeJump()
1915 int Decoder::InstructionDecode(byte* instr_ptr) { in InstructionDecode()
1995 v8::internal::Decoder d(converter_, buffer); in InstructionDecode()