Searched defs:ByteProvider (Results 1 – 1 of 1) sorted by relevance
5745 struct ByteProvider { struct5749 LoadSDNode *Load = nullptr;5750 unsigned ByteOffset = 0;5754 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset) { in getMemory()5758 static ByteProvider getConstantZero() { return ByteProvider(nullptr, 0); } in getConstantZero()5760 bool isConstantZero() const { return !Load; } in isConstantZero()5761 bool isMemory() const { return Load; } in isMemory()5763 bool operator==(const ByteProvider &Other) const { in operator ==()5768 ByteProvider(LoadSDNode *Load, unsigned ByteOffset) in ByteProvider() argument