Searched defs:ByteProvider (Results 1 – 1 of 1) sorted by relevance
7905 struct ByteProvider { struct7909 LoadSDNode *Load = nullptr;7910 unsigned ByteOffset = 0;7911 unsigned VectorOffset = 0;7915 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset, in getMemory()7920 static ByteProvider getConstantZero() { return ByteProvider(nullptr, 0, 0); } in getConstantZero()7922 bool isConstantZero() const { return !Load; } in isConstantZero()7923 bool isMemory() const { return Load; } in isMemory()7925 bool operator==(const ByteProvider &Other) const { in operator ==()7931 ByteProvider(LoadSDNode *Load, unsigned ByteOffset, unsigned VectorOffset) in ByteProvider() function