Changeset 153612 in webkit for trunk/Source/JavaScriptCore/jit/JITExceptions.h
- Timestamp:
- Aug 1, 2013, 2:57:38 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITExceptions.h
r153222 r153612 45 45 }; 46 46 47 // EncodedExceptionHandler is used to convince the compiler to return an ExceptionHander 48 // struct in two registers for 32 bit builds. 49 typedef int64_t EncodedExceptionHandler; 50 51 union ExceptionHandlerUnion { 52 ExceptionHandler handler; 53 EncodedExceptionHandler encodedHandler; 54 }; 55 56 EncodedExceptionHandler encode(ExceptionHandler); 57 47 58 ExceptionHandler genericThrow(VM*, ExecState*, JSValue exceptionValue, unsigned vPCIndex); 48 59
Note:
See TracChangeset
for help on using the changeset viewer.