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

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

Issue 6992061: Untank the build. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 7 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 25 matching lines...) Expand all
36 36
37 // List of code stubs used on all platforms. 37 // List of code stubs used on all platforms.
38 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \ 38 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \
39 V(CallFunction) \ 39 V(CallFunction) \
40 V(UnaryOp) \ 40 V(UnaryOp) \
41 V(BinaryOp) \ 41 V(BinaryOp) \
42 V(StringAdd) \ 42 V(StringAdd) \
43 V(SubString) \ 43 V(SubString) \
44 V(StringCompare) \ 44 V(StringCompare) \
45 V(Compare) \ 45 V(Compare) \
46 V(CompareIC) \
46 V(MathPow) \ 47 V(MathPow) \
47 V(TranscendentalCache) \ 48 V(TranscendentalCache) \
48 V(Instanceof) \ 49 V(Instanceof) \
49 /* All stubs above this line only exist in a few versions, which are */ \ 50 /* All stubs above this line only exist in a few versions, which are */ \
50 /* generated ahead of time. Therefore compiling a call to one of */ \ 51 /* generated ahead of time. Therefore compiling a call to one of */ \
51 /* them can't cause a new stub to be compiled, so compiling a call to */ \ 52 /* them can't cause a new stub to be compiled, so compiling a call to */ \
52 /* them is GC safe. The ones below this line exist in many variants */ \ 53 /* them is GC safe. The ones below this line exist in many variants */ \
53 /* so code compiling a call to one can cause a GC. This means they */ \ 54 /* so code compiling a call to one can cause a GC. This means they */ \
54 /* can't be called from other stubs, since stub generation code is */ \ 55 /* can't be called from other stubs, since stub generation code is */ \
55 /* not GC safe. */ \ 56 /* not GC safe. */ \
(...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 DECLARE_ARRAY_STUB_PRINT(KeyedStoreExternalArrayStub) 1008 DECLARE_ARRAY_STUB_PRINT(KeyedStoreExternalArrayStub)
1008 1009
1009 protected: 1010 protected:
1010 ExternalArrayType array_type_; 1011 ExternalArrayType array_type_;
1011 }; 1012 };
1012 1013
1013 1014
1014 } } // namespace v8::internal 1015 } } // namespace v8::internal
1015 1016
1016 #endif // V8_CODE_STUBS_H_ 1017 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698