| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 SafepointMode safepoint_mode); | 254 SafepointMode safepoint_mode); |
| 255 | 255 |
| 256 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, | 256 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, |
| 257 Safepoint::DeoptMode mode); | 257 Safepoint::DeoptMode mode); |
| 258 void DeoptimizeIf(Condition cc, LEnvironment* environment); | 258 void DeoptimizeIf(Condition cc, LEnvironment* environment); |
| 259 | 259 |
| 260 void AddToTranslation(Translation* translation, | 260 void AddToTranslation(Translation* translation, |
| 261 LOperand* op, | 261 LOperand* op, |
| 262 bool is_tagged, | 262 bool is_tagged, |
| 263 bool is_uint32, | 263 bool is_uint32, |
| 264 bool arguments_known, |
| 264 int arguments_index, | 265 int arguments_index, |
| 265 int arguments_count); | 266 int arguments_count); |
| 266 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); | 267 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); |
| 267 void PopulateDeoptimizationData(Handle<Code> code); | 268 void PopulateDeoptimizationData(Handle<Code> code); |
| 268 int DefineDeoptimizationLiteral(Handle<Object> literal); | 269 int DefineDeoptimizationLiteral(Handle<Object> literal); |
| 269 | 270 |
| 270 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); | 271 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
| 271 | 272 |
| 272 Register ToRegister(int index) const; | 273 Register ToRegister(int index) const; |
| 273 XMMRegister ToDoubleRegister(int index) const; | 274 XMMRegister ToDoubleRegister(int index) const; |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 LCodeGen* codegen_; | 467 LCodeGen* codegen_; |
| 467 Label entry_; | 468 Label entry_; |
| 468 Label exit_; | 469 Label exit_; |
| 469 Label* external_exit_; | 470 Label* external_exit_; |
| 470 int instruction_index_; | 471 int instruction_index_; |
| 471 }; | 472 }; |
| 472 | 473 |
| 473 } } // namespace v8::internal | 474 } } // namespace v8::internal |
| 474 | 475 |
| 475 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 476 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |