| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |