| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 Register scratch, | 203 Register scratch, |
| 204 int* offset, | 204 int* offset, |
| 205 AllocationSiteMode mode); | 205 AllocationSiteMode mode); |
| 206 | 206 |
| 207 // Emits optimized code for %_IsString(x). Preserves input register. | 207 // Emits optimized code for %_IsString(x). Preserves input register. |
| 208 // Returns the condition on which a final split to | 208 // Returns the condition on which a final split to |
| 209 // true and false label should be made, to optimize fallthrough. | 209 // true and false label should be made, to optimize fallthrough. |
| 210 Condition EmitIsString(Register input, Register temp1, Label* is_not_string, | 210 Condition EmitIsString(Register input, Register temp1, Label* is_not_string, |
| 211 SmiCheck check_needed); | 211 SmiCheck check_needed); |
| 212 | 212 |
| 213 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); | |
| 214 int DefineDeoptimizationLiteral(Handle<Object> literal); | 213 int DefineDeoptimizationLiteral(Handle<Object> literal); |
| 215 void PopulateDeoptimizationData(Handle<Code> code); | 214 void PopulateDeoptimizationData(Handle<Code> code); |
| 216 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); | 215 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
| 217 | 216 |
| 218 MemOperand BuildSeqStringOperand(Register string, | 217 MemOperand BuildSeqStringOperand(Register string, |
| 219 Register temp, | 218 Register temp, |
| 220 LOperand* index, | 219 LOperand* index, |
| 221 String::Encoding encoding); | 220 String::Encoding encoding); |
| 222 void Deoptimize(LEnvironment* environment); | 221 void Deoptimize(LEnvironment* environment); |
| 223 void Deoptimize(LEnvironment* environment, | 222 void Deoptimize(LEnvironment* environment, |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 | 460 |
| 462 protected: | 461 protected: |
| 463 MacroAssembler* masm() const { return codegen_->masm(); } | 462 MacroAssembler* masm() const { return codegen_->masm(); } |
| 464 | 463 |
| 465 LCodeGen* codegen_; | 464 LCodeGen* codegen_; |
| 466 }; | 465 }; |
| 467 | 466 |
| 468 } } // namespace v8::internal | 467 } } // namespace v8::internal |
| 469 | 468 |
| 470 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ | 469 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ |
| OLD | NEW |