31 #include <sys/types.h> 48 std::ostringstream out;
51 const char *
p = format.c_str();
58 bool leftjustify =
false;
62 while (more && *++p) {
81 if (*p >=
'1' && *p <=
'9')
82 width = 10 * width + *p -
'0';
132 out.setf(std::ios::showbase);
150 if (leftjustify && !zero)
151 out.setf(std::ios::left);
155 out << args.get<int64_t>();
157 out << args.get<int32_t>();
160 out << args.get<uint64_t>();
162 out << args.get<uint32_t>();
186 out.setf(std::ios::left);
193 uint64_t
mask = (*p ==
'C') ? 0xffL : 0x7fL;
198 num = args.get<uint64_t>();
199 cwidth =
sizeof(uint64_t);
201 num = args.get<uint32_t>();
202 cwidth =
sizeof(uint32_t);
205 while (cwidth-- > 0) {
206 char c = (char)(num & mask);
214 uint64_t
n = args.get<uint64_t>();
218 out << s <<
": " <<
n;
239 size_t len = strcspn(p,
"%\n\r\0");
virtual PortProxy & getVirtProxy()=0
int printk(std::string &str, ThreadContext *tc, Addr format_ptr, PrintkVarArgs args)
ThreadContext is the external interface to all thread state for anything outside of the CPU...
PortProxy Object Declaration.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
GuestABI::VarArgs< Addr, int32_t, uint32_t, int64_t, uint64_t > PrintkVarArgs
void readString(std::string &str, Addr addr) const
Same as tryReadString, but insists on success.
Bitfield< 31, 29 > format