Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(661)

Side by Side Diff: src/assembler.h

Issue 2033223003: [debug] implement intuitive semantics for stepping over await call. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix arm64 Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/arm64/builtins-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/arm64/builtins-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698