| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 R1_UNINITIALIZED, | 239 R1_UNINITIALIZED, |
| 240 R1_CONTAINS_TARGET | 240 R1_CONTAINS_TARGET |
| 241 }; | 241 }; |
| 242 | 242 |
| 243 // Generate a direct call to a known function. Expects the function | 243 // Generate a direct call to a known function. Expects the function |
| 244 // to be in r1. | 244 // to be in r1. |
| 245 void CallKnownFunction(Handle<JSFunction> function, | 245 void CallKnownFunction(Handle<JSFunction> function, |
| 246 int formal_parameter_count, | 246 int formal_parameter_count, |
| 247 int arity, | 247 int arity, |
| 248 LInstruction* instr, | 248 LInstruction* instr, |
| 249 CallKind call_kind, | |
| 250 R1State r1_state); | 249 R1State r1_state); |
| 251 | 250 |
| 252 void RecordSafepointWithLazyDeopt(LInstruction* instr, | 251 void RecordSafepointWithLazyDeopt(LInstruction* instr, |
| 253 SafepointMode safepoint_mode); | 252 SafepointMode safepoint_mode); |
| 254 | 253 |
| 255 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, | 254 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, |
| 256 Safepoint::DeoptMode mode); | 255 Safepoint::DeoptMode mode); |
| 257 void DeoptimizeIf(Condition condition, | 256 void DeoptimizeIf(Condition condition, |
| 258 LEnvironment* environment, | 257 LEnvironment* environment, |
| 259 Deoptimizer::BailoutType bailout_type); | 258 Deoptimizer::BailoutType bailout_type); |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 LCodeGen* codegen_; | 459 LCodeGen* codegen_; |
| 461 Label entry_; | 460 Label entry_; |
| 462 Label exit_; | 461 Label exit_; |
| 463 Label* external_exit_; | 462 Label* external_exit_; |
| 464 int instruction_index_; | 463 int instruction_index_; |
| 465 }; | 464 }; |
| 466 | 465 |
| 467 } } // namespace v8::internal | 466 } } // namespace v8::internal |
| 468 | 467 |
| 469 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 468 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |