Index: /trunk/src/VBox/Runtime/VBox/strformat-vbox.cpp
===================================================================
--- /trunk/src/VBox/Runtime/VBox/strformat-vbox.cpp	(revision 9223)
+++ /trunk/src/VBox/Runtime/VBox/strformat-vbox.cpp	(revision 9224)
@@ -53,8 +53,9 @@
  *        i.e. a series of space separated bytes formatted as two digit hex value.
  *        Use the width to specify the length. Default length is 16 bytes.
- *      - \%VGp  - Guest context physical address.
- *      - \%VGv  - Guest context virtual address.
- *      - \%VHp  - Host context physical address.
- *      - \%VHv  - Host context virtual address.
+ *      - \%VGp   - Guest context physical address.
+ *      - \%VGv   - Guest context virtual address.
+ *      - \%VRv   - 32 bits guest context virtual address.
+ *      - \%VHp   - Host context physical address.
+ *      - \%VHv   - Host context virtual address.
  *      - \%VI[8|16|32|64] - Signed integer value of the specifed bit count.
  *      - \%VU[8|16|32|64] - Unsigned integer value of the specifed bit count.
@@ -277,4 +278,33 @@
 
             /*
+             * Raw mode types.
+             */
+            case 'R':
+            {
+                /*
+                 * Raw mode types.
+                 */
+                ch = *(*ppszFormat)++;
+                switch (ch)
+                {
+                    case 'v':   /* Virtual address. */
+                    {
+                        RTRCPTR RCPtr = va_arg(*pArgs, RTRCPTR);
+                        switch (sizeof(RCPtr))
+                        {
+                            case 4: return RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%08x", RCPtr);
+                            default: AssertFailed(); return 0;
+                        }
+                    }
+
+                    default:
+                        AssertMsgFailed(("Invalid status code format type '%%VR%c%.10s'!\n", ch, *ppszFormat));
+                        break;
+                }
+                break;
+            }
+
+
+            /*
              * Host types.
              */
