Searched refs:BaseShift (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | LiteralSupport.cpp | 1563 int64_t BaseShift = 0; in GetFixedPointValue() local 1583 if (NegativeExponent) BaseShift -= Exponent; in GetFixedPointValue() 1584 else BaseShift += Exponent; in GetFixedPointValue() 1639 BaseShift += FractBaseShift; in GetFixedPointValue() 1644 if (BaseShift > 0) { in GetFixedPointValue() 1645 for (int64_t i = 0; i < BaseShift; ++i) { in GetFixedPointValue() 1648 } else if (BaseShift < 0) { in GetFixedPointValue() 1649 for (int64_t i = BaseShift; i < 0 && !Val.isZero(); ++i) in GetFixedPointValue()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64InstrFormats.td | 2561 class BaseShift<bit size, bits<2> shift_type, RegisterClass regtype, string asm, 2569 def Wr : BaseShift<0b0, shift_type, GPR32, asm>; 2571 def Xr : BaseShift<0b1, shift_type, GPR64, asm, OpNode>;
|