Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: src/x64/code-stubs-x64.h

Issue 6366028: X64 Crankshaft: Add TypeRecordingBinaryStub to X64 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/type-info.h ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/type-info.h ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698