Searched defs:ByteProvider (Results 1 – 1 of 1) sorted by relevance
5587 struct ByteProvider { struct5591 LoadSDNode *Load = nullptr;5592 unsigned ByteOffset = 0;5596 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset) { in getMemory()5600 static ByteProvider getConstantZero() { return ByteProvider(nullptr, 0); } in getConstantZero()5602 bool isConstantZero() const { return !Load; } in isConstantZero()5603 bool isMemory() const { return Load; } in isMemory()5605 bool operator==(const ByteProvider &Other) const { in operator ==()5610 ByteProvider(LoadSDNode *Load, unsigned ByteOffset) in ByteProvider() function