Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp1114 int64_t BaseShift = 0; in GetFixedPointValue() local
1133 if (NegativeExponent) BaseShift -= Exponent; in GetFixedPointValue()
1134 else BaseShift += Exponent; in GetFixedPointValue()
1189 BaseShift += FractBaseShift; in GetFixedPointValue()
1194 if (BaseShift > 0) { in GetFixedPointValue()
1195 for (int64_t i = 0; i < BaseShift; ++i) { in GetFixedPointValue()
1198 } else if (BaseShift < 0) { in GetFixedPointValue()
1199 for (int64_t i = BaseShift; i < 0 && !Val.isNullValue(); ++i) in GetFixedPointValue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrFormats.td2136 class BaseShift<bits<2> shift_type, RegisterClass regtype, string asm,
2144 def Wr : BaseShift<shift_type, GPR32, asm> {
2148 def Xr : BaseShift<shift_type, GPR64, asm, OpNode> {