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

Side by Side Diff: src/code-stubs.h

Issue 109653013: MIPS: Improve registers saving for safepoints in deferred code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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 | « no previous file | src/mips/code-stubs-mips.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 V(InvokeBuiltin) \ 107 V(InvokeBuiltin) \
108 V(DirectCEntry) 108 V(DirectCEntry)
109 #else 109 #else
110 #define CODE_STUB_LIST_ARM(V) 110 #define CODE_STUB_LIST_ARM(V)
111 #endif 111 #endif
112 112
113 // List of code stubs only used on MIPS platforms. 113 // List of code stubs only used on MIPS platforms.
114 #if V8_TARGET_ARCH_MIPS 114 #if V8_TARGET_ARCH_MIPS
115 #define CODE_STUB_LIST_MIPS(V) \ 115 #define CODE_STUB_LIST_MIPS(V) \
116 V(RegExpCEntry) \ 116 V(RegExpCEntry) \
117 V(DirectCEntry) 117 V(DirectCEntry) \
118 V(StoreRegistersState) \
119 V(RestoreRegistersState)
118 #else 120 #else
119 #define CODE_STUB_LIST_MIPS(V) 121 #define CODE_STUB_LIST_MIPS(V)
120 #endif 122 #endif
121 123
122 // Combined list of code stubs. 124 // Combined list of code stubs.
123 #define CODE_STUB_LIST(V) \ 125 #define CODE_STUB_LIST(V) \
124 CODE_STUB_LIST_ALL_PLATFORMS(V) \ 126 CODE_STUB_LIST_ALL_PLATFORMS(V) \
125 CODE_STUB_LIST_ARM(V) \ 127 CODE_STUB_LIST_ARM(V) \
126 CODE_STUB_LIST_MIPS(V) 128 CODE_STUB_LIST_MIPS(V)
127 129
(...skipping 2232 matching lines...) Expand 10 before | Expand all | Expand 10 after
2360 int MinorKey() { return 0; } 2362 int MinorKey() { return 0; }
2361 2363
2362 void Generate(MacroAssembler* masm); 2364 void Generate(MacroAssembler* masm);
2363 2365
2364 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); 2366 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub);
2365 }; 2367 };
2366 2368
2367 } } // namespace v8::internal 2369 } } // namespace v8::internal
2368 2370
2369 #endif // V8_CODE_STUBS_H_ 2371 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « no previous file | src/mips/code-stubs-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698