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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 SafepointMode safepoint_mode); | 272 SafepointMode safepoint_mode); |
273 | 273 |
274 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, | 274 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, |
275 Safepoint::DeoptMode mode); | 275 Safepoint::DeoptMode mode); |
276 void DeoptimizeIf(Condition cc, LEnvironment* environment); | 276 void DeoptimizeIf(Condition cc, LEnvironment* environment); |
277 | 277 |
278 void AddToTranslation(Translation* translation, | 278 void AddToTranslation(Translation* translation, |
279 LOperand* op, | 279 LOperand* op, |
280 bool is_tagged, | 280 bool is_tagged, |
281 bool is_uint32, | 281 bool is_uint32, |
| 282 bool arguments_known, |
282 int arguments_index, | 283 int arguments_index, |
283 int arguments_count); | 284 int arguments_count); |
284 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); | 285 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); |
285 void PopulateDeoptimizationData(Handle<Code> code); | 286 void PopulateDeoptimizationData(Handle<Code> code); |
286 int DefineDeoptimizationLiteral(Handle<Object> literal); | 287 int DefineDeoptimizationLiteral(Handle<Object> literal); |
287 | 288 |
288 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); | 289 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
289 | 290 |
290 Register ToRegister(int index) const; | 291 Register ToRegister(int index) const; |
291 DwVfpRegister ToDoubleRegister(int index) const; | 292 DwVfpRegister ToDoubleRegister(int index) const; |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 LCodeGen* codegen_; | 504 LCodeGen* codegen_; |
504 Label entry_; | 505 Label entry_; |
505 Label exit_; | 506 Label exit_; |
506 Label* external_exit_; | 507 Label* external_exit_; |
507 int instruction_index_; | 508 int instruction_index_; |
508 }; | 509 }; |
509 | 510 |
510 } } // namespace v8::internal | 511 } } // namespace v8::internal |
511 | 512 |
512 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 513 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
OLD | NEW |