Home
last modified time | relevance | path

Searched refs:isIndexExp (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddinterpret.d695 auto ie = e.isIndexExp(); in interpretFunction()
2500 assert(exp.op != EXP.index || exp.isIndexExp().e1 != e); in visit()
3280 if (auto ie = e.isIndexExp()) in findParentVar()
3375 if (e1.op == EXP.index && e1.isIndexExp().e1.type.toBasetype().ty == Taarray)
3387 IndexExp ie = e1.isIndexExp();
3389 while (ie.e1.op == EXP.index && ie.e1.isIndexExp().e1.type.toBasetype().ty == Taarray)
3392 ie = ie.e1.isIndexExp();
3405 lastIndex = interpretRegion(e1.isIndexExp().e2, istate);
3413 IndexExp xe = e1.isIndexExp();
3415 xe = xe.e1.isIndexExp();
[all …]
H A Doptimize.d519 else if (auto ei = e.isIndexExp()) in Expression_optimize()
559 else if (auto ae = e.e1.isIndexExp()) in Expression_optimize()
1384 case EXP.index: visitIndex(ex.isIndexExp()); break; in Expression_optimize()
H A Dctfeexpr.d399 else if (auto ie = e.isIndexExp()) in copyLiteral()
466 else if (auto ie = lit.isIndexExp()) in paintTypeOntoLiteralCopy()
736 if (auto ie = e.isIndexExp()) in getAggregateFromPointer()
1943 const Expression eagg = newval.isIndexExp().e1; in isCtfeReferenceValid()
H A Dexpression.h190 IndexExp* isIndexExp();
H A Dexpression.d1686 … inout(IndexExp) isIndexExp() { return op == EXP.index ? cast(typeof(return))this : null; } in isIndexExp() function
4531 auto ie = be.e1.isIndexExp(); in reorderSettingAAElem()
4555 auto ie1 = ie.e1.isIndexExp(); in reorderSettingAAElem()
5888 if (auto ie = e1.isIndexExp()) in markSettingAAElem()
H A Ddsymbol.d1972 if (auto ie = exp.isIndexExp())
H A Dhdrgen.d2608 case EXP.index: return visitIndex(e.isIndexExp()); in expressionPrettyPrint()
H A Dexpressionsem.d9035 if (auto ie1 = exp.e1.isIndexExp()) in visit()
12986 case EXP.index: return visitIndex(e.isIndexExp()); in check()