Home
last modified time | relevance | path

Searched refs:BaseShift (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp1526 int64_t BaseShift = 0; in GetFixedPointValue() local
1545 if (NegativeExponent) BaseShift -= Exponent; in GetFixedPointValue()
1546 else BaseShift += Exponent; in GetFixedPointValue()
1601 BaseShift += FractBaseShift; in GetFixedPointValue()
1606 if (BaseShift > 0) { in GetFixedPointValue()
1607 for (int64_t i = 0; i < BaseShift; ++i) { in GetFixedPointValue()
1610 } else if (BaseShift < 0) { in GetFixedPointValue()
1611 for (int64_t i = BaseShift; i < 0 && !Val.isZero(); ++i) in GetFixedPointValue()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrFormats.td2561 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>;