| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 V(FastNewClosure) \ | 48 V(FastNewClosure) \ |
| 49 V(FastNewContext) \ | 49 V(FastNewContext) \ |
| 50 V(FastCloneShallowArray) \ | 50 V(FastCloneShallowArray) \ |
| 51 V(GenericUnaryOp) \ | 51 V(GenericUnaryOp) \ |
| 52 V(RevertToNumber) \ | 52 V(RevertToNumber) \ |
| 53 V(ToBoolean) \ | 53 V(ToBoolean) \ |
| 54 V(Instanceof) \ | 54 V(Instanceof) \ |
| 55 V(CounterOp) \ | 55 V(CounterOp) \ |
| 56 V(ArgumentsAccess) \ | 56 V(ArgumentsAccess) \ |
| 57 V(RegExpExec) \ | 57 V(RegExpExec) \ |
| 58 V(NumberToString) \ |
| 58 V(CEntry) \ | 59 V(CEntry) \ |
| 59 V(JSEntry) \ | 60 V(JSEntry) \ |
| 60 V(DebuggerStatement) | 61 V(DebuggerStatement) |
| 61 | 62 |
| 62 // List of code stubs only used on ARM platforms. | 63 // List of code stubs only used on ARM platforms. |
| 63 #ifdef V8_TARGET_ARCH_ARM | 64 #ifdef V8_TARGET_ARCH_ARM |
| 64 #define CODE_STUB_LIST_ARM(V) \ | 65 #define CODE_STUB_LIST_ARM(V) \ |
| 65 V(GetProperty) \ | 66 V(GetProperty) \ |
| 66 V(SetProperty) \ | 67 V(SetProperty) \ |
| 67 V(InvokeBuiltin) \ | 68 V(InvokeBuiltin) \ |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 156 |
| 156 class MajorKeyBits: public BitField<uint32_t, 0, kMajorBits> {}; | 157 class MajorKeyBits: public BitField<uint32_t, 0, kMajorBits> {}; |
| 157 class MinorKeyBits: public BitField<uint32_t, kMajorBits, kMinorBits> {}; | 158 class MinorKeyBits: public BitField<uint32_t, kMajorBits, kMinorBits> {}; |
| 158 | 159 |
| 159 friend class BreakPointIterator; | 160 friend class BreakPointIterator; |
| 160 }; | 161 }; |
| 161 | 162 |
| 162 } } // namespace v8::internal | 163 } } // namespace v8::internal |
| 163 | 164 |
| 164 #endif // V8_CODE_STUBS_H_ | 165 #endif // V8_CODE_STUBS_H_ |
| OLD | NEW |