Searched refs:getExtendType (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AddressingModes.h122 /// getExtendType - Extract the extend type for operands of arithmetic ops.
123 static inline AArch64_AM::ShiftExtendType getExtendType(unsigned Imm) { function in namespace:llvm::AArch64_AM
139 return getExtendType((Imm >> 3) & 0x7);
182 /// getExtendType - Extract the extend type for the offset operand of
185 return getExtendType((Imm >> 1) & 0x7);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp105 AArch64_AM::ShiftExtendType getExtendType() const { return ExtType; } function in class:__anon3849::final::Address
1067 if (Addr.getExtendType() == AArch64_AM::SXTW ||
1068 Addr.getExtendType() == AArch64_AM::UXTW )
1071 /*TODO:IsKill=*/false, Addr.getExtendType(),
1079 if (Addr.getExtendType() == AArch64_AM::UXTW)
1083 else if (Addr.getExtendType() == AArch64_AM::SXTW)
1144 bool IsSigned = Addr.getExtendType() == AArch64_AM::SXTW ||
1145 Addr.getExtendType() == AArch64_AM::SXTX;
1855 if (Addr.getExtendType() == AArch64_AM::UXTW ||
1856 Addr.getExtendType()
[all...]

Completed in 165 milliseconds