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 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1058 static ExternalReference invoke_function_callback(Isolate* isolate); | 1058 static ExternalReference invoke_function_callback(Isolate* isolate); |
1059 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); | 1059 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); |
1060 | 1060 |
1061 static ExternalReference virtual_handler_register(Isolate* isolate); | 1061 static ExternalReference virtual_handler_register(Isolate* isolate); |
1062 static ExternalReference virtual_slot_register(Isolate* isolate); | 1062 static ExternalReference virtual_slot_register(Isolate* isolate); |
1063 | 1063 |
1064 static ExternalReference runtime_function_table_address(Isolate* isolate); | 1064 static ExternalReference runtime_function_table_address(Isolate* isolate); |
1065 | 1065 |
1066 Address address() const { return reinterpret_cast<Address>(address_); } | 1066 Address address() const { return reinterpret_cast<Address>(address_); } |
1067 | 1067 |
1068 // Used to check if single stepping is enabled in generated code. | 1068 // Used to read out the last step action of the debugger. |
1069 static ExternalReference debug_step_in_enabled_address(Isolate* isolate); | 1069 static ExternalReference debug_last_step_action_address(Isolate* isolate); |
1070 | 1070 |
1071 // Used to check for suspended generator, used for stepping across await call. | 1071 // Used to check for suspended generator, used for stepping across await call. |
1072 static ExternalReference debug_suspended_generator_address(Isolate* isolate); | 1072 static ExternalReference debug_suspended_generator_address(Isolate* isolate); |
1073 | 1073 |
1074 #ifndef V8_INTERPRETED_REGEXP | 1074 #ifndef V8_INTERPRETED_REGEXP |
1075 // C functions called from RegExp generated code. | 1075 // C functions called from RegExp generated code. |
1076 | 1076 |
1077 // Function NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16() | 1077 // Function NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16() |
1078 static ExternalReference re_case_insensitive_compare_uc16(Isolate* isolate); | 1078 static ExternalReference re_case_insensitive_compare_uc16(Isolate* isolate); |
1079 | 1079 |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1340 std::vector<ConstantPoolEntry> shared_entries; | 1340 std::vector<ConstantPoolEntry> shared_entries; |
1341 }; | 1341 }; |
1342 | 1342 |
1343 Label emitted_label_; // Records pc_offset of emitted pool | 1343 Label emitted_label_; // Records pc_offset of emitted pool |
1344 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1344 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1345 }; | 1345 }; |
1346 | 1346 |
1347 } // namespace internal | 1347 } // namespace internal |
1348 } // namespace v8 | 1348 } // namespace v8 |
1349 #endif // V8_ASSEMBLER_H_ | 1349 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |