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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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_ |
OLD | NEW |