tcg-internal.h (47d3878422ed0216cb1d5d69c3b929f10a008cd4) | tcg-internal.h (7b8801071951c55dc506c1fca8b40ba292a28d6e) |
---|---|
1/* 2 * Internal declarations for 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 --- 112 unchanged lines hidden (view full) --- 121} 122 123static inline TCGv_i64 TCGV128_HIGH(TCGv_i128 t) 124{ 125 int o = HOST_BIG_ENDIAN ? 0 : 64 / TCG_TARGET_REG_BITS; 126 return temp_tcgv_i64(tcgv_i128_temp(t) + o); 127} 128 | 1/* 2 * Internal declarations for 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 --- 112 unchanged lines hidden (view full) --- 121} 122 123static inline TCGv_i64 TCGV128_HIGH(TCGv_i128 t) 124{ 125 int o = HOST_BIG_ENDIAN ? 0 : 64 / TCG_TARGET_REG_BITS; 126 return temp_tcgv_i64(tcgv_i128_temp(t) + o); 127} 128 |
129bool tcg_target_has_memory_bswap(MemOp memop); 130 |
|
129#endif /* TCG_INTERNAL_H */ | 131#endif /* TCG_INTERNAL_H */ |