Home | History | Annotate | Download | only in arm64

Lines Matching refs:Is

2 // Use of this source code is governed by a BSD-style license that can be
107 inline bool CPURegister::Is(const CPURegister& other) const {
256 // Default initializer is for int types
357 return reg_.Is(NoReg);
525 return (addrmode_ == Offset) && regoffset_.Is(NoReg);
530 return (addrmode_ == Offset) && !regoffset_.Is(NoReg);
589 // Call sequence on ARM64 is:
601 // The call, generated by MacroAssembler::Call, is one of two possible
614 // The return address is immediately after the blr instruction in both cases,
652 // Intuitively, we would think it is necessary to always flush the
655 // However, on ARM, an instruction is actually patched in the case of
659 // unchanged, a flush is not required.
801 // Overwrite the stub entry point in the code age sequence. This is loaded as
802 // a literal so there is no need to call FlushICache here.