| OLD | NEW |
| 1 /* -*- c -*- | 1 /* -*- c -*- |
| 2 ---------------------------------------------------------------- | 2 ---------------------------------------------------------------- |
| 3 | 3 |
| 4 Notice that the following BSD-style license applies to this one | 4 Notice that the following BSD-style license applies to this one |
| 5 file (valgrind.h) only. The rest of Valgrind is licensed under the | 5 file (valgrind.h) only. The rest of Valgrind is licensed under the |
| 6 terms of the GNU General Public License, version 2, unless | 6 terms of the GNU General Public License, version 2, unless |
| 7 otherwise indicated. See the COPYING file in the source | 7 otherwise indicated. See the COPYING file in the source |
| 8 distribution for details. | 8 distribution for details. |
| 9 | 9 |
| 10 ---------------------------------------------------------------- | 10 ---------------------------------------------------------------- |
| (...skipping 4045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4056 VG_CONTRACT_FRAME_BY(512) \ | 4056 VG_CONTRACT_FRAME_BY(512) \ |
| 4057 : /*out*/ "=r" (_res) \ | 4057 : /*out*/ "=r" (_res) \ |
| 4058 : /*in*/ "r" (&_argvec[2]) \ | 4058 : /*in*/ "r" (&_argvec[2]) \ |
| 4059 : /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \ | 4059 : /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \ |
| 4060 ); \ | 4060 ); \ |
| 4061 lval = (__typeof__(lval)) _res; \ | 4061 lval = (__typeof__(lval)) _res; \ |
| 4062 } while (0) | 4062 } while (0) |
| 4063 | 4063 |
| 4064 #endif /* PLAT_ppc64_aix5 */ | 4064 #endif /* PLAT_ppc64_aix5 */ |
| 4065 | 4065 |
| 4066 |
| 4066 #ifndef WIN32 | 4067 #ifndef WIN32 |
| 4067 /* ------------------------------------------------------------------ */ | 4068 /* ------------------------------------------------------------------ */ |
| 4068 /* ARCHITECTURE INDEPENDENT MACROS for CLIENT REQUESTS. */ | 4069 /* ARCHITECTURE INDEPENDENT MACROS for CLIENT REQUESTS. */ |
| 4069 /* */ | 4070 /* */ |
| 4070 /* ------------------------------------------------------------------ */ | 4071 /* ------------------------------------------------------------------ */ |
| 4071 | 4072 |
| 4072 /* Some request codes. There are many more of these, but most are not | 4073 /* Some request codes. There are many more of these, but most are not |
| 4073 exposed to end-user view. These are the public ones, all of the | 4074 exposed to end-user view. These are the public ones, all of the |
| 4074 form 0x1000 + small_number. | 4075 form 0x1000 + small_number. |
| 4075 | 4076 |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4508 | 4509 |
| 4509 #undef PLAT_x86_linux | 4510 #undef PLAT_x86_linux |
| 4510 #undef PLAT_amd64_linux | 4511 #undef PLAT_amd64_linux |
| 4511 #undef PLAT_ppc32_linux | 4512 #undef PLAT_ppc32_linux |
| 4512 #undef PLAT_ppc64_linux | 4513 #undef PLAT_ppc64_linux |
| 4513 #undef PLAT_arm_linux | 4514 #undef PLAT_arm_linux |
| 4514 #undef PLAT_ppc32_aix5 | 4515 #undef PLAT_ppc32_aix5 |
| 4515 #undef PLAT_ppc64_aix5 | 4516 #undef PLAT_ppc64_aix5 |
| 4516 | 4517 |
| 4517 #endif /* __VALGRIND_H */ | 4518 #endif /* __VALGRIND_H */ |
| OLD | NEW |