| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 return FLAG_deopt_every_n_times != 0 && !info()->IsStub(); | 231 return FLAG_deopt_every_n_times != 0 && !info()->IsStub(); |
| 232 } | 232 } |
| 233 | 233 |
| 234 void AddToTranslation(LEnvironment* environment, | 234 void AddToTranslation(LEnvironment* environment, |
| 235 Translation* translation, | 235 Translation* translation, |
| 236 LOperand* op, | 236 LOperand* op, |
| 237 bool is_tagged, | 237 bool is_tagged, |
| 238 bool is_uint32, | 238 bool is_uint32, |
| 239 int* object_index_pointer, | 239 int* object_index_pointer, |
| 240 int* dematerialized_index_pointer); | 240 int* dematerialized_index_pointer); |
| 241 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); | |
| 242 void PopulateDeoptimizationData(Handle<Code> code); | 241 void PopulateDeoptimizationData(Handle<Code> code); |
| 243 int DefineDeoptimizationLiteral(Handle<Object> literal); | 242 int DefineDeoptimizationLiteral(Handle<Object> literal); |
| 244 | 243 |
| 245 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); | 244 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
| 246 | 245 |
| 247 Register ToRegister(int index) const; | 246 Register ToRegister(int index) const; |
| 248 XMMRegister ToDoubleRegister(int index) const; | 247 XMMRegister ToDoubleRegister(int index) const; |
| 249 Operand BuildFastArrayOperand( | 248 Operand BuildFastArrayOperand( |
| 250 LOperand* elements_pointer, | 249 LOperand* elements_pointer, |
| 251 LOperand* key, | 250 LOperand* key, |
| (...skipping 161 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 |