Searched defs:ByteProvider (Results 1 – 1 of 1) sorted by relevance
7071 struct ByteProvider { struct7075 LoadSDNode *Load = nullptr;7076 unsigned ByteOffset = 0;7080 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset) { in getMemory()7084 static ByteProvider getConstantZero() { return ByteProvider(nullptr, 0); } in getConstantZero()7086 bool isConstantZero() const { return !Load; } in isConstantZero()7087 bool isMemory() const { return Load; } in isMemory()7089 bool operator==(const ByteProvider &Other) const { in operator ==()7094 ByteProvider(LoadSDNode *Load, unsigned ByteOffset) in ByteProvider() function