Home | History | Annotate | Download | only in Hexagon

Lines Matching defs:PTy

170     Type *PTy;  // Type of the pointer operand.
172 GepNode() : Flags(0), Parent(0), Idx(0), PTy(0) {}
173 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) {
231 OS << " PTy:";
232 if (GN.PTy->isStructTy()) {
233 StructType *STy = cast<StructType>(GN.PTy);
235 OS << GN.PTy->getStructName();
240 OS << *GN.PTy;
338 N->PTy = PtrOp->getType();
368 Nx->PTy = PtrTy;
473 ID.AddPointer(N->PTy);
1102 if (!NA[nax]->PTy->isPointerTy()) {
1115 Type *NextTy = next_type(N->PTy, N->Idx);
1116 if (NextTy != NA[nax]->PTy)