Searched defs:ByteProvider (Results 1 – 1 of 1) sorted by relevance
7101 struct ByteProvider { struct7105 LoadSDNode *Load = nullptr;7106 unsigned ByteOffset = 0;7110 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset) { in getMemory()7114 static ByteProvider getConstantZero() { return ByteProvider(nullptr, 0); } in getConstantZero()7116 bool isConstantZero() const { return !Load; } in isConstantZero()7117 bool isMemory() const { return Load; } in isMemory()7119 bool operator==(const ByteProvider &Other) const { in operator ==()7124 ByteProvider(LoadSDNode *Load, unsigned ByteOffset) in ByteProvider() argument