OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 V(Compare) \ | 49 V(Compare) \ |
50 V(CompareIC) \ | 50 V(CompareIC) \ |
51 V(CompareNilIC) \ | 51 V(CompareNilIC) \ |
52 V(MathPow) \ | 52 V(MathPow) \ |
53 V(StringLength) \ | 53 V(StringLength) \ |
54 V(FunctionPrototype) \ | 54 V(FunctionPrototype) \ |
55 V(StoreArrayLength) \ | 55 V(StoreArrayLength) \ |
56 V(RecordWrite) \ | 56 V(RecordWrite) \ |
57 V(StoreBufferOverflow) \ | 57 V(StoreBufferOverflow) \ |
58 V(RegExpExec) \ | 58 V(RegExpExec) \ |
59 V(TranscendentalCache) \ | |
60 V(Instanceof) \ | 59 V(Instanceof) \ |
61 V(ConvertToDouble) \ | 60 V(ConvertToDouble) \ |
62 V(WriteInt32ToHeapNumber) \ | 61 V(WriteInt32ToHeapNumber) \ |
63 V(StackCheck) \ | 62 V(StackCheck) \ |
64 V(Interrupt) \ | 63 V(Interrupt) \ |
65 V(FastNewClosure) \ | 64 V(FastNewClosure) \ |
66 V(FastNewContext) \ | 65 V(FastNewContext) \ |
67 V(FastNewBlockContext) \ | 66 V(FastNewBlockContext) \ |
68 V(FastCloneShallowArray) \ | 67 V(FastCloneShallowArray) \ |
69 V(FastCloneShallowObject) \ | 68 V(FastCloneShallowObject) \ |
(...skipping 2278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2348 int MinorKey() { return 0; } | 2347 int MinorKey() { return 0; } |
2349 | 2348 |
2350 void Generate(MacroAssembler* masm); | 2349 void Generate(MacroAssembler* masm); |
2351 | 2350 |
2352 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); | 2351 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); |
2353 }; | 2352 }; |
2354 | 2353 |
2355 } } // namespace v8::internal | 2354 } } // namespace v8::internal |
2356 | 2355 |
2357 #endif // V8_CODE_STUBS_H_ | 2356 #endif // V8_CODE_STUBS_H_ |
OLD | NEW |