From patchwork Thu Oct 22 20:17:47 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [4/5] tcg: increase TCG_MAX_OP_SIZE to 192 Date: Thu, 22 Oct 2009 10:17:47 -0000 From: Aurelien Jarno X-Patchwork-Id: 36746 Message-Id: To: qemu-devel@nongnu.org Cc: Arnaud Patard This is needed on a MIPS host and a 64-bit cross-endian target. Signed-off-by: Aurelien Jarno --- exec-all.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/exec-all.h b/exec-all.h index dd134a9..820b59e 100644 --- a/exec-all.h +++ b/exec-all.h @@ -41,10 +41,10 @@ typedef struct TranslationBlock TranslationBlock; #define OPC_MAX_SIZE (OPC_BUF_SIZE - MAX_OP_PER_INSTR) /* Maximum size a TCG op can expand to. This is complicated because a - single op may require several host instructions and regirster reloads. - For now take a wild guess at 128 bytes, which should allow at least + single op may require several host instructions and register reloads. + For now take a wild guess at 192 bytes, which should allow at least a couple of fixup instructions per argument. */ -#define TCG_MAX_OP_SIZE 128 +#define TCG_MAX_OP_SIZE 192 #define OPPARAM_BUF_SIZE (OPC_BUF_SIZE * MAX_OPC_PARAM)