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

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

Powered by Google App Engine
This is Rietveld 408576698