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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 int DefineDeoptimizationLiteral(Handle<Object> literal); | 243 int DefineDeoptimizationLiteral(Handle<Object> literal); |
244 | 244 |
245 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); | 245 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
246 | 246 |
247 Register ToRegister(int index) const; | 247 Register ToRegister(int index) const; |
248 XMMRegister ToDoubleRegister(int index) const; | 248 XMMRegister ToDoubleRegister(int index) const; |
249 Operand BuildFastArrayOperand( | 249 Operand BuildFastArrayOperand( |
250 LOperand* elements_pointer, | 250 LOperand* elements_pointer, |
251 LOperand* key, | 251 LOperand* key, |
252 ElementsKind elements_kind, | 252 ElementsKind elements_kind, |
253 uint32_t offset, | 253 uint32_t offset); |
254 uint32_t additional_index = 0); | |
255 | 254 |
256 Operand BuildSeqStringOperand(Register string, | 255 Operand BuildSeqStringOperand(Register string, |
257 LOperand* index, | 256 LOperand* index, |
258 String::Encoding encoding); | 257 String::Encoding encoding); |
259 | 258 |
260 void EmitIntegerMathAbs(LMathAbs* instr); | 259 void EmitIntegerMathAbs(LMathAbs* instr); |
261 void EmitSmiMathAbs(LMathAbs* instr); | 260 void EmitSmiMathAbs(LMathAbs* instr); |
262 | 261 |
263 // Support for recording safepoint and position information. | 262 // Support for recording safepoint and position information. |
264 void RecordSafepoint(LPointerMap* pointers, | 263 void RecordSafepoint(LPointerMap* pointers, |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 Label entry_; | 412 Label entry_; |
414 Label exit_; | 413 Label exit_; |
415 Label done_; | 414 Label done_; |
416 Label* external_exit_; | 415 Label* external_exit_; |
417 int instruction_index_; | 416 int instruction_index_; |
418 }; | 417 }; |
419 | 418 |
420 } } // namespace v8::internal | 419 } } // namespace v8::internal |
421 | 420 |
422 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 421 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |