V8 Project
|
An external exception handler. More...
#include <v8.h>
Public Member Functions | |
TryCatch () | |
Creates a new try/catch block and registers it with v8. More... | |
~TryCatch () | |
Unregisters and deletes this try/catch block. More... | |
bool | HasCaught () const |
Returns true if an exception has been caught by this try/catch block. More... | |
bool | CanContinue () const |
For certain types of exceptions, it makes no sense to continue execution. More... | |
bool | HasTerminated () const |
Returns true if an exception has been caught due to script execution being terminated. More... | |
Handle< Value > | ReThrow () |
Throws the exception caught by this TryCatch in a way that avoids it being caught again by this same TryCatch. More... | |
Local< Value > | Exception () const |
Returns the exception caught by this try/catch block. More... | |
Local< Value > | StackTrace () const |
Returns the .stack property of the thrown object. More... | |
Local< v8::Message > | Message () const |
Returns the message associated with this exception. More... | |
void | Reset () |
Clears any exceptions that may have been caught by this try/catch block. More... | |
void | SetVerbose (bool value) |
Set verbosity of the external exception handler. More... | |
void | SetCaptureMessage (bool value) |
Set whether or not this TryCatch should capture a Message object which holds source information about where the exception occurred. More... | |
Static Public Member Functions | |
static void * | JSStackComparableAddress (v8::TryCatch *handler) |
There are cases when the raw address of C++ TryCatch object cannot be used for comparisons with addresses into the JS stack. More... | |
Private Member Functions | |
void | ResetInternal () |
TryCatch (const TryCatch &) | |
void | operator= (const TryCatch &) |
void * | operator new (size_t size) |
void | operator delete (void *, size_t) |
Private Attributes | |
v8::internal::Isolate * | isolate_ |
v8::TryCatch * | next_ |
void * | exception_ |
void * | message_obj_ |
void * | message_script_ |
void * | js_stack_comparable_address_ |
int | message_start_pos_ |
int | message_end_pos_ |
bool | is_verbose_: 1 |
bool | can_continue_: 1 |
bool | capture_message_: 1 |
bool | rethrow_: 1 |
bool | has_terminated_: 1 |
Friends | |
class | v8::internal::Isolate |
v8::TryCatch::TryCatch | ( | ) |
Creates a new try/catch block and registers it with v8.
Note that all TryCatch blocks should be stack allocated because the memory location itself is compared against JavaScript try/catch blocks.
Definition at line 1906 of file api.cc.
References v8::internal::GetCurrentStackPosition(), isolate_, js_stack_comparable_address_, v8::internal::SimulatorStack::RegisterCTryCatch(), v8::internal::Isolate::RegisterTryCatchHandler(), and ResetInternal().
v8::TryCatch::~TryCatch | ( | ) |
Unregisters and deletes this try/catch block.
Definition at line 1923 of file api.cc.
References DCHECK, v8::Exception, v8::Local< T >::New(), and v8::internal::SimulatorStack::UnregisterCTryCatch().
|
private |
bool v8::TryCatch::CanContinue | ( | ) | const |
For certain types of exceptions, it makes no sense to continue execution.
If CanContinue returns false, the correct action is to perform any C++ cleanup needed and then return. If CanContinue returns false and HasTerminated returns true, it is possible to call CancelTerminateExecution in order to continue calling into the engine.
Returns the exception caught by this try/catch block.
If no exception has been caught an empty handle is returned.
The returned handle is valid until this TryCatch block has been destroyed.
Definition at line 1976 of file api.cc.
References DCHECK, and v8::Utils::ToLocal().
Referenced by v8::Shell::ReportException().
bool v8::TryCatch::HasCaught | ( | ) | const |
Returns true if an exception has been caught by this try/catch block.
Definition at line 1954 of file api.cc.
Referenced by v8::Shell::ExecuteString(), v8::HandleDebugEvent(), main(), and v8::Shell::Write().
bool v8::TryCatch::HasTerminated | ( | ) | const |
Returns true if an exception has been caught due to script execution being terminated.
There is no JavaScript representation of an execution termination exception. Such exceptions are thrown when the TerminateExecution methods are called to terminate a long-running script.
If such an exception has been thrown, HasTerminated will return true, indicating that it is possible to call CancelTerminateExecution in order to continue calling into the engine.
|
inlinestatic |
There are cases when the raw address of C++ TryCatch object cannot be used for comparisons with addresses into the JS stack.
The cases are: 1) ARM, ARM64 and MIPS simulators which have separate JS stack. 2) Address sanitizer allocates local C++ object in the heap when UseAfterReturn mode is enabled. This method returns address that can be used for comparisons with addresses into the JS stack. When neither simulator nor ASAN's UseAfterReturn is enabled, then the address returned will be the address of the C++ try catch handler itself.
Definition at line 5386 of file v8.h.
References js_stack_comparable_address_, and NULL.
Referenced by v8::internal::BASE_EMBEDDED< Visitor >::try_catch_handler_address().
v8::Local< v8::Message > v8::TryCatch::Message | ( | ) | const |
Returns the message associated with this exception.
If there is no message associated an empty handle is returned.
The returned handle is valid until this TryCatch block has been destroyed.
Definition at line 2012 of file api.cc.
References DCHECK, and v8::Utils::MessageToLocal().
Referenced by main(), and v8::Shell::ReportException().
|
private |
|
private |
|
private |
void v8::TryCatch::Reset | ( | ) |
Clears any exceptions that may have been caught by this try/catch block.
After this method has been called, HasCaught() will return false. Cancels the scheduled exception if it is caught and ReThrow() is not called before.
It is not necessary to clear a try/catch block before using it again; if another exception is thrown the previously caught exception will just be overwritten. However, it is often a good idea since it makes it easier to determine which operation threw a given exception.
Definition at line 2024 of file api.cc.
References DCHECK.
|
private |
Definition at line 2036 of file api.cc.
Referenced by TryCatch().
v8::Handle< v8::Value > v8::TryCatch::ReThrow | ( | ) |
Throws the exception caught by this TryCatch in a way that avoids it being caught again by this same TryCatch.
As with ThrowException it is illegal to execute any JavaScript operations after calling ReThrow; the caller must return immediately to where the exception is caught.
Definition at line 1969 of file api.cc.
References v8::Undefined().
Referenced by v8::Shell::Write().
void v8::TryCatch::SetCaptureMessage | ( | bool | value | ) |
void v8::TryCatch::SetVerbose | ( | bool | value | ) |
Set verbosity of the external exception handler.
By default, exceptions that are caught by an external exception handler are not reported. Call SetVerbose with true on an external exception handler to have exceptions caught by the handler reported as if they were not caught.
Definition at line 2046 of file api.cc.
Referenced by v8::Shell::ExecuteString(), and v8::internal::LiveEdit::GatherCompileInfo().
Returns the .stack property of the thrown object.
If no .stack property is present an empty handle is returned.
Definition at line 1988 of file api.cc.
References v8::internal::HandleScope::CloseAndEscape(), DCHECK, EXCEPTION_BAILOUT_CHECK, EXCEPTION_PREAMBLE, v8::internal::Object::GetProperty(), v8::internal::JSReceiver::HasProperty(), v8::maybe(), name, and v8::Utils::ToLocal().
Referenced by v8::Shell::ReportException().
|
friend |
|
private |
Definition at line 5409 of file v8.h.
Referenced by v8::internal::Isolate::PropagatePendingExceptionToExternalTryCatch().
|
private |
Definition at line 5410 of file v8.h.
Referenced by v8::internal::Isolate::DoThrow().
|
private |
Definition at line 5402 of file v8.h.
Referenced by v8::internal::Isolate::PropagatePendingExceptionToExternalTryCatch().
|
private |
Definition at line 5412 of file v8.h.
Referenced by v8::internal::Isolate::CancelTerminateExecution(), and v8::internal::Isolate::PropagatePendingExceptionToExternalTryCatch().
|
private |
Definition at line 5408 of file v8.h.
Referenced by v8::internal::Isolate::ShouldReportException().
|
private |
Definition at line 5400 of file v8.h.
Referenced by TryCatch().
|
private |
Definition at line 5405 of file v8.h.
Referenced by JSStackComparableAddress(), and TryCatch().
|
private |
Definition at line 5401 of file v8.h.
Referenced by v8::internal::Isolate::UnregisterTryCatchHandler().