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