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

Side by Side Diff: src/stub-cache.h

Issue 10746: Track loop nesting across function calls when the function... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 1 month 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/runtime.cc ('k') | src/stub-cache.cc » ('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 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 static Object* ComputeCallNormal(int argc, String* name, JSObject* receiver); 141 static Object* ComputeCallNormal(int argc, String* name, JSObject* receiver);
142 142
143 static Object* ComputeCallInterceptor(int argc, 143 static Object* ComputeCallInterceptor(int argc,
144 String* name, 144 String* name,
145 Object* object, 145 Object* object,
146 JSObject* holder); 146 JSObject* holder);
147 147
148 // --- 148 // ---
149 149
150 static Object* ComputeCallInitialize(int argc); 150 static Object* ComputeCallInitialize(int argc);
151 static Object* ComputeCallInitializeInLoop(int argc);
151 static Object* ComputeCallPreMonomorphic(int argc); 152 static Object* ComputeCallPreMonomorphic(int argc);
152 static Object* ComputeCallNormal(int argc); 153 static Object* ComputeCallNormal(int argc);
153 static Object* ComputeCallMegamorphic(int argc); 154 static Object* ComputeCallMegamorphic(int argc);
154 static Object* ComputeCallMiss(int argc); 155 static Object* ComputeCallMiss(int argc);
155 156
156 // Finds the Code object stored in the Heap::non_monomorphic_cache(). 157 // Finds the Code object stored in the Heap::non_monomorphic_cache().
157 static Code* FindCallInitialize(int argc); 158 static Code* FindCallInitialize(int argc);
158 159
159 static Object* ComputeCallDebugBreak(int argc); 160 static Object* ComputeCallDebugBreak(int argc);
160 static Object* ComputeCallDebugPrepareStepIn(int argc); 161 static Object* ComputeCallDebugPrepareStepIn(int argc);
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 456
456 const ParameterCount& arguments() { return arguments_; } 457 const ParameterCount& arguments() { return arguments_; }
457 458
458 Object* GetCode(PropertyType type); 459 Object* GetCode(PropertyType type);
459 }; 460 };
460 461
461 462
462 } } // namespace v8::internal 463 } } // namespace v8::internal
463 464
464 #endif // V8_STUB_CACHE_H_ 465 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698