Home
last modified time | relevance | path

Searched defs:ByteProvider (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp6399 struct ByteProvider { struct
6403 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() argument
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp7905 struct ByteProvider { struct
7909 LoadSDNode *Load = nullptr;
7910 unsigned ByteOffset = 0;
7911 unsigned VectorOffset = 0;
7915 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset, in getMemory()
7920 static ByteProvider getConstantZero() { return ByteProvider(nullptr, 0, 0); } in getConstantZero()
7922 bool isConstantZero() const { return !Load; } in isConstantZero()
7923 bool isMemory() const { return Load; } in isMemory()
7925 bool operator==(const ByteProvider &Other) const { in operator ==()
7931 ByteProvider(LoadSDNode *Load, unsigned ByteOffset, unsigned VectorOffset) in ByteProvider() argument