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