HomeSort by: relevance | last modified time | path
    Searched refs:getExtendType (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AddressingModes.h 122 /// getExtendType - Extract the extend type for operands of arithmetic ops.
123 static inline AArch64_AM::ShiftExtendType getExtendType(unsigned Imm) {
139 return getExtendType((Imm >> 3) & 0x7);
182 /// getExtendType - Extract the extend type for the offset operand of
185 return getExtendType((Imm >> 1) & 0x7);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 105 AArch64_AM::ShiftExtendType getExtendType() const { return ExtType; }
1050 if (Addr.getExtendType() == AArch64_AM::SXTW ||
1051 Addr.getExtendType() == AArch64_AM::UXTW )
1053 Addr.getOffsetReg(), Addr.getExtendType(),
1060 if (Addr.getExtendType() == AArch64_AM::UXTW)
1063 else if (Addr.getExtendType() == AArch64_AM::SXTW)
1123 bool IsSigned = Addr.getExtendType() == AArch64_AM::SXTW ||
1124 Addr.getExtendType() == AArch64_AM::SXTX;
1805 if (Addr.getExtendType() == AArch64_AM::UXTW ||
1806 Addr.getExtendType() == AArch64_AM::SXTW
    [all...]

Completed in 16 milliseconds