Searched defs:GepNode (Results 1 – 3 of 3) sorted by relevance
176 struct GepNode { struct177 enum {197 uint32_t Flags = 0;198 union {202 Value *Idx = nullptr;203 Type *PTy = nullptr; // Type indexed by this node. For pointer nodes207 GepNode() : Parent(nullptr) {} in GepNode() argument208 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() function
176 struct GepNode { struct177 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() function194 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() argument
156 struct GepNode { struct157 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() argument173 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() argument