Fix linux-x86_64 build.

Fix various 64-bitness issues in the source code to
make the --try-64 option work again on Linux. Note that
the generated binary is not faster than its 32-bit variant
when it comes to benchmarking the boot sequence.

Change-Id: Iad248e033757d4cd25524a438a5dbe1cf3aca6cf
diff --git a/tcg/tcg.c b/tcg/tcg.c
index 2fe9964..a57edb1 100644
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -1125,7 +1125,7 @@
     /* sanity check */
     if (gen_opc_ptr - gen_opc_buf > OPC_BUF_SIZE) {
         fprintf(stderr, "PANIC: too many opcodes generated (%d > %d)\n",
-                gen_opc_ptr - gen_opc_buf, OPC_BUF_SIZE);
+                (int)(gen_opc_ptr - gen_opc_buf), OPC_BUF_SIZE);
         tcg_abort();
     }
 
@@ -1982,9 +1982,9 @@
          * tcg_gen_code_search_pc. */
         if (memcheck_enabled && search_pc < 0 &&
             gen_opc_instr_start[op_index]) {
-            gen_opc_tpc2gpc_ptr[tpc2gpc_index] = (target_ulong)s->code_ptr;
+            gen_opc_tpc2gpc_ptr[tpc2gpc_index] = s->code_ptr;
             tpc2gpc_index++;
-            gen_opc_tpc2gpc_ptr[tpc2gpc_index] = gen_opc_pc[op_index];
+            gen_opc_tpc2gpc_ptr[tpc2gpc_index] = (void*)(ptrdiff_t)gen_opc_pc[op_index];
             tpc2gpc_index++;
             gen_opc_tpc2gpc_pairs++;
         }
@@ -2087,7 +2087,7 @@
     /* sanity check */
     if (gen_opc_ptr - gen_opc_buf > OPC_BUF_SIZE) {
         fprintf(stderr, "PANIC: too many opcodes generated (%d > %d)\n",
-                gen_opc_ptr - gen_opc_buf, OPC_BUF_SIZE);
+                (int)(gen_opc_ptr - gen_opc_buf), OPC_BUF_SIZE);
         tcg_abort();
     }