Displaying 1 result from an estimated 1 matches for "mybaseexception".
2015 Sep 14
2
inlining in exception handing region
...n handling region (e.g., the
> constructor of MyException) from being inlined so that we can avoid code
> size blow-up in exception handling region and indirectly give more
> inlining opportunity to the small unwinding functions containing
> exception
> handling code?
>
> class MyBaseException {
> int idx;
> int limit;
> const char* msg;
> public :
> MyBaseException(int i, int l, const char* m);
> ~MyBaseException();
> void handle(const char*m, int i, int l);
> };
>
> class MyException : MyBaseException
> {
> public:
> MyEx...