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

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

Issue 148153010: Synchronize with r15701. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
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 | Annotate | Revision Log
« no previous file with comments | « src/a64/lithium-a64.cc ('k') | src/a64/lithium-codegen-a64.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 void DoDeferredNumberTagI(LInstruction* instr, 168 void DoDeferredNumberTagI(LInstruction* instr,
169 LOperand* value, 169 LOperand* value,
170 LOperand* temp1, 170 LOperand* temp1,
171 LOperand* temp2, 171 LOperand* temp2,
172 IntegerSignedness signedness); 172 IntegerSignedness signedness);
173 void DoDeferredTaggedToI(LTaggedToI* instr, 173 void DoDeferredTaggedToI(LTaggedToI* instr,
174 LOperand* value, 174 LOperand* value,
175 LOperand* temp1, 175 LOperand* temp1,
176 LOperand* temp2); 176 LOperand* temp2);
177 void DoDeferredAllocate(LAllocate* instr); 177 void DoDeferredAllocate(LAllocate* instr);
178 void DoDeferredAllocateObject(LAllocateObject* instr);
179 178
180 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 179 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
181 Label* map_check); 180 Label* map_check);
182 181
183 static Condition TokenToCondition(Token::Value op, bool is_unsigned); 182 static Condition TokenToCondition(Token::Value op, bool is_unsigned);
184 void EmitGoto(int block); 183 void EmitGoto(int block);
185 int GetNextEmittedBlock() const; 184 int GetNextEmittedBlock() const;
186 void DoGap(LGap* instr); 185 void DoGap(LGap* instr);
187 186
188 // Generic version of EmitBranch. It contains some code to avoid emitting a 187 // Generic version of EmitBranch. It contains some code to avoid emitting a
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 477
479 protected: 478 protected:
480 MacroAssembler* masm() const { return codegen_->masm(); } 479 MacroAssembler* masm() const { return codegen_->masm(); }
481 480
482 LCodeGen* codegen_; 481 LCodeGen* codegen_;
483 }; 482 };
484 483
485 } } // namespace v8::internal 484 } } // namespace v8::internal
486 485
487 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ 486 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_
OLDNEW
« no previous file with comments | « src/a64/lithium-a64.cc ('k') | src/a64/lithium-codegen-a64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698