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 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
977 static ExternalReference math_exp_log_table(); | 977 static ExternalReference math_exp_log_table(); |
978 | 978 |
979 static ExternalReference page_flags(Page* page); | 979 static ExternalReference page_flags(Page* page); |
980 | 980 |
981 static ExternalReference ForDeoptEntry(Address entry); | 981 static ExternalReference ForDeoptEntry(Address entry); |
982 | 982 |
983 static ExternalReference cpu_features(); | 983 static ExternalReference cpu_features(); |
984 | 984 |
985 static ExternalReference debug_is_active_address(Isolate* isolate); | 985 static ExternalReference debug_is_active_address(Isolate* isolate); |
986 static ExternalReference debug_after_break_target_address(Isolate* isolate); | 986 static ExternalReference debug_after_break_target_address(Isolate* isolate); |
| 987 static ExternalReference debug_restarter_frame_function_pointer_address( |
| 988 Isolate* isolate); |
987 | 989 |
988 static ExternalReference is_profiling_address(Isolate* isolate); | 990 static ExternalReference is_profiling_address(Isolate* isolate); |
989 static ExternalReference invoke_function_callback(Isolate* isolate); | 991 static ExternalReference invoke_function_callback(Isolate* isolate); |
990 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); | 992 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); |
991 | 993 |
992 static ExternalReference virtual_handler_register(Isolate* isolate); | 994 static ExternalReference virtual_handler_register(Isolate* isolate); |
993 static ExternalReference virtual_slot_register(Isolate* isolate); | 995 static ExternalReference virtual_slot_register(Isolate* isolate); |
994 | 996 |
995 static ExternalReference runtime_function_table_address(Isolate* isolate); | 997 static ExternalReference runtime_function_table_address(Isolate* isolate); |
996 | 998 |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1286 std::vector<ConstantPoolEntry> shared_entries; | 1288 std::vector<ConstantPoolEntry> shared_entries; |
1287 }; | 1289 }; |
1288 | 1290 |
1289 Label emitted_label_; // Records pc_offset of emitted pool | 1291 Label emitted_label_; // Records pc_offset of emitted pool |
1290 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1292 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1291 }; | 1293 }; |
1292 | 1294 |
1293 } // namespace internal | 1295 } // namespace internal |
1294 } // namespace v8 | 1296 } // namespace v8 |
1295 #endif // V8_ASSEMBLER_H_ | 1297 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |