| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 void DeoptimizeIf(Condition condition, LEnvironment* environment); | 260 void DeoptimizeIf(Condition condition, LEnvironment* environment); |
| 261 void ApplyCheckIf(Condition condition, LBoundsCheck* check); | 261 void ApplyCheckIf(Condition condition, LBoundsCheck* check); |
| 262 | 262 |
| 263 void AddToTranslation(LEnvironment* environment, | 263 void AddToTranslation(LEnvironment* environment, |
| 264 Translation* translation, | 264 Translation* translation, |
| 265 LOperand* op, | 265 LOperand* op, |
| 266 bool is_tagged, | 266 bool is_tagged, |
| 267 bool is_uint32, | 267 bool is_uint32, |
| 268 int* object_index_pointer, | 268 int* object_index_pointer, |
| 269 int* dematerialized_index_pointer); | 269 int* dematerialized_index_pointer); |
| 270 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); | |
| 271 void PopulateDeoptimizationData(Handle<Code> code); | 270 void PopulateDeoptimizationData(Handle<Code> code); |
| 272 int DefineDeoptimizationLiteral(Handle<Object> literal); | 271 int DefineDeoptimizationLiteral(Handle<Object> literal); |
| 273 | 272 |
| 274 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); | 273 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
| 275 | 274 |
| 276 Register ToRegister(int index) const; | 275 Register ToRegister(int index) const; |
| 277 DwVfpRegister ToDoubleRegister(int index) const; | 276 DwVfpRegister ToDoubleRegister(int index) const; |
| 278 | 277 |
| 279 MemOperand BuildSeqStringOperand(Register string, | 278 MemOperand BuildSeqStringOperand(Register string, |
| 280 LOperand* index, | 279 LOperand* index, |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 LCodeGen* codegen_; | 460 LCodeGen* codegen_; |
| 462 Label entry_; | 461 Label entry_; |
| 463 Label exit_; | 462 Label exit_; |
| 464 Label* external_exit_; | 463 Label* external_exit_; |
| 465 int instruction_index_; | 464 int instruction_index_; |
| 466 }; | 465 }; |
| 467 | 466 |
| 468 } } // namespace v8::internal | 467 } } // namespace v8::internal |
| 469 | 468 |
| 470 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 469 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |