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 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
969 static ExternalReference math_exp_log_table(); | 969 static ExternalReference math_exp_log_table(); |
970 | 970 |
971 static ExternalReference page_flags(Page* page); | 971 static ExternalReference page_flags(Page* page); |
972 | 972 |
973 static ExternalReference ForDeoptEntry(Address entry); | 973 static ExternalReference ForDeoptEntry(Address entry); |
974 | 974 |
975 static ExternalReference cpu_features(); | 975 static ExternalReference cpu_features(); |
976 | 976 |
977 static ExternalReference debug_is_active_address(Isolate* isolate); | 977 static ExternalReference debug_is_active_address(Isolate* isolate); |
978 static ExternalReference debug_after_break_target_address(Isolate* isolate); | 978 static ExternalReference debug_after_break_target_address(Isolate* isolate); |
| 979 static ExternalReference debug_restarter_frame_function_pointer_address( |
| 980 Isolate* isolate); |
979 | 981 |
980 static ExternalReference is_profiling_address(Isolate* isolate); | 982 static ExternalReference is_profiling_address(Isolate* isolate); |
981 static ExternalReference invoke_function_callback(Isolate* isolate); | 983 static ExternalReference invoke_function_callback(Isolate* isolate); |
982 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); | 984 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); |
983 | 985 |
984 static ExternalReference virtual_handler_register(Isolate* isolate); | 986 static ExternalReference virtual_handler_register(Isolate* isolate); |
985 static ExternalReference virtual_slot_register(Isolate* isolate); | 987 static ExternalReference virtual_slot_register(Isolate* isolate); |
986 | 988 |
987 static ExternalReference runtime_function_table_address(Isolate* isolate); | 989 static ExternalReference runtime_function_table_address(Isolate* isolate); |
988 | 990 |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1278 std::vector<ConstantPoolEntry> shared_entries; | 1280 std::vector<ConstantPoolEntry> shared_entries; |
1279 }; | 1281 }; |
1280 | 1282 |
1281 Label emitted_label_; // Records pc_offset of emitted pool | 1283 Label emitted_label_; // Records pc_offset of emitted pool |
1282 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1284 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1283 }; | 1285 }; |
1284 | 1286 |
1285 } // namespace internal | 1287 } // namespace internal |
1286 } // namespace v8 | 1288 } // namespace v8 |
1287 #endif // V8_ASSEMBLER_H_ | 1289 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |