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

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

Issue 6460038: Version 3.1.3.... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
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/x64/ic-x64.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 Condition EmitTypeofIs(Label* true_label, Label* false_label, 214 Condition EmitTypeofIs(Label* true_label, Label* false_label,
215 Register input, Handle<String> type_name); 215 Register input, Handle<String> type_name);
216 216
217 // Emits optimized code for %_IsObject(x). Preserves input register. 217 // Emits optimized code for %_IsObject(x). Preserves input register.
218 // Returns the condition on which a final split to 218 // Returns the condition on which a final split to
219 // true and false label should be made, to optimize fallthrough. 219 // true and false label should be made, to optimize fallthrough.
220 Condition EmitIsObject(Register input, 220 Condition EmitIsObject(Register input,
221 Label* is_not_object, 221 Label* is_not_object,
222 Label* is_object); 222 Label* is_object);
223 223
224 // Emits optimized code for %_IsConstructCall().
225 // Caller should branch on equal condition.
226 void EmitIsConstructCall(Register temp);
227
224 LChunk* const chunk_; 228 LChunk* const chunk_;
225 MacroAssembler* const masm_; 229 MacroAssembler* const masm_;
226 CompilationInfo* const info_; 230 CompilationInfo* const info_;
227 231
228 int current_block_; 232 int current_block_;
229 int current_instruction_; 233 int current_instruction_;
230 const ZoneList<LInstruction*>* instructions_; 234 const ZoneList<LInstruction*>* instructions_;
231 ZoneList<LEnvironment*> deoptimizations_; 235 ZoneList<LEnvironment*> deoptimizations_;
232 ZoneList<Handle<Object> > deoptimization_literals_; 236 ZoneList<Handle<Object> > deoptimization_literals_;
233 int inlined_function_count_; 237 int inlined_function_count_;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 private: 276 private:
273 LCodeGen* codegen_; 277 LCodeGen* codegen_;
274 Label entry_; 278 Label entry_;
275 Label exit_; 279 Label exit_;
276 Label* external_exit_; 280 Label* external_exit_;
277 }; 281 };
278 282
279 } } // namespace v8::internal 283 } } // namespace v8::internal
280 284
281 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 285 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/x64/ic-x64.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698