X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/2eb5f06f8a80f22e1677747ee448ad0db2b0bb35..63db22e50caddb75792b67534547cb3ac7ccff61:/Exception.hpp diff --git a/Exception.hpp b/Exception.hpp index 889f92f..994dd7b 100644 --- a/Exception.hpp +++ b/Exception.hpp @@ -1,5 +1,5 @@ /* Cycript - Optimizing JavaScript Compiler/Runtime - * Copyright (C) 2009-2014 Jay Freeman (saurik) + * Copyright (C) 2009-2015 Jay Freeman (saurik) */ /* GNU Affero General Public License, Version 3 {{{ */ @@ -22,6 +22,8 @@ #ifndef CYCRIPT_EXCEPTION_HPP #define CYCRIPT_EXCEPTION_HPP +#include + #ifdef CY_EXECUTE #include #endif @@ -33,7 +35,7 @@ class CYPool; -struct CYException { +struct _visible CYException { virtual ~CYException() { } @@ -76,7 +78,7 @@ while (false) _value; }) #define _trace() do { \ - fprintf(stderr, "_trace():%u\n", __LINE__); \ + fprintf(stderr, "_trace(%s:%u)\n", __FILE__, __LINE__); \ } while (false) static _finline bool CYContains(int value, size_t many, const int *okay) { @@ -86,11 +88,11 @@ static _finline bool CYContains(int value, size_t many, const int *okay) { return false; } -#define _syscall_(expr, many, okay) ({ \ +#define _syscall_(expr, many, ...) ({ \ __typeof__(expr) _value; \ do if ((long) (_value = (expr)) != -1) \ break; \ - else if (CYContains(errno, many, ((const int [many]) okay))) \ + else if (CYContains(errno, many, ((const int [many + 1]) {0, ##__VA_ARGS__} + 1))) \ break; \ else \ _assert_("syscall", errno == EINTR, #expr, " [errno=%d]", errno); \ @@ -99,13 +101,7 @@ static _finline bool CYContains(int value, size_t many, const int *okay) { }) #define _syscall(expr) \ - _syscall_(expr, 0, {}) - -#define _krncall(expr) \ - do { \ - kern_return_t _krnstatus((expr)); \ - _assert_("krncall", _krnstatus == KERN_SUCCESS, #expr, " [return=0x%x]", _krnstatus); \ - } while (false) + _syscall_(expr, 0) #define _sqlcall(expr) ({ \ __typeof__(expr) _value = (expr); \