OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |