Home
last modified time | relevance | path

Searched refs:STCgshared (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddeclaration.c972 if ((storage_class & STCgshared) && !isMember()) in semantic()
1207 … StorageClass stc = storage_class & (STCstatic | STCextern | STCmanifest | STCtls | STCgshared); in semantic()
1224 …ass & (STCstatic | STCextern | STCmanifest | STCtemplateparameter | STCtls | STCgshared | STCctfe)) in semantic()
1286 … if (storage_class & (STCstatic | STCextern | STCtls | STCgshared | STCmanifest | STCfield) || in semantic()
1334 …torage_class & (STCfield | STCout | STCref | STCstatic | STCmanifest | STCtls | STCgshared) || !fd) in semantic()
1355 …!(storage_class & (STCstatic | STCextern | STCtls | STCgshared | STCmanifest | STCfield | STCparam… in semantic()
1376 if (!_init && !sc->inunion && !(storage_class & (STCstatic | STCgshared | STCextern)) && fd && in semantic()
1444 !(storage_class & (STCmanifest | STCstatic | STCtls | STCgshared | STCextern)) && in semantic()
1611 if (sc->func && storage_class & (STCstatic | STCgshared)) in semantic()
1819 STCtls | STCgshared | STCctfe))) in isThis()
[all …]
H A Dattrib.c419 if (stc & (STCauto | STCscope | STCstatic | STCtls | STCmanifest | STCgshared)) in newScope()
420 scstc &= ~(STCauto | STCscope | STCstatic | STCtls | STCmanifest | STCgshared); in newScope()
423 if (stc & (STCgshared | STCshared | STCtls)) in newScope()
424 scstc &= ~(STCgshared | STCshared | STCtls); in newScope()
766 sc->stc &= ~(STCauto | STCscope | STCstatic | STCtls | STCgshared); in semantic()
H A Dcanthrow.c271 else if (vd->isStatic() || vd->storage_class & (STCextern | STCtls | STCgshared)) in Dsymbol_canThrow()
H A Ddeclaration.h69 #define STCgshared 0x40000000LL macro
99 STCgshared | STCproperty | STCsafe | STCtrusted | STCsystem | STCdisable | STClocal);
H A Dcppmangle.c552 if (!(d->storage_class & (STCextern | STCfield | STCgshared))) in mangle_variable()
H A Ddstruct.c373 …if (v->storage_class & (STCstatic | STCextern | STCtls | STCgshared | STCmanifest | STCctfe | STCt… in determineFields()
H A Dparse.c551 case TOKgshared: stc = STCgshared; goto Lstc; in parseDeclDefs()
994 if (stc & (STCgshared | STCshared | STCtls)) in appendStorageClass()
996 StorageClass u = storageClass & (STCgshared | STCshared | STCtls); in appendStorageClass()
3651 case TOKgshared: stc = STCgshared; goto L1; in parseStorageClasses()
H A Dhdrgen.c3297 { STCgshared, TOKgshared, NULL }, in stcToChars()
H A Dfunc.c1467 STC_TYPECTOR | STCfinal | STCtls | STCgshared | STCref | STCreturn | in semantic3()
H A Dstatementsem.c3253 tmp->storage_class |= STCtemp | STCgshared | STCstatic; in visit()
H A Dexpression.c2567 if (v->storage_class & STCgshared) in checkPurity()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddeclaration.h77 …#define STCgshared 0x400000000ULL /// accessible from multiple threads, but not type… macro