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

Side by Side Diff: src/isolate.h

Issue 148333003: crankshaft support for api method calls (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/ia32/stub-cache-ia32.cc ('k') | src/stub-cache.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/ia32/stub-cache-ia32.cc ('k') | src/stub-cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698