Index: src/arm64/lithium-codegen-arm64.h |
diff --git a/src/arm64/lithium-codegen-arm64.h b/src/arm64/lithium-codegen-arm64.h |
index 08a699d0e52da5ab354262eacc01856d6a6981b9..fe16a4e59ccdb1154c95dbe5c7ca02caf994229a 100644 |
--- a/src/arm64/lithium-codegen-arm64.h |
+++ b/src/arm64/lithium-codegen-arm64.h |
@@ -213,31 +213,38 @@ class LCodeGen: public LCodeGenBase { |
Register temp, |
LOperand* index, |
String::Encoding encoding); |
- void DeoptimizeBranch(LInstruction* instr, const char* detail, |
+ void DeoptimizeBranch(LInstruction* instr, |
+ Deoptimizer::DeoptReason deopt_reason, |
BranchType branch_type, Register reg = NoReg, |
int bit = -1, |
Deoptimizer::BailoutType* override_bailout_type = NULL); |
- void Deoptimize(LInstruction* instr, const char* detail, |
+ void Deoptimize(LInstruction* instr, Deoptimizer::DeoptReason deopt_reason, |
Deoptimizer::BailoutType* override_bailout_type = NULL); |
- void DeoptimizeIf(Condition cond, LInstruction* instr, const char* detail); |
- void DeoptimizeIfZero(Register rt, LInstruction* instr, const char* detail); |
+ void DeoptimizeIf(Condition cond, LInstruction* instr, |
+ Deoptimizer::DeoptReason deopt_reason); |
+ void DeoptimizeIfZero(Register rt, LInstruction* instr, |
+ Deoptimizer::DeoptReason deopt_reason); |
void DeoptimizeIfNotZero(Register rt, LInstruction* instr, |
- const char* detail); |
+ Deoptimizer::DeoptReason deopt_reason); |
void DeoptimizeIfNegative(Register rt, LInstruction* instr, |
- const char* detail); |
- void DeoptimizeIfSmi(Register rt, LInstruction* instr, const char* detail); |
- void DeoptimizeIfNotSmi(Register rt, LInstruction* instr, const char* detail); |
+ Deoptimizer::DeoptReason deopt_reason); |
+ void DeoptimizeIfSmi(Register rt, LInstruction* instr, |
+ Deoptimizer::DeoptReason deopt_reason); |
+ void DeoptimizeIfNotSmi(Register rt, LInstruction* instr, |
+ Deoptimizer::DeoptReason deopt_reason); |
void DeoptimizeIfRoot(Register rt, Heap::RootListIndex index, |
- LInstruction* instr, const char* detail); |
+ LInstruction* instr, |
+ Deoptimizer::DeoptReason deopt_reason); |
void DeoptimizeIfNotRoot(Register rt, Heap::RootListIndex index, |
- LInstruction* instr, const char* detail); |
+ LInstruction* instr, |
+ Deoptimizer::DeoptReason deopt_reason); |
void DeoptimizeIfNotHeapNumber(Register object, LInstruction* instr); |
void DeoptimizeIfMinusZero(DoubleRegister input, LInstruction* instr, |
- const char* detail); |
+ Deoptimizer::DeoptReason deopt_reason); |
void DeoptimizeIfBitSet(Register rt, int bit, LInstruction* instr, |
- const char* detail); |
+ Deoptimizer::DeoptReason deopt_reason); |
void DeoptimizeIfBitClear(Register rt, int bit, LInstruction* instr, |
- const char* detail); |
+ Deoptimizer::DeoptReason deopt_reason); |
MemOperand PrepareKeyedExternalArrayOperand(Register key, |
Register base, |