| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 MemOperand BuildSeqStringOperand(Register string, | 221 MemOperand BuildSeqStringOperand(Register string, |
| 222 Register temp, | 222 Register temp, |
| 223 LOperand* index, | 223 LOperand* index, |
| 224 String::Encoding encoding); | 224 String::Encoding encoding); |
| 225 void DeoptimizeBranch( | 225 void DeoptimizeBranch( |
| 226 LEnvironment* environment, | 226 LEnvironment* environment, |
| 227 BranchType branch_type, Register reg = NoReg, int bit = -1, | 227 BranchType branch_type, Register reg = NoReg, int bit = -1, |
| 228 Deoptimizer::BailoutType* override_bailout_type = NULL); | 228 Deoptimizer::BailoutType* override_bailout_type = NULL); |
| 229 void Deoptimize(LEnvironment* environment, | 229 void Deoptimize(LEnvironment* environment, |
| 230 Deoptimizer::BailoutType* override_bailout_type = NULL); | 230 Deoptimizer::BailoutType* override_bailout_type = NULL); |
| 231 void DeoptimizeIf(Condition cc, LEnvironment* environment); | 231 void DeoptimizeIf(Condition cond, LEnvironment* environment); |
| 232 void DeoptimizeIfZero(Register rt, LEnvironment* environment); | 232 void DeoptimizeIfZero(Register rt, LEnvironment* environment); |
| 233 void DeoptimizeIfNotZero(Register rt, LEnvironment* environment); | 233 void DeoptimizeIfNotZero(Register rt, LEnvironment* environment); |
| 234 void DeoptimizeIfNegative(Register rt, LEnvironment* environment); | 234 void DeoptimizeIfNegative(Register rt, LEnvironment* environment); |
| 235 void DeoptimizeIfSmi(Register rt, LEnvironment* environment); | 235 void DeoptimizeIfSmi(Register rt, LEnvironment* environment); |
| 236 void DeoptimizeIfNotSmi(Register rt, LEnvironment* environment); | 236 void DeoptimizeIfNotSmi(Register rt, LEnvironment* environment); |
| 237 void DeoptimizeIfRoot(Register rt, | 237 void DeoptimizeIfRoot(Register rt, |
| 238 Heap::RootListIndex index, | 238 Heap::RootListIndex index, |
| 239 LEnvironment* environment); | 239 LEnvironment* environment); |
| 240 void DeoptimizeIfNotRoot(Register rt, | 240 void DeoptimizeIfNotRoot(Register rt, |
| 241 Heap::RootListIndex index, | 241 Heap::RootListIndex index, |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 | 484 |
| 485 protected: | 485 protected: |
| 486 MacroAssembler* masm() const { return codegen_->masm(); } | 486 MacroAssembler* masm() const { return codegen_->masm(); } |
| 487 | 487 |
| 488 LCodeGen* codegen_; | 488 LCodeGen* codegen_; |
| 489 }; | 489 }; |
| 490 | 490 |
| 491 } } // namespace v8::internal | 491 } } // namespace v8::internal |
| 492 | 492 |
| 493 #endif // V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ | 493 #endif // V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
| OLD | NEW |