| OLD | NEW |
| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 const Operand& src2 = Operand(zero_reg)); | 283 const Operand& src2 = Operand(zero_reg)); |
| 284 void DeoptimizeIf(Condition cc, | 284 void DeoptimizeIf(Condition cc, |
| 285 LEnvironment* environment, | 285 LEnvironment* environment, |
| 286 Register src1 = zero_reg, | 286 Register src1 = zero_reg, |
| 287 const Operand& src2 = Operand(zero_reg)); | 287 const Operand& src2 = Operand(zero_reg)); |
| 288 void ApplyCheckIf(Condition cc, | 288 void ApplyCheckIf(Condition cc, |
| 289 LBoundsCheck* check, | 289 LBoundsCheck* check, |
| 290 Register src1 = zero_reg, | 290 Register src1 = zero_reg, |
| 291 const Operand& src2 = Operand(zero_reg)); | 291 const Operand& src2 = Operand(zero_reg)); |
| 292 | 292 |
| 293 void AddToTranslation(Translation* translation, | 293 void AddToTranslation(LEnvironment* environment, |
| 294 Translation* translation, |
| 294 LOperand* op, | 295 LOperand* op, |
| 295 bool is_tagged, | 296 bool is_tagged, |
| 296 bool is_uint32); | 297 bool is_uint32, |
| 298 int* object_index_pointer, |
| 299 int* dematerialized_index_pointer); |
| 297 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); | 300 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); |
| 298 void PopulateDeoptimizationData(Handle<Code> code); | 301 void PopulateDeoptimizationData(Handle<Code> code); |
| 299 int DefineDeoptimizationLiteral(Handle<Object> literal); | 302 int DefineDeoptimizationLiteral(Handle<Object> literal); |
| 300 | 303 |
| 301 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); | 304 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
| 302 | 305 |
| 303 Register ToRegister(int index) const; | 306 Register ToRegister(int index) const; |
| 304 DoubleRegister ToDoubleRegister(int index) const; | 307 DoubleRegister ToDoubleRegister(int index) const; |
| 305 | 308 |
| 306 void EmitIntegerMathAbs(LMathAbs* instr); | 309 void EmitIntegerMathAbs(LMathAbs* instr); |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 LCodeGen* codegen_; | 512 LCodeGen* codegen_; |
| 510 Label entry_; | 513 Label entry_; |
| 511 Label exit_; | 514 Label exit_; |
| 512 Label* external_exit_; | 515 Label* external_exit_; |
| 513 int instruction_index_; | 516 int instruction_index_; |
| 514 }; | 517 }; |
| 515 | 518 |
| 516 } } // namespace v8::internal | 519 } } // namespace v8::internal |
| 517 | 520 |
| 518 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 521 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
| OLD | NEW |