Home
last modified time | relevance | path

Searched defs:GepNode (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp176 struct GepNode { struct
177 enum {
197 uint32_t Flags = 0;
198 union {
202 Value *Idx = nullptr;
203 Type *PTy = nullptr; // Type indexed by this node. For pointer nodes
207 GepNode() : Parent(nullptr) {} in GepNode() argument
208 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() function
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp176 struct GepNode { struct
177 enum {
185 uint32_t Flags = 0;
186 union {
190 Value *Idx = nullptr;
191 Type *PTy = nullptr; // Type of the pointer operand.
193 GepNode() : Parent(nullptr) {} in GepNode() function
194 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() argument
/aosp_15_r20/external/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp156 struct GepNode { struct
157 enum {
164 uint32_t Flags;
165 union {
169 Value *Idx;
170 Type *PTy; // Type of the pointer operand.
172 GepNode() : Flags(0), Parent(0), Idx(0), PTy(0) {} in GepNode() argument
173 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() argument