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 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
997 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); | 997 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); |
998 | 998 |
999 static ExternalReference virtual_handler_register(Isolate* isolate); | 999 static ExternalReference virtual_handler_register(Isolate* isolate); |
1000 static ExternalReference virtual_slot_register(Isolate* isolate); | 1000 static ExternalReference virtual_slot_register(Isolate* isolate); |
1001 | 1001 |
1002 static ExternalReference runtime_function_table_address(Isolate* isolate); | 1002 static ExternalReference runtime_function_table_address(Isolate* isolate); |
1003 | 1003 |
1004 Address address() const { return reinterpret_cast<Address>(address_); } | 1004 Address address() const { return reinterpret_cast<Address>(address_); } |
1005 | 1005 |
1006 // Used to check if single stepping is enabled in generated code. | 1006 // Used to check if single stepping is enabled in generated code. |
1007 static ExternalReference debug_last_step_action_address(Isolate* isolate); | 1007 static ExternalReference debug_step_in_enabled_address(Isolate* isolate); |
1008 | 1008 |
1009 #ifndef V8_INTERPRETED_REGEXP | 1009 #ifndef V8_INTERPRETED_REGEXP |
1010 // C functions called from RegExp generated code. | 1010 // C functions called from RegExp generated code. |
1011 | 1011 |
1012 // Function NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16() | 1012 // Function NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16() |
1013 static ExternalReference re_case_insensitive_compare_uc16(Isolate* isolate); | 1013 static ExternalReference re_case_insensitive_compare_uc16(Isolate* isolate); |
1014 | 1014 |
1015 // Function RegExpMacroAssembler*::CheckStackGuardState() | 1015 // Function RegExpMacroAssembler*::CheckStackGuardState() |
1016 static ExternalReference re_check_stack_guard_state(Isolate* isolate); | 1016 static ExternalReference re_check_stack_guard_state(Isolate* isolate); |
1017 | 1017 |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1293 std::vector<ConstantPoolEntry> shared_entries; | 1293 std::vector<ConstantPoolEntry> shared_entries; |
1294 }; | 1294 }; |
1295 | 1295 |
1296 Label emitted_label_; // Records pc_offset of emitted pool | 1296 Label emitted_label_; // Records pc_offset of emitted pool |
1297 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1297 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1298 }; | 1298 }; |
1299 | 1299 |
1300 } // namespace internal | 1300 } // namespace internal |
1301 } // namespace v8 | 1301 } // namespace v8 |
1302 #endif // V8_ASSEMBLER_H_ | 1302 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |