tcg-target.c.inc (2be7d76b1557d3ee72cde3b2cf5d4abf25220fb2) tcg-target.c.inc (755bf9e514e3f60ffa3f0495e6bc524fca74f3be)
1/*
2 * Tiny Code Generator for QEMU
3 *
4 * Copyright (c) 2008 Andrzej Zaborowski
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

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

2348 0x88, 5, /* DW_CFA_offset, r8, -20 */
2349 0x87, 6, /* DW_CFA_offset, r7, -24 */
2350 0x86, 7, /* DW_CFA_offset, r6, -28 */
2351 0x85, 8, /* DW_CFA_offset, r5, -32 */
2352 0x84, 9, /* DW_CFA_offset, r4, -36 */
2353 }
2354};
2355
1/*
2 * Tiny Code Generator for QEMU
3 *
4 * Copyright (c) 2008 Andrzej Zaborowski
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

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

2348 0x88, 5, /* DW_CFA_offset, r8, -20 */
2349 0x87, 6, /* DW_CFA_offset, r7, -24 */
2350 0x86, 7, /* DW_CFA_offset, r6, -28 */
2351 0x85, 8, /* DW_CFA_offset, r5, -32 */
2352 0x84, 9, /* DW_CFA_offset, r4, -36 */
2353 }
2354};
2355
2356void tcg_register_jit(void *buf, size_t buf_size)
2356void tcg_register_jit(const void *buf, size_t buf_size)
2357{
2358 tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));
2359}
2357{
2358 tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));
2359}