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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 int* dematerialized_index_pointer); | 270 int* dematerialized_index_pointer); |
271 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); | 271 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); |
272 void PopulateDeoptimizationData(Handle<Code> code); | 272 void PopulateDeoptimizationData(Handle<Code> code); |
273 int DefineDeoptimizationLiteral(Handle<Object> literal); | 273 int DefineDeoptimizationLiteral(Handle<Object> literal); |
274 | 274 |
275 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); | 275 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
276 | 276 |
277 Register ToRegister(int index) const; | 277 Register ToRegister(int index) const; |
278 DoubleRegister ToDoubleRegister(int index) const; | 278 DoubleRegister ToDoubleRegister(int index) const; |
279 | 279 |
| 280 MemOperand BuildSeqStringOperand(Register string, |
| 281 LOperand* index, |
| 282 String::Encoding encoding); |
| 283 |
280 void EmitIntegerMathAbs(LMathAbs* instr); | 284 void EmitIntegerMathAbs(LMathAbs* instr); |
281 | 285 |
282 // Support for recording safepoint and position information. | 286 // Support for recording safepoint and position information. |
283 void RecordSafepoint(LPointerMap* pointers, | 287 void RecordSafepoint(LPointerMap* pointers, |
284 Safepoint::Kind kind, | 288 Safepoint::Kind kind, |
285 int arguments, | 289 int arguments, |
286 Safepoint::DeoptMode mode); | 290 Safepoint::DeoptMode mode); |
287 void RecordSafepoint(LPointerMap* pointers, Safepoint::DeoptMode mode); | 291 void RecordSafepoint(LPointerMap* pointers, Safepoint::DeoptMode mode); |
288 void RecordSafepoint(Safepoint::DeoptMode mode); | 292 void RecordSafepoint(Safepoint::DeoptMode mode); |
289 void RecordSafepointWithRegisters(LPointerMap* pointers, | 293 void RecordSafepointWithRegisters(LPointerMap* pointers, |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 LCodeGen* codegen_; | 477 LCodeGen* codegen_; |
474 Label entry_; | 478 Label entry_; |
475 Label exit_; | 479 Label exit_; |
476 Label* external_exit_; | 480 Label* external_exit_; |
477 int instruction_index_; | 481 int instruction_index_; |
478 }; | 482 }; |
479 | 483 |
480 } } // namespace v8::internal | 484 } } // namespace v8::internal |
481 | 485 |
482 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 486 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
OLD | NEW |