OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AggSlot
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/CodeGen/
CGStmt.cpp
198
AggValueSlot
AggSlot
) {
205
return EmitCompoundStmtWithoutScope(S, GetLast,
AggSlot
);
211
AggValueSlot
AggSlot
) {
233
EmitAggExpr(cast<Expr>(LastStmt),
AggSlot
);
[
all
...]
CGClass.cpp
413
AggValueSlot
AggSlot
=
419
CGF.EmitAggExpr(BaseInit->getInit(),
AggSlot
);
[
all
...]
CGExpr.cpp
112
/// If this is an aggregate expression,
AggSlot
indicates where the
115
AggValueSlot
aggSlot
,
123
if (!ignoreResult &&
aggSlot
.isIgnored())
124
aggSlot
= CreateAggTemp(E->getType(), "agg-temp");
125
EmitAggExpr(E,
aggSlot
);
126
return
aggSlot
.asRValue();
134
AggValueSlot
AggSlot
= AggValueSlot::ignored();
137
AggSlot
= CreateAggTemp(E->getType(), "agg.tmp");
138
return EmitAnyExpr(E,
AggSlot
);
[
all
...]
Completed in 1414 milliseconds