Home | History | Annotate | Download | only in NVPTX

Lines Matching defs:Globals

67                               DenseSet<const GlobalVariable *> &Globals) {
69 Globals.insert(GV);
73 DiscoverDependentGlobals(U->getOperand(i), Globals);
1191 // As ptxas does not support forward references of globals, we need to first
1192 // sort the list of module-level globals in def-use order. We visit each
1194 // globals. We use a little extra memory maintaining both a set and a list to
1196 SmallVector<const GlobalVariable *, 8> Globals;
1203 VisitGlobalVariableForEmission(I, Globals, GVVisited, GVVisiting);
1210 for (unsigned i = 0, e = Globals.size(); i != e; ++i)
1211 printModuleLevelGV(Globals[i], OS2);