OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 Label* allocation_failure, | 282 Label* allocation_failure, |
283 Label* non_numeric_failure); | 283 Label* non_numeric_failure); |
284 void GenerateStringAddCode(MacroAssembler* masm); | 284 void GenerateStringAddCode(MacroAssembler* masm); |
285 void GenerateCallRuntimeCode(MacroAssembler* masm); | 285 void GenerateCallRuntimeCode(MacroAssembler* masm); |
286 void GenerateLoadArguments(MacroAssembler* masm); | 286 void GenerateLoadArguments(MacroAssembler* masm); |
287 void GenerateReturn(MacroAssembler* masm); | 287 void GenerateReturn(MacroAssembler* masm); |
288 void GenerateUninitializedStub(MacroAssembler* masm); | 288 void GenerateUninitializedStub(MacroAssembler* masm); |
289 void GenerateSmiStub(MacroAssembler* masm); | 289 void GenerateSmiStub(MacroAssembler* masm); |
290 void GenerateInt32Stub(MacroAssembler* masm); | 290 void GenerateInt32Stub(MacroAssembler* masm); |
291 void GenerateHeapNumberStub(MacroAssembler* masm); | 291 void GenerateHeapNumberStub(MacroAssembler* masm); |
| 292 void GenerateOddballStub(MacroAssembler* masm); |
292 void GenerateStringStub(MacroAssembler* masm); | 293 void GenerateStringStub(MacroAssembler* masm); |
293 void GenerateGenericStub(MacroAssembler* masm); | 294 void GenerateGenericStub(MacroAssembler* masm); |
294 | 295 |
295 void GenerateHeapResultAllocation(MacroAssembler* masm, Label* alloc_failure); | 296 void GenerateHeapResultAllocation(MacroAssembler* masm, Label* alloc_failure); |
296 void GenerateRegisterArgsPush(MacroAssembler* masm); | 297 void GenerateRegisterArgsPush(MacroAssembler* masm); |
297 void GenerateTypeTransition(MacroAssembler* masm); | 298 void GenerateTypeTransition(MacroAssembler* masm); |
298 void GenerateTypeTransitionWithSavedArgs(MacroAssembler* masm); | 299 void GenerateTypeTransitionWithSavedArgs(MacroAssembler* masm); |
299 | 300 |
300 virtual int GetCodeKind() { return Code::TYPE_RECORDING_BINARY_OP_IC; } | 301 virtual int GetCodeKind() { return Code::TYPE_RECORDING_BINARY_OP_IC; } |
301 | 302 |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 void Print() { | 468 void Print() { |
468 PrintF("NumberToStringStub\n"); | 469 PrintF("NumberToStringStub\n"); |
469 } | 470 } |
470 #endif | 471 #endif |
471 }; | 472 }; |
472 | 473 |
473 | 474 |
474 } } // namespace v8::internal | 475 } } // namespace v8::internal |
475 | 476 |
476 #endif // V8_X64_CODE_STUBS_X64_H_ | 477 #endif // V8_X64_CODE_STUBS_X64_H_ |
OLD | NEW |