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

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

Issue 652041: IA32: Native access to TranscendentalCache for sin/cos. (Closed)
Patch Set: Updated to head. Removed dead code. Ignore first patch. 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
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) \
58 V(NumberToString) \ 59 V(NumberToString) \
59 V(CEntry) \ 60 V(CEntry) \
60 V(JSEntry) \ 61 V(JSEntry) \
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 157
157 class MajorKeyBits: public BitField<uint32_t, 0, kMajorBits> {}; 158 class MajorKeyBits: public BitField<uint32_t, 0, kMajorBits> {};
158 class MinorKeyBits: public BitField<uint32_t, kMajorBits, kMinorBits> {}; 159 class MinorKeyBits: public BitField<uint32_t, kMajorBits, kMinorBits> {};
159 160
160 friend class BreakPointIterator; 161 friend class BreakPointIterator;
161 }; 162 };
162 163
163 } } // namespace v8::internal 164 } } // namespace v8::internal
164 165
165 #endif // V8_CODE_STUBS_H_ 166 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/codegen.cc » ('j') | src/ia32/codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698