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 415 AggValueSlot AggSlot =
421 CGF.EmitAggExpr(BaseInit->getInit(), AggSlot);
    [all...]
CGStmt.cpp 229 AggValueSlot AggSlot) {
236 return EmitCompoundStmtWithoutScope(S, GetLast, AggSlot);
242 AggValueSlot AggSlot) {
264 EmitAggExpr(cast<Expr>(LastStmt), AggSlot);
    [all...]
CGExpr.cpp 114 /// If this is an aggregate expression, AggSlot indicates where the
117 AggValueSlot aggSlot,
125 if (!ignoreResult && aggSlot.isIgnored())
126 aggSlot = CreateAggTemp(E->getType(), "agg-temp");
127 EmitAggExpr(E, aggSlot);
128 return aggSlot.asRValue();
136 AggValueSlot AggSlot = AggValueSlot::ignored();
139 AggSlot = CreateAggTemp(E->getType(), "agg.tmp");
140 return EmitAnyExpr(E, AggSlot);
    [all...]

Completed in 359 milliseconds