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

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

Issue 11346: Experimental: peridic merge from bleeding_edge. Merge... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
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/scanner.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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 Register scratch2, 333 Register scratch2,
333 Label* miss_label); 334 Label* miss_label);
334 static void GenerateLoadArrayLength(MacroAssembler* masm, 335 static void GenerateLoadArrayLength(MacroAssembler* masm,
335 Register receiver, 336 Register receiver,
336 Register scratch, 337 Register scratch,
337 Label* miss_label); 338 Label* miss_label);
338 static void GenerateLoadStringLength(MacroAssembler* masm, 339 static void GenerateLoadStringLength(MacroAssembler* masm,
339 Register receiver, 340 Register receiver,
340 Register scratch, 341 Register scratch,
341 Label* miss_label); 342 Label* miss_label);
343 static void GenerateLoadStringLength2(MacroAssembler* masm,
344 Register receiver,
345 Register scratch1,
346 Register scratch2,
347 Label* miss_label);
342 static void GenerateLoadFunctionPrototype(MacroAssembler* masm, 348 static void GenerateLoadFunctionPrototype(MacroAssembler* masm,
343 Register receiver, 349 Register receiver,
344 Register scratch1, 350 Register scratch1,
345 Register scratch2, 351 Register scratch2,
346 Label* miss_label); 352 Label* miss_label);
347 static void GenerateStoreField(MacroAssembler* masm, 353 static void GenerateStoreField(MacroAssembler* masm,
348 Builtins::Name storage_extend, 354 Builtins::Name storage_extend,
349 JSObject* object, 355 JSObject* object,
350 int index, 356 int index,
351 Map* transition, 357 Map* transition,
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 461
456 const ParameterCount& arguments() { return arguments_; } 462 const ParameterCount& arguments() { return arguments_; }
457 463
458 Object* GetCode(PropertyType type); 464 Object* GetCode(PropertyType type);
459 }; 465 };
460 466
461 467
462 } } // namespace v8::internal 468 } } // namespace v8::internal
463 469
464 #endif // V8_STUB_CACHE_H_ 470 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « src/scanner.cc ('k') | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698