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

Side by Side Diff: src/x64/lithium-codegen-x64.h

Issue 9615012: Port r10939 to x64 and arm (inline Math.random in crankshaft). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 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/ia32/lithium-codegen-ia32.cc ('k') | src/x64/lithium-codegen-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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 // Finish the code by setting stack height, safepoint, and bailout 91 // Finish the code by setting stack height, safepoint, and bailout
92 // information on it. 92 // information on it.
93 void FinishCode(Handle<Code> code); 93 void FinishCode(Handle<Code> code);
94 94
95 // Deferred code support. 95 // Deferred code support.
96 void DoDeferredNumberTagD(LNumberTagD* instr); 96 void DoDeferredNumberTagD(LNumberTagD* instr);
97 void DoDeferredTaggedToI(LTaggedToI* instr); 97 void DoDeferredTaggedToI(LTaggedToI* instr);
98 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); 98 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr);
99 void DoDeferredStackCheck(LStackCheck* instr); 99 void DoDeferredStackCheck(LStackCheck* instr);
100 void DoDeferredRandom(LRandom* instr);
100 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); 101 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
101 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); 102 void DoDeferredStringCharFromCode(LStringCharFromCode* instr);
102 void DoDeferredAllocateObject(LAllocateObject* instr); 103 void DoDeferredAllocateObject(LAllocateObject* instr);
103 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 104 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
104 Label* map_check); 105 Label* map_check);
105 106
106 void DoCheckMapCommon(Register reg, Handle<Map> map, 107 void DoCheckMapCommon(Register reg, Handle<Map> map,
107 CompareMapMode mode, LEnvironment* env); 108 CompareMapMode mode, LEnvironment* env);
108 109
109 // Parallel move support. 110 // Parallel move support.
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 LCodeGen* codegen_; 391 LCodeGen* codegen_;
391 Label entry_; 392 Label entry_;
392 Label exit_; 393 Label exit_;
393 Label* external_exit_; 394 Label* external_exit_;
394 int instruction_index_; 395 int instruction_index_;
395 }; 396 };
396 397
397 } } // namespace v8::internal 398 } } // namespace v8::internal
398 399
399 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 400 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698