HomeSort by relevance Sort by last modified time
    Searched refs:SmallVTBits (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 399 unsigned SmallVTBits = DemandedSize;
400 if (!isPowerOf2_32(SmallVTBits))
401 SmallVTBits = NextPowerOf2(SmallVTBits);
402 for (; SmallVTBits < BitWidth; SmallVTBits = NextPowerOf2(SmallVTBits)) {
403 EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), SmallVTBits);
412 bool NeedZext = DemandedSize > SmallVTBits;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 412 unsigned SmallVTBits = DemandedSize;
413 if (!isPowerOf2_32(SmallVTBits))
414 SmallVTBits = NextPowerOf2(SmallVTBits);
415 for (; SmallVTBits < BitWidth; SmallVTBits = NextPowerOf2(SmallVTBits)) {
416 EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), SmallVTBits);
424 assert(DemandedSize <= SmallVTBits && "Narrowed below demanded bits?");
    [all...]

Completed in 399 milliseconds