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

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

Issue 163153002: introduce LTaggedToSmi (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 6 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
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 146
147 // Deferred code support. 147 // Deferred code support.
148 void DoDeferredNumberTagD(LNumberTagD* instr); 148 void DoDeferredNumberTagD(LNumberTagD* instr);
149 149
150 enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 }; 150 enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 };
151 void DoDeferredNumberTagI(LInstruction* instr, 151 void DoDeferredNumberTagI(LInstruction* instr,
152 LOperand* value, 152 LOperand* value,
153 IntegerSignedness signedness); 153 IntegerSignedness signedness);
154 154
155 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done); 155 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done);
156 void DoDeferredTaggedToSmi(LTaggedToSmi* instr, Label* done);
156 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); 157 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr);
157 void DoDeferredStackCheck(LStackCheck* instr); 158 void DoDeferredStackCheck(LStackCheck* instr);
158 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); 159 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
159 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); 160 void DoDeferredStringCharFromCode(LStringCharFromCode* instr);
160 void DoDeferredAllocate(LAllocate* instr); 161 void DoDeferredAllocate(LAllocate* instr);
161 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 162 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
162 Label* map_check); 163 Label* map_check);
163 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); 164 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object);
164 165
165 // Parallel move support. 166 // Parallel move support.
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 Label exit_; 537 Label exit_;
537 Label* external_exit_; 538 Label* external_exit_;
538 Label done_; 539 Label done_;
539 int instruction_index_; 540 int instruction_index_;
540 LCodeGen::X87Stack x87_stack_; 541 LCodeGen::X87Stack x87_stack_;
541 }; 542 };
542 543
543 } } // namespace v8::internal 544 } } // namespace v8::internal
544 545
545 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 546 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698