Searched refs:printGCUsage (Results 1 – 5 of 5) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | nogc.c | 25 void FuncDeclaration::printGCUsage(Loc loc, const char* warn) in printGCUsage() function 91 f->printGCUsage(e->loc, "array literal may cause GC allocation"); in visit() 106 f->printGCUsage(e->loc, "associative array literal may cause GC allocation"); in visit() 128 f->printGCUsage(e->loc, "'new' causes GC allocation"); in visit() 167 f->printGCUsage(e->loc, "'delete' requires GC"); in visit() 182 f->printGCUsage(e->loc, "indexing an associative array may cause GC allocation"); in visit() 197 f->printGCUsage(e->loc, "setting 'length' may cause GC allocation"); in visit() 210 f->printGCUsage(e->loc, "operator ~= may cause GC allocation"); in visit() 222 f->printGCUsage(e->loc, "operator ~ may cause GC allocation"); in visit()
|
H A D | declaration.h | 647 void printGCUsage(Loc loc, const char *warn);
|
H A D | func.c | 4560 printGCUsage(loc, "using closure causes GC allocation"); in checkClosure()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | nogc.d | 85 f.printGCUsage(e.loc, "setting `length` may cause a GC allocation"); in visit() 100 f.printGCUsage(e.loc, "array literal may cause a GC allocation"); in visit() 114 f.printGCUsage(e.loc, "associative array literal may cause a GC allocation"); in visit() 135 f.printGCUsage(e.loc, "`new` causes a GC allocation"); in visit() 163 f.printGCUsage(e.loc, "indexing an associative array may cause a GC allocation"); in visit() 178 f.printGCUsage(e.loc, "setting `length` may cause a GC allocation"); in visit() 191 f.printGCUsage(e.loc, "operator `~=` may cause a GC allocation"); in visit() 203 f.printGCUsage(e.loc, "operator `~` may cause a GC allocation"); in visit()
|
H A D | func.d | 1573 extern (D) final void printGCUsage(const ref Loc loc, const(char)* warn) in printGCUsage() function 2122 printGCUsage(loc, "using closure causes GC allocation"); in checkClosure()
|