OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
990 | 990 |
991 static ExternalReference debug_is_active_address(Isolate* isolate); | 991 static ExternalReference debug_is_active_address(Isolate* isolate); |
992 static ExternalReference debug_hook_on_function_call_address( | 992 static ExternalReference debug_hook_on_function_call_address( |
993 Isolate* isolate); | 993 Isolate* isolate); |
994 static ExternalReference debug_after_break_target_address(Isolate* isolate); | 994 static ExternalReference debug_after_break_target_address(Isolate* isolate); |
995 | 995 |
996 static ExternalReference is_profiling_address(Isolate* isolate); | 996 static ExternalReference is_profiling_address(Isolate* isolate); |
997 static ExternalReference invoke_function_callback(Isolate* isolate); | 997 static ExternalReference invoke_function_callback(Isolate* isolate); |
998 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); | 998 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); |
999 | 999 |
1000 static ExternalReference promise_hook_address(Isolate* isolate); | 1000 static ExternalReference promise_hook_or_debug_is_active_address( |
| 1001 Isolate* isolate); |
1001 | 1002 |
1002 V8_EXPORT_PRIVATE static ExternalReference runtime_function_table_address( | 1003 V8_EXPORT_PRIVATE static ExternalReference runtime_function_table_address( |
1003 Isolate* isolate); | 1004 Isolate* isolate); |
1004 | 1005 |
1005 Address address() const { return reinterpret_cast<Address>(address_); } | 1006 Address address() const { return reinterpret_cast<Address>(address_); } |
1006 | 1007 |
1007 // Used to read out the last step action of the debugger. | 1008 // Used to read out the last step action of the debugger. |
1008 static ExternalReference debug_last_step_action_address(Isolate* isolate); | 1009 static ExternalReference debug_last_step_action_address(Isolate* isolate); |
1009 | 1010 |
1010 // Used to check for suspended generator, used for stepping across await call. | 1011 // Used to check for suspended generator, used for stepping across await call. |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1235 std::vector<ConstantPoolEntry> shared_entries; | 1236 std::vector<ConstantPoolEntry> shared_entries; |
1236 }; | 1237 }; |
1237 | 1238 |
1238 Label emitted_label_; // Records pc_offset of emitted pool | 1239 Label emitted_label_; // Records pc_offset of emitted pool |
1239 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1240 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1240 }; | 1241 }; |
1241 | 1242 |
1242 } // namespace internal | 1243 } // namespace internal |
1243 } // namespace v8 | 1244 } // namespace v8 |
1244 #endif // V8_ASSEMBLER_H_ | 1245 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |