Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DLiteralSupport.cpp1454 int64_t BaseShift = 0; in GetFixedPointValue() local
1473 if (NegativeExponent) BaseShift -= Exponent; in GetFixedPointValue()
1474 else BaseShift += Exponent; in GetFixedPointValue()
1529 BaseShift += FractBaseShift; in GetFixedPointValue()
1534 if (BaseShift > 0) { in GetFixedPointValue()
1535 for (int64_t i = 0; i < BaseShift; ++i) { in GetFixedPointValue()
1538 } else if (BaseShift < 0) { in GetFixedPointValue()
1539 for (int64_t i = BaseShift; i < 0 && !Val.isZero(); ++i) in GetFixedPointValue()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64InstrFormats.td2376 class BaseShift<bit size, bits<2> shift_type, RegisterClass regtype, string asm,
2384 def Wr : BaseShift<0b0, shift_type, GPR32, asm>;
2386 def Xr : BaseShift<0b1, shift_type, GPR64, asm, OpNode>;