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

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

Issue 2876011: Do integer mod via sum-of-digits technique. This benefits the date (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 5 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
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 28 matching lines...) Expand all
39 V(CallFunction) \ 39 V(CallFunction) \
40 V(GenericBinaryOp) \ 40 V(GenericBinaryOp) \
41 V(StringAdd) \ 41 V(StringAdd) \
42 V(SubString) \ 42 V(SubString) \
43 V(StringCompare) \ 43 V(StringCompare) \
44 V(SmiOp) \ 44 V(SmiOp) \
45 V(Compare) \ 45 V(Compare) \
46 V(RecordWrite) \ 46 V(RecordWrite) \
47 V(ConvertToDouble) \ 47 V(ConvertToDouble) \
48 V(WriteInt32ToHeapNumber) \ 48 V(WriteInt32ToHeapNumber) \
49 V(IntegerMod) \
49 V(StackCheck) \ 50 V(StackCheck) \
50 V(FastNewClosure) \ 51 V(FastNewClosure) \
51 V(FastNewContext) \ 52 V(FastNewContext) \
52 V(FastCloneShallowArray) \ 53 V(FastCloneShallowArray) \
53 V(TranscendentalCache) \ 54 V(TranscendentalCache) \
54 V(GenericUnaryOp) \ 55 V(GenericUnaryOp) \
55 V(RevertToNumber) \ 56 V(RevertToNumber) \
56 V(ToBoolean) \ 57 V(ToBoolean) \
57 V(Instanceof) \ 58 V(Instanceof) \
58 V(CounterOp) \ 59 V(CounterOp) \
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 168
168 class MajorKeyBits: public BitField<uint32_t, 0, kMajorBits> {}; 169 class MajorKeyBits: public BitField<uint32_t, 0, kMajorBits> {};
169 class MinorKeyBits: public BitField<uint32_t, kMajorBits, kMinorBits> {}; 170 class MinorKeyBits: public BitField<uint32_t, kMajorBits, kMinorBits> {};
170 171
171 friend class BreakPointIterator; 172 friend class BreakPointIterator;
172 }; 173 };
173 174
174 } } // namespace v8::internal 175 } } // namespace v8::internal
175 176
176 #endif // V8_CODE_STUBS_H_ 177 #endif // V8_CODE_STUBS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698