| 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 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1075 bool IsFastArrayConstructorPrototypeChainIntact(); | 1075 bool IsFastArrayConstructorPrototypeChainIntact(); |
| 1076 | 1076 |
| 1077 CodeStubInterfaceDescriptor* | 1077 CodeStubInterfaceDescriptor* |
| 1078 code_stub_interface_descriptor(int index); | 1078 code_stub_interface_descriptor(int index); |
| 1079 | 1079 |
| 1080 enum CallDescriptorKey { | 1080 enum CallDescriptorKey { |
| 1081 KeyedCall, | 1081 KeyedCall, |
| 1082 NamedCall, | 1082 NamedCall, |
| 1083 CallHandler, | 1083 CallHandler, |
| 1084 ArgumentAdaptorCall, | 1084 ArgumentAdaptorCall, |
| 1085 ApiFunctionCall, |
| 1085 NUMBER_OF_CALL_DESCRIPTORS | 1086 NUMBER_OF_CALL_DESCRIPTORS |
| 1086 }; | 1087 }; |
| 1087 | 1088 |
| 1088 CallInterfaceDescriptor* call_descriptor(CallDescriptorKey index); | 1089 CallInterfaceDescriptor* call_descriptor(CallDescriptorKey index); |
| 1089 | 1090 |
| 1090 void IterateDeferredHandles(ObjectVisitor* visitor); | 1091 void IterateDeferredHandles(ObjectVisitor* visitor); |
| 1091 void LinkDeferredHandles(DeferredHandles* deferred_handles); | 1092 void LinkDeferredHandles(DeferredHandles* deferred_handles); |
| 1092 void UnlinkDeferredHandles(DeferredHandles* deferred_handles); | 1093 void UnlinkDeferredHandles(DeferredHandles* deferred_handles); |
| 1093 | 1094 |
| 1094 #ifdef DEBUG | 1095 #ifdef DEBUG |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1580 } | 1581 } |
| 1581 | 1582 |
| 1582 EmbeddedVector<char, 128> filename_; | 1583 EmbeddedVector<char, 128> filename_; |
| 1583 FILE* file_; | 1584 FILE* file_; |
| 1584 int scope_depth_; | 1585 int scope_depth_; |
| 1585 }; | 1586 }; |
| 1586 | 1587 |
| 1587 } } // namespace v8::internal | 1588 } } // namespace v8::internal |
| 1588 | 1589 |
| 1589 #endif // V8_ISOLATE_H_ | 1590 #endif // V8_ISOLATE_H_ |
| OLD | NEW |