Home
last modified time | relevance | path

Searched refs:STCsafe (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dclone.c39 s2 |= STCsafe; in mergeFuncAttrs()
59 else if ((so & (STCtrusted | STCsafe)) == (STCtrusted | STCsafe)) in mergeFuncAttrs()
61 else if (sa & STCsafe) in mergeFuncAttrs()
62 stc |= STCsafe; in mergeFuncAttrs()
215 StorageClass stc = STCsafe | STCnothrow | STCpure | STCnogc; in buildOpAssign()
243 if (stc & STCsafe) in buildOpAssign()
244 stc = (stc & ~STCsafe) | STCtrusted; in buildOpAssign()
787 StorageClass stc = STCsafe | STCnothrow | STCpure | STCnogc; in buildPostBlit()
834 if (stc & STCsafe) in buildPostBlit()
835 stc = (stc & ~STCsafe) | STCtrusted; in buildPostBlit()
[all …]
H A Ddeclaration.h72 #define STC_FUNCATTR (STCref | STCnothrow | STCnogc | STCpure | STCproperty | STCsafe | STCtrust…
75 #define STCsafe 0x200000000LL macro
99 STCgshared | STCproperty | STCsafe | STCtrusted | STCsystem | STCdisable | STClocal);
H A Dattrib.c425 if (stc & (STCsafe | STCtrusted | STCsystem)) in newScope()
426 scstc &= ~(STCsafe | STCtrusted | STCsystem); in newScope()
H A Ddstruct.c227 sc2->stc &= STCsafe | STCtrusted | STCsystem; in newScope()
H A Dparse.c133 stc == STCsafe || stc == STCtrusted || stc == STCsystem) in parseModule()
1000 if (stc & (STCsafe | STCsystem | STCtrusted)) in appendStorageClass()
1002 StorageClass u = storageClass & (STCsafe | STCsystem | STCtrusted); in appendStorageClass()
1033 stc = STCsafe; in parseAttribute()
4019 pAttrs->storageClass &= (STCsafe | STCsystem | STCtrusted); in parseDeclarations()
H A Dfunc.c585 sc->stc &= ~(STCsafe | STCsystem | STCtrusted); in semantic()
586 if (tf->trust == TRUSTsafe) sc->stc |= STCsafe; in semantic()
1468 STCproperty | STCnothrow | STCpure | STCsafe | STCtrusted | STCsystem); in semantic3()
H A Dhdrgen.c2051 if (d->storage_class & STCsafe) in visit()
3300 { STCsafe, TOKat, "@safe" }, in stcToChars()
H A Dmtype.c5179 if (stc & STCsafe) in TypeFunction()
5422 stc |= STCsafe; in covariant()
5498 if (sc->stc & STCsafe) in semantic()
6322 (stc & STCsafe && t->trust < TRUSTtrusted)) in addStorageClass()
6345 if (stc & STCsafe) in addStorageClass()
H A Dstatementsem.c1499 StorageClass stc = mergeFuncAttrs(STCsafe | STCpure | STCnogc, fs->func); in visit()
3733 if (!(cas->stc & (STCtrusted|STCsafe)) && sc->func->setUnsafe()) in visit()
H A Dexpressionsem.c2935 TypeFunction *tf = new TypeFunction(NULL, tc, 0, LINKd, STCsafe | STCpure); in visit()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddeclaration.h81 #define STCsafe 0x2000000000ULL /// `@safe` macro
105 #define STC_FUNCATTR (STCref | STCnothrow | STCnogc | STCpure | STCproperty | STCsafe | STCtrust…