OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ | 5 #ifndef V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
6 #define V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ | 6 #define V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
7 | 7 |
8 #include "src/arm64/lithium-arm64.h" | 8 #include "src/arm64/lithium-arm64.h" |
9 | 9 |
10 #include "src/arm64/lithium-gap-resolver-arm64.h" | 10 #include "src/arm64/lithium-gap-resolver-arm64.h" |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 void DeoptimizeIf(Condition cond, LInstruction* instr); | 221 void DeoptimizeIf(Condition cond, LInstruction* instr); |
222 void DeoptimizeIfZero(Register rt, LInstruction* instr); | 222 void DeoptimizeIfZero(Register rt, LInstruction* instr); |
223 void DeoptimizeIfNotZero(Register rt, LInstruction* instr); | 223 void DeoptimizeIfNotZero(Register rt, LInstruction* instr); |
224 void DeoptimizeIfNegative(Register rt, LInstruction* instr); | 224 void DeoptimizeIfNegative(Register rt, LInstruction* instr); |
225 void DeoptimizeIfSmi(Register rt, LInstruction* instr); | 225 void DeoptimizeIfSmi(Register rt, LInstruction* instr); |
226 void DeoptimizeIfNotSmi(Register rt, LInstruction* instr); | 226 void DeoptimizeIfNotSmi(Register rt, LInstruction* instr); |
227 void DeoptimizeIfRoot(Register rt, Heap::RootListIndex index, | 227 void DeoptimizeIfRoot(Register rt, Heap::RootListIndex index, |
228 LInstruction* instr); | 228 LInstruction* instr); |
229 void DeoptimizeIfNotRoot(Register rt, Heap::RootListIndex index, | 229 void DeoptimizeIfNotRoot(Register rt, Heap::RootListIndex index, |
230 LInstruction* instr); | 230 LInstruction* instr); |
| 231 void DeoptimizeIfNotHeapNumber(Register object, LInstruction* instr); |
231 void DeoptimizeIfMinusZero(DoubleRegister input, LInstruction* instr); | 232 void DeoptimizeIfMinusZero(DoubleRegister input, LInstruction* instr); |
232 void DeoptimizeIfBitSet(Register rt, int bit, LInstruction* instr); | 233 void DeoptimizeIfBitSet(Register rt, int bit, LInstruction* instr); |
233 void DeoptimizeIfBitClear(Register rt, int bit, LInstruction* instr); | 234 void DeoptimizeIfBitClear(Register rt, int bit, LInstruction* instr); |
234 | 235 |
235 MemOperand PrepareKeyedExternalArrayOperand(Register key, | 236 MemOperand PrepareKeyedExternalArrayOperand(Register key, |
236 Register base, | 237 Register base, |
237 Register scratch, | 238 Register scratch, |
238 bool key_is_smi, | 239 bool key_is_smi, |
239 bool key_is_constant, | 240 bool key_is_constant, |
240 int constant_key, | 241 int constant_key, |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
452 | 453 |
453 protected: | 454 protected: |
454 MacroAssembler* masm() const { return codegen_->masm(); } | 455 MacroAssembler* masm() const { return codegen_->masm(); } |
455 | 456 |
456 LCodeGen* codegen_; | 457 LCodeGen* codegen_; |
457 }; | 458 }; |
458 | 459 |
459 } } // namespace v8::internal | 460 } } // namespace v8::internal |
460 | 461 |
461 #endif // V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ | 462 #endif // V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
OLD | NEW |