OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |