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

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
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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 void Print() { 448 void Print() {
444 PrintF("NumberToStringStub\n"); 449 PrintF("NumberToStringStub\n");
445 } 450 }
446 #endif 451 #endif
447 }; 452 };
448 453
449 454
450 } } // namespace v8::internal 455 } } // namespace v8::internal
451 456
452 #endif // V8_X64_CODE_STUBS_X64_H_ 457 #endif // V8_X64_CODE_STUBS_X64_H_
OLDNEW
« no previous file with comments | « src/type-info.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | src/x64/code-stubs-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698