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

Side by Side Diff: src/arm/code-stubs-arm.h

Issue 6744006: Add binary-op stub variant to handle oddball objects more efficiently. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 9 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 | « no previous file | src/arm/code-stubs-arm.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 Label* gc_required); 304 Label* gc_required);
305 void GenerateSmiCode(MacroAssembler* masm, 305 void GenerateSmiCode(MacroAssembler* masm,
306 Label* gc_required, 306 Label* gc_required,
307 SmiCodeGenerateHeapNumberResults heapnumber_results); 307 SmiCodeGenerateHeapNumberResults heapnumber_results);
308 void GenerateLoadArguments(MacroAssembler* masm); 308 void GenerateLoadArguments(MacroAssembler* masm);
309 void GenerateReturn(MacroAssembler* masm); 309 void GenerateReturn(MacroAssembler* masm);
310 void GenerateUninitializedStub(MacroAssembler* masm); 310 void GenerateUninitializedStub(MacroAssembler* masm);
311 void GenerateSmiStub(MacroAssembler* masm); 311 void GenerateSmiStub(MacroAssembler* masm);
312 void GenerateInt32Stub(MacroAssembler* masm); 312 void GenerateInt32Stub(MacroAssembler* masm);
313 void GenerateHeapNumberStub(MacroAssembler* masm); 313 void GenerateHeapNumberStub(MacroAssembler* masm);
314 void GenerateOddballStub(MacroAssembler* masm);
314 void GenerateStringStub(MacroAssembler* masm); 315 void GenerateStringStub(MacroAssembler* masm);
315 void GenerateGenericStub(MacroAssembler* masm); 316 void GenerateGenericStub(MacroAssembler* masm);
316 void GenerateAddStrings(MacroAssembler* masm); 317 void GenerateAddStrings(MacroAssembler* masm);
317 void GenerateCallRuntime(MacroAssembler* masm); 318 void GenerateCallRuntime(MacroAssembler* masm);
318 319
319 void GenerateHeapResultAllocation(MacroAssembler* masm, 320 void GenerateHeapResultAllocation(MacroAssembler* masm,
320 Register result, 321 Register result,
321 Register heap_number_map, 322 Register heap_number_map,
322 Register scratch1, 323 Register scratch1,
323 Register scratch2, 324 Register scratch2,
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 614
614 bool NeedsImmovableCode() { return true; } 615 bool NeedsImmovableCode() { return true; }
615 616
616 const char* GetName() { return "DirectCEntryStub"; } 617 const char* GetName() { return "DirectCEntryStub"; }
617 }; 618 };
618 619
619 620
620 } } // namespace v8::internal 621 } } // namespace v8::internal
621 622
622 #endif // V8_ARM_CODE_STUBS_ARM_H_ 623 #endif // V8_ARM_CODE_STUBS_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/code-stubs-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698