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

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

Issue 6834020: ARM: Fix a number of issues with running without VFPv3 support (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 | 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 } 140 }
141 141
142 void Generate(MacroAssembler* masm); 142 void Generate(MacroAssembler* masm);
143 void GenerateGeneric(MacroAssembler* masm); 143 void GenerateGeneric(MacroAssembler* masm);
144 void GenerateSmiSmiOperation(MacroAssembler* masm); 144 void GenerateSmiSmiOperation(MacroAssembler* masm);
145 void GenerateFPOperation(MacroAssembler* masm, 145 void GenerateFPOperation(MacroAssembler* masm,
146 bool smi_operands, 146 bool smi_operands,
147 Label* not_numbers, 147 Label* not_numbers,
148 Label* gc_required); 148 Label* gc_required);
149 void GenerateSmiCode(MacroAssembler* masm, 149 void GenerateSmiCode(MacroAssembler* masm,
150 Label* use_runtime,
150 Label* gc_required, 151 Label* gc_required,
151 SmiCodeGenerateHeapNumberResults heapnumber_results); 152 SmiCodeGenerateHeapNumberResults heapnumber_results);
152 void GenerateLoadArguments(MacroAssembler* masm); 153 void GenerateLoadArguments(MacroAssembler* masm);
153 void GenerateReturn(MacroAssembler* masm); 154 void GenerateReturn(MacroAssembler* masm);
154 void GenerateUninitializedStub(MacroAssembler* masm); 155 void GenerateUninitializedStub(MacroAssembler* masm);
155 void GenerateSmiStub(MacroAssembler* masm); 156 void GenerateSmiStub(MacroAssembler* masm);
156 void GenerateInt32Stub(MacroAssembler* masm); 157 void GenerateInt32Stub(MacroAssembler* masm);
157 void GenerateHeapNumberStub(MacroAssembler* masm); 158 void GenerateHeapNumberStub(MacroAssembler* masm);
158 void GenerateOddballStub(MacroAssembler* masm); 159 void GenerateOddballStub(MacroAssembler* masm);
159 void GenerateStringStub(MacroAssembler* masm); 160 void GenerateStringStub(MacroAssembler* masm);
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 363
363 bool NeedsImmovableCode() { return true; } 364 bool NeedsImmovableCode() { return true; }
364 365
365 const char* GetName() { return "DirectCEntryStub"; } 366 const char* GetName() { return "DirectCEntryStub"; }
366 }; 367 };
367 368
368 369
369 } } // namespace v8::internal 370 } } // namespace v8::internal
370 371
371 #endif // V8_ARM_CODE_STUBS_ARM_H_ 372 #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