reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/GlobalISel/Utils.cpp
  363       return C1 << C2;
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
 4703   case ISD::SHL:  return std::make_pair(C1 << C2, true);
lib/Support/APInt.cpp
 2000   return *this << ShAmt;
 2010   return *this << ShAmt;
lib/Target/AMDGPU/SIISelLowering.cpp
 8068   APInt Offset = CAdd->getAPIntValue() << CN1->getAPIntValue();
lib/Target/Mips/MipsSEISelLowering.cpp
 1474       APInt BitImm = APInt(64, 1) << CImm->getAPIntValue();
 1534                  << cast<ConstantSDNode>(Op->getOperand(2))->getAPIntValue();
lib/Target/NVPTX/NVPTXISelLowering.cpp
 4671       APInt MulVal = APInt(BitWidth, 1) << ShiftAmt;
lib/Target/RISCV/RISCVISelLowering.cpp
 1037       APInt ShiftedC1Int = C1Int << C2->getAPIntValue();
lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
  409     Idx = ConstantInt::get(Idx->getContext(), One << Idx->getValue());
  512         ConstantInt::get(RHS->getContext(), One << RHS->getValue());
tools/lldb/source/Utility/Scalar.cpp
 1864       m_integer = m_integer << rhs.m_integer;
unittests/ADT/APIntTest.cpp
  286   EXPECT_EQ(zero, one << one);
  287   EXPECT_EQ(one, one << zero);