tcg-target.c.inc (64d51dc31a5bdf5a0571ce48717a7daf1f7dc4aa) | tcg-target.c.inc (7b8801071951c55dc506c1fca8b40ba292a28d6e) |
---|---|
1/* 2 * Tiny Code Generator for QEMU 3 * 4 * Copyright (c) 2008 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 2003 unchanged lines hidden (view full) --- 2012 return true; 2013} 2014 2015typedef struct { 2016 TCGReg base; 2017 TCGReg index; 2018} HostAddress; 2019 | 1/* 2 * Tiny Code Generator for QEMU 3 * 4 * Copyright (c) 2008 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 2003 unchanged lines hidden (view full) --- 2012 return true; 2013} 2014 2015typedef struct { 2016 TCGReg base; 2017 TCGReg index; 2018} HostAddress; 2019 |
2020bool tcg_target_has_memory_bswap(MemOp memop) 2021{ 2022 return true; 2023} 2024 |
|
2020/* 2021 * For softmmu, perform the TLB load and compare. 2022 * For useronly, perform any required alignment tests. 2023 * In both cases, return a TCGLabelQemuLdst structure if the slow path 2024 * is required and fill in @h with the host address for the fast path. 2025 */ 2026static TCGLabelQemuLdst *prepare_host_addr(TCGContext *s, HostAddress *h, 2027 TCGReg addrlo, TCGReg addrhi, --- 1881 unchanged lines hidden --- | 2025/* 2026 * For softmmu, perform the TLB load and compare. 2027 * For useronly, perform any required alignment tests. 2028 * In both cases, return a TCGLabelQemuLdst structure if the slow path 2029 * is required and fill in @h with the host address for the fast path. 2030 */ 2031static TCGLabelQemuLdst *prepare_host_addr(TCGContext *s, HostAddress *h, 2032 TCGReg addrlo, TCGReg addrhi, --- 1881 unchanged lines hidden --- |