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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 int32_t ToInteger32(LConstantOperand* op) const; | 288 int32_t ToInteger32(LConstantOperand* op) const; |
289 ExternalReference ToExternalReference(LConstantOperand* op) const; | 289 ExternalReference ToExternalReference(LConstantOperand* op) const; |
290 | 290 |
291 Operand BuildFastArrayOperand(LOperand* elements_pointer, | 291 Operand BuildFastArrayOperand(LOperand* elements_pointer, |
292 LOperand* key, | 292 LOperand* key, |
293 Representation key_representation, | 293 Representation key_representation, |
294 ElementsKind elements_kind, | 294 ElementsKind elements_kind, |
295 uint32_t offset, | 295 uint32_t offset, |
296 uint32_t additional_index = 0); | 296 uint32_t additional_index = 0); |
297 | 297 |
| 298 Operand BuildSeqStringOperand(Register string, |
| 299 LOperand* index, |
| 300 String::Encoding encoding); |
| 301 |
298 void EmitIntegerMathAbs(LMathAbs* instr); | 302 void EmitIntegerMathAbs(LMathAbs* instr); |
299 | 303 |
300 // Support for recording safepoint and position information. | 304 // Support for recording safepoint and position information. |
301 void RecordSafepoint(LPointerMap* pointers, | 305 void RecordSafepoint(LPointerMap* pointers, |
302 Safepoint::Kind kind, | 306 Safepoint::Kind kind, |
303 int arguments, | 307 int arguments, |
304 Safepoint::DeoptMode mode); | 308 Safepoint::DeoptMode mode); |
305 void RecordSafepoint(LPointerMap* pointers, Safepoint::DeoptMode mode); | 309 void RecordSafepoint(LPointerMap* pointers, Safepoint::DeoptMode mode); |
306 void RecordSafepoint(Safepoint::DeoptMode mode); | 310 void RecordSafepoint(Safepoint::DeoptMode mode); |
307 void RecordSafepointWithRegisters(LPointerMap* pointers, | 311 void RecordSafepointWithRegisters(LPointerMap* pointers, |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 Label exit_; | 532 Label exit_; |
529 Label* external_exit_; | 533 Label* external_exit_; |
530 Label done_; | 534 Label done_; |
531 int instruction_index_; | 535 int instruction_index_; |
532 LCodeGen::X87Stack x87_stack_; | 536 LCodeGen::X87Stack x87_stack_; |
533 }; | 537 }; |
534 | 538 |
535 } } // namespace v8::internal | 539 } } // namespace v8::internal |
536 | 540 |
537 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 541 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
OLD | NEW |