Home | History | Annotate | Download | only in src

Lines Matching refs:Address

204   // This method is not guarenteed to return an address that can be
206 // address is needed, use try_catch_handler_address.
209 // Get the address of the top C++ try catch handler or NULL if
212 // This method always returns an address that can be compared to
216 // stack, try_catch_handler_address returns a JS stack address that
219 inline Address try_catch_handler_address() {
223 // Set the address of the top C++ try catch handler.
224 inline void set_try_catch_handler_address(Address address) {
225 try_catch_handler_address_ = address;
254 Address c_entry_fp_; // the frame pointer of the top c entry frame
255 Address handler_; // try-blocks are chained through the stack
263 Address js_entry_sp_; // the stack pointer of the bottom JS entry frame
264 Address external_callback_; // the external callback we're currently in
282 Address try_catch_handler_address_;
423 #define DECLARE_ENUM(CamelName, hacker_name) k##CamelName##Address,
515 Address get_address_from_id(AddressId id);
565 Address try_catch_handler_address() {
600 static Address c_entry_fp(ThreadLocalTop* thread) {
603 static Address handler(ThreadLocalTop* thread) { return thread->handler_; }
605 inline Address* c_entry_fp_address() {
608 inline Address* handler_address() { return &thread_local_top_.handler_; }
611 static Address js_entry_sp(ThreadLocalTop* thread) {
614 inline Address* js_entry_sp_address() {
970 Address external_callback() {
973 void set_external_callback(Address callback) {
1153 Address isolate_addresses_[kIsolateAddressCount + 1]; // NOLINT
1306 Address c_entry_fp_;