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

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

Issue 324913002: Specially handle the key of the LoadKeyed and StoreKeyed instruction for x32 port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased with bleeding_edge Created 6 years, 6 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 | « no previous file | 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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_X64_LITHIUM_CODEGEN_X64_H_ 5 #ifndef V8_X64_LITHIUM_CODEGEN_X64_H_
6 #define V8_X64_LITHIUM_CODEGEN_X64_H_ 6 #define V8_X64_LITHIUM_CODEGEN_X64_H_
7 7
8 #include "src/x64/lithium-x64.h" 8 #include "src/x64/lithium-x64.h"
9 9
10 #include "src/checks.h" 10 #include "src/checks.h"
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 void PopulateDeoptimizationData(Handle<Code> code); 224 void PopulateDeoptimizationData(Handle<Code> code);
225 int DefineDeoptimizationLiteral(Handle<Object> literal); 225 int DefineDeoptimizationLiteral(Handle<Object> literal);
226 226
227 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); 227 void PopulateDeoptimizationLiteralsWithInlinedFunctions();
228 228
229 Register ToRegister(int index) const; 229 Register ToRegister(int index) const;
230 XMMRegister ToDoubleRegister(int index) const; 230 XMMRegister ToDoubleRegister(int index) const;
231 Operand BuildFastArrayOperand( 231 Operand BuildFastArrayOperand(
232 LOperand* elements_pointer, 232 LOperand* elements_pointer,
233 LOperand* key, 233 LOperand* key,
234 Representation key_representation,
234 ElementsKind elements_kind, 235 ElementsKind elements_kind,
235 uint32_t base_offset); 236 uint32_t base_offset);
236 237
237 Operand BuildSeqStringOperand(Register string, 238 Operand BuildSeqStringOperand(Register string,
238 LOperand* index, 239 LOperand* index,
239 String::Encoding encoding); 240 String::Encoding encoding);
240 241
241 void EmitIntegerMathAbs(LMathAbs* instr); 242 void EmitIntegerMathAbs(LMathAbs* instr);
242 void EmitSmiMathAbs(LMathAbs* instr); 243 void EmitSmiMathAbs(LMathAbs* instr);
243 244
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 Label entry_; 395 Label entry_;
395 Label exit_; 396 Label exit_;
396 Label done_; 397 Label done_;
397 Label* external_exit_; 398 Label* external_exit_;
398 int instruction_index_; 399 int instruction_index_;
399 }; 400 };
400 401
401 } } // namespace v8::internal 402 } } // namespace v8::internal
402 403
403 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 404 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698