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

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

Issue 6852015: Support string add in crankshaft: (Closed)
Patch Set: Review fixes and ports Created 9 years, 8 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
« 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 Label* gc_required, 151 Label* gc_required,
152 SmiCodeGenerateHeapNumberResults heapnumber_results); 152 SmiCodeGenerateHeapNumberResults heapnumber_results);
153 void GenerateLoadArguments(MacroAssembler* masm); 153 void GenerateLoadArguments(MacroAssembler* masm);
154 void GenerateReturn(MacroAssembler* masm); 154 void GenerateReturn(MacroAssembler* masm);
155 void GenerateUninitializedStub(MacroAssembler* masm); 155 void GenerateUninitializedStub(MacroAssembler* masm);
156 void GenerateSmiStub(MacroAssembler* masm); 156 void GenerateSmiStub(MacroAssembler* masm);
157 void GenerateInt32Stub(MacroAssembler* masm); 157 void GenerateInt32Stub(MacroAssembler* masm);
158 void GenerateHeapNumberStub(MacroAssembler* masm); 158 void GenerateHeapNumberStub(MacroAssembler* masm);
159 void GenerateOddballStub(MacroAssembler* masm); 159 void GenerateOddballStub(MacroAssembler* masm);
160 void GenerateStringStub(MacroAssembler* masm); 160 void GenerateStringStub(MacroAssembler* masm);
161 void GenerateBothStringStub(MacroAssembler* masm);
161 void GenerateGenericStub(MacroAssembler* masm); 162 void GenerateGenericStub(MacroAssembler* masm);
162 void GenerateAddStrings(MacroAssembler* masm); 163 void GenerateAddStrings(MacroAssembler* masm);
163 void GenerateCallRuntime(MacroAssembler* masm); 164 void GenerateCallRuntime(MacroAssembler* masm);
164 165
165 void GenerateHeapResultAllocation(MacroAssembler* masm, 166 void GenerateHeapResultAllocation(MacroAssembler* masm,
166 Register result, 167 Register result,
167 Register heap_number_map, 168 Register heap_number_map,
168 Register scratch1, 169 Register scratch1,
169 Register scratch2, 170 Register scratch2,
170 Label* gc_required); 171 Label* gc_required);
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 364
364 bool NeedsImmovableCode() { return true; } 365 bool NeedsImmovableCode() { return true; }
365 366
366 const char* GetName() { return "DirectCEntryStub"; } 367 const char* GetName() { return "DirectCEntryStub"; }
367 }; 368 };
368 369
369 370
370 } } // namespace v8::internal 371 } } // namespace v8::internal
371 372
372 #endif // V8_ARM_CODE_STUBS_ARM_H_ 373 #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