tcg-target.c.inc (30feb7ee4387f40e73a1e938388b60d76c90fc4f) tcg-target.c.inc (7b8801071951c55dc506c1fca8b40ba292a28d6e)
1/*
2 * Tiny Code Generator for QEMU
3 *
4 * Copyright (c) 2008-2009 Arnaud Patard <arnaud.patard@rtp-net.org>
5 * Copyright (c) 2009 Aurelien Jarno <aurelien@aurel32.net>
6 * Based on i386/tcg-target.c - Copyright (c) 2008 Fabrice Bellard
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy

--- 1127 unchanged lines hidden (view full) ---

1136 return true;
1137}
1138
1139typedef struct {
1140 TCGReg base;
1141 MemOp align;
1142} HostAddress;
1143
1/*
2 * Tiny Code Generator for QEMU
3 *
4 * Copyright (c) 2008-2009 Arnaud Patard <arnaud.patard@rtp-net.org>
5 * Copyright (c) 2009 Aurelien Jarno <aurelien@aurel32.net>
6 * Based on i386/tcg-target.c - Copyright (c) 2008 Fabrice Bellard
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy

--- 1127 unchanged lines hidden (view full) ---

1136 return true;
1137}
1138
1139typedef struct {
1140 TCGReg base;
1141 MemOp align;
1142} HostAddress;
1143
1144bool tcg_target_has_memory_bswap(MemOp memop)
1145{
1146 return false;
1147}
1148
1144/*
1145 * For softmmu, perform the TLB load and compare.
1146 * For useronly, perform any required alignment tests.
1147 * In both cases, return a TCGLabelQemuLdst structure if the slow path
1148 * is required and fill in @h with the host address for the fast path.
1149 */
1150static TCGLabelQemuLdst *prepare_host_addr(TCGContext *s, HostAddress *h,
1151 TCGReg addrlo, TCGReg addrhi,

--- 1364 unchanged lines hidden ---
1149/*
1150 * For softmmu, perform the TLB load and compare.
1151 * For useronly, perform any required alignment tests.
1152 * In both cases, return a TCGLabelQemuLdst structure if the slow path
1153 * is required and fill in @h with the host address for the fast path.
1154 */
1155static TCGLabelQemuLdst *prepare_host_addr(TCGContext *s, HostAddress *h,
1156 TCGReg addrlo, TCGReg addrhi,

--- 1364 unchanged lines hidden ---