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

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

Issue 7112010: Plumbing changes to merge various element kind implementaions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: review feedback Created 9 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 | « src/type-info.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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 void AddToTranslation(Translation* translation, 208 void AddToTranslation(Translation* translation,
209 LOperand* op, 209 LOperand* op,
210 bool is_tagged); 210 bool is_tagged);
211 void PopulateDeoptimizationData(Handle<Code> code); 211 void PopulateDeoptimizationData(Handle<Code> code);
212 int DefineDeoptimizationLiteral(Handle<Object> literal); 212 int DefineDeoptimizationLiteral(Handle<Object> literal);
213 213
214 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); 214 void PopulateDeoptimizationLiteralsWithInlinedFunctions();
215 215
216 Register ToRegister(int index) const; 216 Register ToRegister(int index) const;
217 XMMRegister ToDoubleRegister(int index) const; 217 XMMRegister ToDoubleRegister(int index) const;
218 Operand BuildExternalArrayOperand(LOperand* external_pointer, 218 Operand BuildExternalArrayOperand(
219 LOperand* key, 219 LOperand* external_pointer,
220 ExternalArrayType array_type); 220 LOperand* key,
221 JSObject::ElementsKind elements_kind);
221 222
222 // Specific math operations - used from DoUnaryMathOperation. 223 // Specific math operations - used from DoUnaryMathOperation.
223 void EmitIntegerMathAbs(LUnaryMathOperation* instr); 224 void EmitIntegerMathAbs(LUnaryMathOperation* instr);
224 void DoMathAbs(LUnaryMathOperation* instr); 225 void DoMathAbs(LUnaryMathOperation* instr);
225 void DoMathFloor(LUnaryMathOperation* instr); 226 void DoMathFloor(LUnaryMathOperation* instr);
226 void DoMathRound(LUnaryMathOperation* instr); 227 void DoMathRound(LUnaryMathOperation* instr);
227 void DoMathSqrt(LUnaryMathOperation* instr); 228 void DoMathSqrt(LUnaryMathOperation* instr);
228 void DoMathPowHalf(LUnaryMathOperation* instr); 229 void DoMathPowHalf(LUnaryMathOperation* instr);
229 void DoMathLog(LUnaryMathOperation* instr); 230 void DoMathLog(LUnaryMathOperation* instr);
230 void DoMathCos(LUnaryMathOperation* instr); 231 void DoMathCos(LUnaryMathOperation* instr);
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 private: 359 private:
359 LCodeGen* codegen_; 360 LCodeGen* codegen_;
360 Label entry_; 361 Label entry_;
361 Label exit_; 362 Label exit_;
362 Label* external_exit_; 363 Label* external_exit_;
363 }; 364 };
364 365
365 } } // namespace v8::internal 366 } } // namespace v8::internal
366 367
367 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 368 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/type-info.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698