tcg-target.c.inc (92ab8e7d621e11df559fc2427ff08df6c3a5a6de) tcg-target.c.inc (755bf9e514e3f60ffa3f0495e6bc524fca74f3be)
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

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

3971 0x83, 3, /* DW_CFA_offset, %ebx, -12 */
3972 0x86, 4, /* DW_CFA_offset, %esi, -16 */
3973 0x87, 5, /* DW_CFA_offset, %edi, -20 */
3974 }
3975};
3976#endif
3977
3978#if defined(ELF_HOST_MACHINE)
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

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

3971 0x83, 3, /* DW_CFA_offset, %ebx, -12 */
3972 0x86, 4, /* DW_CFA_offset, %esi, -16 */
3973 0x87, 5, /* DW_CFA_offset, %edi, -20 */
3974 }
3975};
3976#endif
3977
3978#if defined(ELF_HOST_MACHINE)
3979void tcg_register_jit(void *buf, size_t buf_size)
3979void tcg_register_jit(const void *buf, size_t buf_size)
3980{
3981 tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));
3982}
3983#endif
3980{
3981 tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));
3982}
3983#endif