| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 Label* gc_required); | 295 Label* gc_required); |
| 296 void GenerateSmiCode(MacroAssembler* masm, | 296 void GenerateSmiCode(MacroAssembler* masm, |
| 297 Label* gc_required, | 297 Label* gc_required, |
| 298 SmiCodeGenerateHeapNumberResults heapnumber_results); | 298 SmiCodeGenerateHeapNumberResults heapnumber_results); |
| 299 void GenerateLoadArguments(MacroAssembler* masm); | 299 void GenerateLoadArguments(MacroAssembler* masm); |
| 300 void GenerateReturn(MacroAssembler* masm); | 300 void GenerateReturn(MacroAssembler* masm); |
| 301 void GenerateUninitializedStub(MacroAssembler* masm); | 301 void GenerateUninitializedStub(MacroAssembler* masm); |
| 302 void GenerateSmiStub(MacroAssembler* masm); | 302 void GenerateSmiStub(MacroAssembler* masm); |
| 303 void GenerateInt32Stub(MacroAssembler* masm); | 303 void GenerateInt32Stub(MacroAssembler* masm); |
| 304 void GenerateHeapNumberStub(MacroAssembler* masm); | 304 void GenerateHeapNumberStub(MacroAssembler* masm); |
| 305 void GenerateOddballStub(MacroAssembler* masm); |
| 305 void GenerateStringStub(MacroAssembler* masm); | 306 void GenerateStringStub(MacroAssembler* masm); |
| 306 void GenerateGenericStub(MacroAssembler* masm); | 307 void GenerateGenericStub(MacroAssembler* masm); |
| 307 void GenerateAddStrings(MacroAssembler* masm); | 308 void GenerateAddStrings(MacroAssembler* masm); |
| 308 void GenerateCallRuntime(MacroAssembler* masm); | 309 void GenerateCallRuntime(MacroAssembler* masm); |
| 309 | 310 |
| 310 void GenerateHeapResultAllocation(MacroAssembler* masm, | 311 void GenerateHeapResultAllocation(MacroAssembler* masm, |
| 311 Register result, | 312 Register result, |
| 312 Register heap_number_map, | 313 Register heap_number_map, |
| 313 Register scratch1, | 314 Register scratch1, |
| 314 Register scratch2, | 315 Register scratch2, |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 bool load_elements_from_receiver, | 649 bool load_elements_from_receiver, |
| 649 bool load_elements_map_from_elements, | 650 bool load_elements_map_from_elements, |
| 650 Label* key_not_smi, | 651 Label* key_not_smi, |
| 651 Label* value_not_smi, | 652 Label* value_not_smi, |
| 652 Label* not_pixel_array, | 653 Label* not_pixel_array, |
| 653 Label* out_of_range); | 654 Label* out_of_range); |
| 654 | 655 |
| 655 } } // namespace v8::internal | 656 } } // namespace v8::internal |
| 656 | 657 |
| 657 #endif // V8_ARM_CODE_STUBS_ARM_H_ | 658 #endif // V8_ARM_CODE_STUBS_ARM_H_ |
| OLD | NEW |