Home | History | Annotate | Download | only in arm64

Lines Matching defs:Is

2 // Use of this source code is governed by a BSD-style license that can be
121 inline bool CPURegister::Is(const CPURegister& other) const {
270 // Default initializer is for int types
371 return reg_.Is(NoReg);
539 return (addrmode_ == Offset) && regoffset_.Is(NoReg);
544 return (addrmode_ == Offset) && !regoffset_.Is(NoReg);
603 // Call sequence on ARM64 is:
615 // The call, generated by MacroAssembler::Call, is one of two possible
628 // The return address is immediately after the blr instruction in both cases,
666 // Intuitively, we would think it is necessary to always flush the
669 // However, on ARM, an instruction is actually patched in the case of
673 // unchanged, a flush is not required.
814 // Overwrite the stub entry point in the code age sequence. This is loaded as
815 // a literal so there is no need to call FlushICache here.