Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


fixed data type for 64 bit instruction form
Jack Lange [Fri, 6 Feb 2009 23:22:35 +0000 (17:22 -0600)]
palacios/include/palacios/vmm_instr_emulator.h

index ebe5ac6..3e9e613 100644 (file)
 
 
 #define MAKE_2OP_64_INST(iname) static inline void iname##64(addr_t * dst, addr_t * src) { \
-    uint32_t tmp_dst = *dst, tmp_src = *src;                           \
+    uint64_t tmp_dst = *dst, tmp_src = *src;                           \
                                                                        \
     asm volatile (                                                     \
         #iname"q %1, %0; "                                             \