Home
last modified time | relevance | path

Searched refs:stageflags (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dapply.c126 if (e->stageflags & stageApply) return; in visit()
127 int old = e->stageflags; in visit()
128 e->stageflags |= stageApply; in visit()
130 e->stageflags = old; in visit()
H A Dinit.c247 if (!(se->stageflags & stageSearchPointers)) in hasNonConstPointers()
249 int old = se->stageflags; in hasNonConstPointers()
250 se->stageflags |= stageSearchPointers; in hasNonConstPointers()
252 se->stageflags = old; in hasNonConstPointers()
H A Doptimize.c276 if (e->stageflags & stageOptimize) return; in Expression_optimize()
277 int old = e->stageflags; in Expression_optimize()
278 e->stageflags |= stageOptimize; in Expression_optimize()
286 e->stageflags = old; in Expression_optimize()
H A Dhdrgen.c2547 if (e->stageflags & stageToCBuffer) in visit()
2551 int old = e->stageflags; in visit()
2552 e->stageflags |= stageToCBuffer; in visit()
2554 e->stageflags = old; in visit()
H A Ddinterpret.c6366 if (!(sle->stageflags & stageScrub)) in scrubStructLiteral()
6368 const int old = sle->stageflags; in scrubStructLiteral()
6369 sle->stageflags |= stageScrub; // prevent infinite recursion in scrubStructLiteral()
6372 sle->stageflags = old; in scrubStructLiteral()
6445 if (!(sle->stageflags & stageScrub)) in scrubStructLiteralCache()
6447 const int old = sle->stageflags; in scrubStructLiteralCache()
6448 sle->stageflags |= stageScrub; // prevent infinite recursion in scrubStructLiteralCache()
6451 sle->stageflags = old; in scrubStructLiteralCache()
H A Dexpression.h482 int stageflags; variable
H A Dexpression.c3992 this->stageflags = 0; in StructLiteralExp()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dapply.d172 if (e.stageflags & stageApply) in visit()
174 int old = e.stageflags; in visit()
175 e.stageflags |= stageApply; in visit()
177 e.stageflags = old; in visit()
H A Dvisitor.d153 if (!(e.stageflags & stageToCBuffer))
155 int old = e.stageflags;
156 e.stageflags |= stageToCBuffer;
160 e.stageflags = old;
H A Dinitsem.d1368 if (!(se.stageflags & stageSearchPointers)) in hasNonConstPointers()
1370 const old = se.stageflags; in hasNonConstPointers()
1371 se.stageflags |= stageSearchPointers; in hasNonConstPointers()
1373 se.stageflags = old; in hasNonConstPointers()
H A Doptimize.d371 if (e.stageflags & stageOptimize) in Expression_optimize()
373 int old = e.stageflags; in Expression_optimize()
374 e.stageflags |= stageOptimize; in Expression_optimize()
382 e.stageflags = old; in Expression_optimize()
H A Ddinterpret.d6540 if (!(sle.stageflags & stageScrub)) in scrubReturnValue()
6542 const old = sle.stageflags; in scrubReturnValue()
6543 sle.stageflags |= stageScrub; // prevent infinite recursion in scrubReturnValue()
6546 sle.stageflags = old; in scrubReturnValue()
6620 if (!(sle.stageflags & stageScrub)) in scrubCacheValue()
6622 const old = sle.stageflags; in scrubCacheValue()
6623 sle.stageflags |= stageScrub; // prevent infinite recursion in scrubCacheValue()
6626 sle.stageflags = old; in scrubCacheValue()
6697 if (1 || !(sle.stageflags & stageScrub)) in copyRegionExp()
6699 const old = sle.stageflags; in copyRegionExp()
[all …]
H A Dhdrgen.d2026 if (e.stageflags & stageToCBuffer) in expressionPrettyPrint()
2030 const old = e.stageflags; in expressionPrettyPrint()
2031 e.stageflags |= stageToCBuffer; in expressionPrettyPrint()
2033 e.stageflags = old; in expressionPrettyPrint()
H A Dexpression.h471 int stageflags; variable
H A Dexpression.d3186 int stageflags; variable