2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu>
11 * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org>
12 * All rights reserved.
14 * Author: Jack Lange <jarusl@cs.northwestern.edu>
16 * This is free software. You are permitted to use,
17 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
21 #include <palacios/vmm_util.h>
23 #include <palacios/vmm.h>
25 extern struct vmm_os_hooks * os_hooks;
28 void PrintTraceHex(unsigned char x) {
37 void PrintTraceLL(ullong_t num) {
38 unsigned char * z = (unsigned char *)#
41 for (i = 7; i >= 0; i--) {
42 PrintTraceHex(*(z + i));
47 void PrintTraceMemDump(uchar_t * start, int n) {
50 for (i = 0; i < n; i += 16) {
51 PrintTrace("%8x", (start + i));
52 for (j = i; (j < (i + 16)) && (j < n); j += 2) {
54 PrintTraceHex(*(uchar_t *)(start + j));
56 PrintTraceHex(*((uchar_t *)(start + j + 1)));
60 for (j = i; (j < (i + 16)) && (j < n); j++) {
61 PrintTrace("%c", ((start[j] >= 32) && (start[j] <= 126)) ? start[j] : '.');