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

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

Issue 57123002: Reland 21774: Generate KeyedLoadGeneric with Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Turn off by default Created 7 years 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 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 XMMRegister ToDoubleRegister(int index) const; 292 XMMRegister ToDoubleRegister(int index) const;
293 X87Register ToX87Register(int index) const; 293 X87Register ToX87Register(int index) const;
294 int32_t ToRepresentation(LConstantOperand* op, const Representation& r) const; 294 int32_t ToRepresentation(LConstantOperand* op, const Representation& r) const;
295 int32_t ToInteger32(LConstantOperand* op) const; 295 int32_t ToInteger32(LConstantOperand* op) const;
296 ExternalReference ToExternalReference(LConstantOperand* op) const; 296 ExternalReference ToExternalReference(LConstantOperand* op) const;
297 297
298 Operand BuildFastArrayOperand(LOperand* elements_pointer, 298 Operand BuildFastArrayOperand(LOperand* elements_pointer,
299 LOperand* key, 299 LOperand* key,
300 Representation key_representation, 300 Representation key_representation,
301 ElementsKind elements_kind, 301 ElementsKind elements_kind,
302 uint32_t offset, 302 uint32_t base_offset);
303 uint32_t additional_index = 0);
304 303
305 Operand BuildSeqStringOperand(Register string, 304 Operand BuildSeqStringOperand(Register string,
306 LOperand* index, 305 LOperand* index,
307 String::Encoding encoding); 306 String::Encoding encoding);
308 307
309 void EmitIntegerMathAbs(LMathAbs* instr); 308 void EmitIntegerMathAbs(LMathAbs* instr);
310 309
311 // Support for recording safepoint and position information. 310 // Support for recording safepoint and position information.
312 void RecordSafepoint(LPointerMap* pointers, 311 void RecordSafepoint(LPointerMap* pointers,
313 Safepoint::Kind kind, 312 Safepoint::Kind kind,
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 Label exit_; 537 Label exit_;
539 Label* external_exit_; 538 Label* external_exit_;
540 Label done_; 539 Label done_;
541 int instruction_index_; 540 int instruction_index_;
542 LCodeGen::X87Stack x87_stack_; 541 LCodeGen::X87Stack x87_stack_;
543 }; 542 };
544 543
545 } } // namespace v8::internal 544 } } // namespace v8::internal
546 545
547 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 546 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698