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

References

lib/Target/Hexagon/HexagonISelLowering.cpp
 2129   bool AllConst = getBuildVectorConstInts(Elem, VecTy, DAG, Consts);
 2139       llvm::all_of(Consts, [](ConstantInt *CI) { return CI->isZero(); }))
 2145       uint32_t V = (Consts[0]->getZExtValue() & 0xFFFF) |
 2146                    Consts[1]->getZExtValue() << 16;
 2157       int32_t V = (Consts[0]->getZExtValue() & 0xFF) |
 2158                   (Consts[1]->getZExtValue() & 0xFF) << 8 |
 2159                   (Consts[1]->getZExtValue() & 0xFF) << 16 |
 2160                   Consts[2]->getZExtValue() << 24;