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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 | ModeBits::encode(mode_) | 263 | ModeBits::encode(mode_) |
264 | OperandTypeInfoBits::encode(operands_type_) | 264 | OperandTypeInfoBits::encode(operands_type_) |
265 | ResultTypeInfoBits::encode(result_type_); | 265 | ResultTypeInfoBits::encode(result_type_); |
266 } | 266 } |
267 | 267 |
268 void Generate(MacroAssembler* masm); | 268 void Generate(MacroAssembler* masm); |
269 void GenerateGeneric(MacroAssembler* masm); | 269 void GenerateGeneric(MacroAssembler* masm); |
270 void GenerateSmiCode(MacroAssembler* masm, | 270 void GenerateSmiCode(MacroAssembler* masm, |
271 Label* slow, | 271 Label* slow, |
272 SmiCodeGenerateHeapNumberResults heapnumber_results); | 272 SmiCodeGenerateHeapNumberResults heapnumber_results); |
| 273 void GenerateFloatingPointCode(MacroAssembler* masm, |
| 274 Label* allocation_failure, |
| 275 Label* non_numeric_failure); |
| 276 void GenerateStringAddCode(MacroAssembler* masm); |
| 277 void GenerateCallRuntimeCode(MacroAssembler* masm); |
273 void GenerateLoadArguments(MacroAssembler* masm); | 278 void GenerateLoadArguments(MacroAssembler* masm); |
274 void GenerateReturn(MacroAssembler* masm); | 279 void GenerateReturn(MacroAssembler* masm); |
275 void GenerateUninitializedStub(MacroAssembler* masm); | 280 void GenerateUninitializedStub(MacroAssembler* masm); |
276 void GenerateSmiStub(MacroAssembler* masm); | 281 void GenerateSmiStub(MacroAssembler* masm); |
277 void GenerateInt32Stub(MacroAssembler* masm); | 282 void GenerateInt32Stub(MacroAssembler* masm); |
278 void GenerateHeapNumberStub(MacroAssembler* masm); | 283 void GenerateHeapNumberStub(MacroAssembler* masm); |
279 void GenerateStringStub(MacroAssembler* masm); | 284 void GenerateStringStub(MacroAssembler* masm); |
280 void GenerateGenericStub(MacroAssembler* masm); | 285 void GenerateGenericStub(MacroAssembler* masm); |
281 | 286 |
282 void GenerateHeapResultAllocation(MacroAssembler* masm, Label* alloc_failure); | 287 void GenerateHeapResultAllocation(MacroAssembler* masm, Label* alloc_failure); |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 Register untagged_key, | 467 Register untagged_key, |
463 Register result, | 468 Register result, |
464 Label* not_pixel_array, | 469 Label* not_pixel_array, |
465 Label* key_not_smi, | 470 Label* key_not_smi, |
466 Label* out_of_range); | 471 Label* out_of_range); |
467 | 472 |
468 | 473 |
469 } } // namespace v8::internal | 474 } } // namespace v8::internal |
470 | 475 |
471 #endif // V8_X64_CODE_STUBS_X64_H_ | 476 #endif // V8_X64_CODE_STUBS_X64_H_ |
OLD | NEW |