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

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

Issue 660095: Merge revision 3813 to 3930 from bleeding_edge to partial snapshots branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/partial_snapshots/
Patch Set: '' Created 10 years, 10 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/checks.h ('k') | src/code-stubs.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 30 matching lines...) Expand all
41 V(StringCompare) \ 41 V(StringCompare) \
42 V(SmiOp) \ 42 V(SmiOp) \
43 V(Compare) \ 43 V(Compare) \
44 V(RecordWrite) \ 44 V(RecordWrite) \
45 V(ConvertToDouble) \ 45 V(ConvertToDouble) \
46 V(WriteInt32ToHeapNumber) \ 46 V(WriteInt32ToHeapNumber) \
47 V(StackCheck) \ 47 V(StackCheck) \
48 V(FastNewClosure) \ 48 V(FastNewClosure) \
49 V(FastNewContext) \ 49 V(FastNewContext) \
50 V(FastCloneShallowArray) \ 50 V(FastCloneShallowArray) \
51 V(TranscendentalCache) \
51 V(GenericUnaryOp) \ 52 V(GenericUnaryOp) \
52 V(RevertToNumber) \ 53 V(RevertToNumber) \
53 V(ToBoolean) \ 54 V(ToBoolean) \
54 V(Instanceof) \ 55 V(Instanceof) \
55 V(CounterOp) \ 56 V(CounterOp) \
56 V(ArgumentsAccess) \ 57 V(ArgumentsAccess) \
57 V(RegExpExec) \ 58 V(RegExpExec) \
59 V(NumberToString) \
58 V(CEntry) \ 60 V(CEntry) \
59 V(JSEntry) \ 61 V(JSEntry) \
60 V(DebuggerStatement) 62 V(DebuggerStatement)
61 63
62 // List of code stubs only used on ARM platforms. 64 // List of code stubs only used on ARM platforms.
63 #ifdef V8_TARGET_ARCH_ARM 65 #ifdef V8_TARGET_ARCH_ARM
64 #define CODE_STUB_LIST_ARM(V) \ 66 #define CODE_STUB_LIST_ARM(V) \
65 V(GetProperty) \ 67 V(GetProperty) \
66 V(SetProperty) \ 68 V(SetProperty) \
67 V(InvokeBuiltin) \ 69 V(InvokeBuiltin) \
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 157
156 class MajorKeyBits: public BitField<uint32_t, 0, kMajorBits> {}; 158 class MajorKeyBits: public BitField<uint32_t, 0, kMajorBits> {};
157 class MinorKeyBits: public BitField<uint32_t, kMajorBits, kMinorBits> {}; 159 class MinorKeyBits: public BitField<uint32_t, kMajorBits, kMinorBits> {};
158 160
159 friend class BreakPointIterator; 161 friend class BreakPointIterator;
160 }; 162 };
161 163
162 } } // namespace v8::internal 164 } } // namespace v8::internal
163 165
164 #endif // V8_CODE_STUBS_H_ 166 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/checks.h ('k') | src/code-stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698