HomeSort by relevance Sort by last modified time
    Searched refs:AggSlot (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/CodeGen/
CGStmt.cpp 325 AggValueSlot AggSlot) {
332 return EmitCompoundStmtWithoutScope(S, GetLast, AggSlot);
338 AggValueSlot AggSlot) {
360 EmitAggExpr(cast<Expr>(LastStmt), AggSlot);
    [all...]
CGExprAgg.cpp     [all...]
CGClass.cpp 551 AggValueSlot AggSlot =
557 CGF.EmitAggExpr(BaseInit->getInit(), AggSlot);
    [all...]
CGExpr.cpp 138 /// If this is an aggregate expression, AggSlot indicates where the
141 AggValueSlot aggSlot,
149 if (!ignoreResult && aggSlot.isIgnored())
150 aggSlot = CreateAggTemp(E->getType(), "agg-temp");
151 EmitAggExpr(E, aggSlot);
152 return aggSlot.asRValue();
160 AggValueSlot AggSlot = AggValueSlot::ignored();
163 AggSlot = CreateAggTemp(E->getType(), "agg.tmp");
164 return EmitAnyExpr(E, AggSlot);
    [all...]

Completed in 59 milliseconds