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

Side by Side Diff: src/assembler.h

Issue 332673002: Introduce intrinsic to expose debug state to generated code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/array.js ('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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 904
905 static ExternalReference math_exp_constants(int constant_index); 905 static ExternalReference math_exp_constants(int constant_index);
906 static ExternalReference math_exp_log_table(); 906 static ExternalReference math_exp_log_table();
907 907
908 static ExternalReference page_flags(Page* page); 908 static ExternalReference page_flags(Page* page);
909 909
910 static ExternalReference ForDeoptEntry(Address entry); 910 static ExternalReference ForDeoptEntry(Address entry);
911 911
912 static ExternalReference cpu_features(); 912 static ExternalReference cpu_features();
913 913
914 static ExternalReference debug_is_active_address(Isolate* isolate);
914 static ExternalReference debug_after_break_target_address(Isolate* isolate); 915 static ExternalReference debug_after_break_target_address(Isolate* isolate);
915 static ExternalReference debug_restarter_frame_function_pointer_address( 916 static ExternalReference debug_restarter_frame_function_pointer_address(
916 Isolate* isolate); 917 Isolate* isolate);
917 918
918 static ExternalReference is_profiling_address(Isolate* isolate); 919 static ExternalReference is_profiling_address(Isolate* isolate);
919 static ExternalReference invoke_function_callback(Isolate* isolate); 920 static ExternalReference invoke_function_callback(Isolate* isolate);
920 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); 921 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate);
921 922
922 Address address() const { return reinterpret_cast<Address>(address_); } 923 Address address() const { return reinterpret_cast<Address>(address_); }
923 924
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 1150
1150 private: 1151 private:
1151 int32_t multiplier_; 1152 int32_t multiplier_;
1152 int32_t shift_; 1153 int32_t shift_;
1153 }; 1154 };
1154 1155
1155 1156
1156 } } // namespace v8::internal 1157 } } // namespace v8::internal
1157 1158
1158 #endif // V8_ASSEMBLER_H_ 1159 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/array.js ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698