Home | History | Annotate | Download | only in src

Lines Matching refs:Address

240   // This method is not guaranteed to return an address that can be
242 // address is needed, use try_catch_handler_address.
245 // Get the address of the top C++ try catch handler or NULL if
248 // This method always returns an address that can be compared to
252 // stack, try_catch_handler_address returns a JS stack address that
255 Address try_catch_handler_address() {
256 return reinterpret_cast<Address>(
283 Address c_entry_fp_; // the frame pointer of the top c entry frame
284 Address handler_; // try-blocks are chained through the stack
295 Address js_entry_sp_; // the stack pointer of the bottom JS entry frame
463 #define DECLARE_ENUM(CamelName, hacker_name) k##CamelName##Address,
544 Address get_address_from_id(AddressId id);
595 Address try_catch_handler_address() {
608 Address pending_message_obj_address() {
609 return reinterpret_cast<Address>(&thread_local_top_.pending_message_obj_);
612 Address has_pending_message_address() {
613 return reinterpret_cast<Address>(&thread_local_top_.has_pending_message_);
616 Address pending_message_script_address() {
617 return reinterpret_cast<Address>(
646 static Address c_entry_fp(ThreadLocalTop* thread) {
649 static Address handler(ThreadLocalTop* thread) { return thread->handler_; }
651 inline Address* c_entry_fp_address() {
654 inline Address* handler_address() { return &thread_local_top_.handler_; }
657 Address js_entry_sp() {
660 inline Address* js_entry_sp_address() {
1086 // Given an address occupied by a live code object, return that object.
1087 Object* FindCodeObject(Address a);
1223 Address isolate_addresses_[kIsolateAddressCount + 1]; // NOLINT
1394 Address c_entry_fp_;