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

  /external/clang/lib/CodeGen/
CGClass.cpp 550 AggValueSlot AggSlot =
556 CGF.EmitAggExpr(BaseInit->getInit(), AggSlot);
    [all...]
CGStmt.cpp 295 AggValueSlot AggSlot) {
302 return EmitCompoundStmtWithoutScope(S, GetLast, AggSlot);
308 AggValueSlot AggSlot) {
330 EmitAggExpr(cast<Expr>(LastStmt), AggSlot);
    [all...]
CGExpr.cpp 137 /// If this is an aggregate expression, AggSlot indicates where the
140 AggValueSlot aggSlot,
148 if (!ignoreResult && aggSlot.isIgnored())
149 aggSlot = CreateAggTemp(E->getType(), "agg-temp");
150 EmitAggExpr(E, aggSlot);
151 return aggSlot.asRValue();
159 AggValueSlot AggSlot = AggValueSlot::ignored();
162 AggSlot = CreateAggTemp(E->getType(), "agg.tmp");
163 return EmitAnyExpr(E, AggSlot);
    [all...]

Completed in 106 milliseconds