Searched defs:ByteProvider (Results 1 – 2 of 2) sorted by relevance
6399 struct ByteProvider { struct6403 LoadSDNode *Load = nullptr;6404 unsigned ByteOffset = 0;6408 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset) { in getMemory()6412 static ByteProvider getConstantZero() { return ByteProvider(nullptr, 0); } in getConstantZero()6414 bool isConstantZero() const { return !Load; } in isConstantZero()6415 bool isMemory() const { return Load; } in isMemory()6417 bool operator==(const ByteProvider &Other) const { in operator ==()6422 ByteProvider(LoadSDNode *Load, unsigned ByteOffset) in ByteProvider() function
6914 struct ByteProvider { struct6918 LoadSDNode *Load = nullptr;6919 unsigned ByteOffset = 0;6923 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset) { in getMemory()6927 static ByteProvider getConstantZero() { return ByteProvider(nullptr, 0); } in getConstantZero()6929 bool isConstantZero() const { return !Load; } in isConstantZero()6930 bool isMemory() const { return Load; } in isMemory()6932 bool operator==(const ByteProvider &Other) const { in operator ==()6937 ByteProvider(LoadSDNode *Load, unsigned ByteOffset) in ByteProvider() argument