• Home
  • Raw
  • Download

Lines Matching refs:out_buffer_

49       : converter_(converter), out_buffer_(out_buffer), out_buffer_pos_(0) {  in Decoder()
50 out_buffer_[out_buffer_pos_] = '\0'; in Decoder()
163 v8::internal::Vector<char> out_buffer_; member in v8::internal::Decoder
174 void Decoder::PrintChar(const char ch) { out_buffer_[out_buffer_pos_++] = ch; } in PrintChar()
179 while (cur != '\0' && (out_buffer_pos_ < (out_buffer_.length() - 1))) { in Print()
183 out_buffer_[out_buffer_pos_] = 0; in Print()
254 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", sa); in PrintSa()
260 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", sa); in PrintLsaSa()
266 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", sd); in PrintSd()
272 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", msbd + 1); in PrintSs1()
281 SNPrintF(out_buffer_ + out_buffer_pos_, "%d", msb - lsb + 1); in PrintSs2()
288 SNPrintF(out_buffer_ + out_buffer_pos_, "%d", msbdminus32 + 32 + 1); in PrintSs3()
296 SNPrintF(out_buffer_ + out_buffer_pos_, "%d", msbminus32 + 32 - lsb + 1); in PrintSs4()
303 SNPrintF(out_buffer_ + out_buffer_pos_, "%d", lsbminus32 + 32); in PrintSs5()
309 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", cc); in PrintBc()
315 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "cc(%d)", cc); in PrintCc()
321 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", imm); in PrintUImm9()
327 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintSImm9()
333 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", imm); in PrintUImm16()
340 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintSImm16()
346 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintXImm16()
355 SNPrintF(out_buffer_ + out_buffer_pos_, "%s", in PrintPCImm16()
364 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintSImm18()
370 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintXImm18()
376 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintXImm19()
385 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm19); in PrintSImm19()
391 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintXImm21()
400 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm21); in PrintSImm21()
412 SNPrintF(out_buffer_ + out_buffer_pos_, "%s", in PrintPCImm21()
423 SNPrintF(out_buffer_ + out_buffer_pos_, "0x%" PRIx64, target); in PrintXImm26()
432 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm26); in PrintSImm26()
444 SNPrintF(out_buffer_ + out_buffer_pos_, "%s", in PrintPCImm26()
457 SNPrintF(out_buffer_ + out_buffer_pos_, "%s", in PrintPCImm26()
463 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", bp2); in PrintBp2()
468 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", bp3); in PrintBp3()
479 SNPrintF(out_buffer_ + out_buffer_pos_, "0x%05x (%d)", code, code); in PrintCode()
490 SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code); in PrintCode()
500 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm); in PrintMsaXImm8()
505 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", imm); in PrintMsaImm8()
510 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", imm); in PrintMsaImm5()
517 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintMsaSImm5()
524 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm); in PrintMsaSImm10()
529 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", m); in PrintMsaImmBit()
534 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%u", n); in PrintMsaImmElm()
542 SNPrintF(out_buffer_ + out_buffer_pos_, "%s, %s[%u]", in PrintMsaCopy()
1014 while ((cur != 0) && (out_buffer_pos_ < (out_buffer_.length() - 1))) { in Format()
1018 out_buffer_[out_buffer_pos_++] = cur; in Format()
1022 out_buffer_[out_buffer_pos_] = '\0'; in Format()
1035 out_buffer_ + out_buffer_pos_, "\n%p %08" PRIx64, in DecodeBreakInstr()
2943 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%08x ", in InstructionDecode()