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

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

Issue 7631020: Version 3.5.6. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 9 years, 4 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/ia32/full-codegen-ia32.cc ('k') | src/ia32/lithium-codegen-ia32.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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 LOperand* op, 215 LOperand* op,
216 bool is_tagged); 216 bool is_tagged);
217 void PopulateDeoptimizationData(Handle<Code> code); 217 void PopulateDeoptimizationData(Handle<Code> code);
218 int DefineDeoptimizationLiteral(Handle<Object> literal); 218 int DefineDeoptimizationLiteral(Handle<Object> literal);
219 219
220 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); 220 void PopulateDeoptimizationLiteralsWithInlinedFunctions();
221 221
222 Register ToRegister(int index) const; 222 Register ToRegister(int index) const;
223 XMMRegister ToDoubleRegister(int index) const; 223 XMMRegister ToDoubleRegister(int index) const;
224 int ToInteger32(LConstantOperand* op) const; 224 int ToInteger32(LConstantOperand* op) const;
225 Operand BuildFastArrayOperand(LOperand* external_pointer, 225 Operand BuildFastArrayOperand(LOperand* elements_pointer,
226 LOperand* key, 226 LOperand* key,
227 JSObject::ElementsKind elements_kind, 227 JSObject::ElementsKind elements_kind,
228 uint32_t offset); 228 uint32_t offset);
229 229
230 // Specific math operations - used from DoUnaryMathOperation. 230 // Specific math operations - used from DoUnaryMathOperation.
231 void EmitIntegerMathAbs(LUnaryMathOperation* instr); 231 void EmitIntegerMathAbs(LUnaryMathOperation* instr);
232 void DoMathAbs(LUnaryMathOperation* instr); 232 void DoMathAbs(LUnaryMathOperation* instr);
233 void DoMathFloor(LUnaryMathOperation* instr); 233 void DoMathFloor(LUnaryMathOperation* instr);
234 void DoMathRound(LUnaryMathOperation* instr); 234 void DoMathRound(LUnaryMathOperation* instr);
235 void DoMathSqrt(LUnaryMathOperation* instr); 235 void DoMathSqrt(LUnaryMathOperation* instr);
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 private: 364 private:
365 LCodeGen* codegen_; 365 LCodeGen* codegen_;
366 Label entry_; 366 Label entry_;
367 Label exit_; 367 Label exit_;
368 Label* external_exit_; 368 Label* external_exit_;
369 }; 369 };
370 370
371 } } // namespace v8::internal 371 } } // namespace v8::internal
372 372
373 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 373 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/full-codegen-ia32.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698