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

Side by Side Diff: src/assembler.h

Issue 254783003: Convert function.name to API-style accessor and make CallApiGetterStub serializable. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 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/arm64/macro-assembler-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 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 857
858 static ExternalReference math_exp_constants(int constant_index); 858 static ExternalReference math_exp_constants(int constant_index);
859 static ExternalReference math_exp_log_table(); 859 static ExternalReference math_exp_log_table();
860 860
861 static ExternalReference page_flags(Page* page); 861 static ExternalReference page_flags(Page* page);
862 862
863 static ExternalReference ForDeoptEntry(Address entry); 863 static ExternalReference ForDeoptEntry(Address entry);
864 864
865 static ExternalReference cpu_features(); 865 static ExternalReference cpu_features();
866 866
867 static ExternalReference is_profiling_address(Isolate* isolate);
868 static ExternalReference invoke_function_callback(Isolate* isolate);
869 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate);
870
867 Address address() const { return reinterpret_cast<Address>(address_); } 871 Address address() const { return reinterpret_cast<Address>(address_); }
868 872
869 #ifdef ENABLE_DEBUGGER_SUPPORT 873 #ifdef ENABLE_DEBUGGER_SUPPORT
870 // Function Debug::Break() 874 // Function Debug::Break()
871 static ExternalReference debug_break(Isolate* isolate); 875 static ExternalReference debug_break(Isolate* isolate);
872 876
873 // Used to check if single stepping is enabled in generated code. 877 // Used to check if single stepping is enabled in generated code.
874 static ExternalReference debug_step_in_fp_address(Isolate* isolate); 878 static ExternalReference debug_step_in_fp_address(Isolate* isolate);
875 #endif 879 #endif
876 880
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 1100
1097 private: 1101 private:
1098 int32_t multiplier_; 1102 int32_t multiplier_;
1099 int32_t shift_; 1103 int32_t shift_;
1100 }; 1104 };
1101 1105
1102 1106
1103 } } // namespace v8::internal 1107 } } // namespace v8::internal
1104 1108
1105 #endif // V8_ASSEMBLER_H_ 1109 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698