blob: 1f0c523ac662b5e5a19f0e73af681a434fed17d7 [file] [log] [blame]
Ted Kremenek5f764312011-08-20 05:59:58 +00001//===- ExprEngineCXX.cpp - ExprEngine support for C++ -----------*- C++ -*-===//
Zhongxing Xucb7464a2010-04-19 12:51:02 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the C++ expression evaluation engine.
11//
12//===----------------------------------------------------------------------===//
13
Ted Kremenek9b663712011-02-10 01:03:03 +000014#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
Zhongxing Xucb7464a2010-04-19 12:51:02 +000015#include "clang/AST/DeclCXX.h"
Ted Kremenek337e4db2012-03-10 01:34:17 +000016#include "clang/AST/StmtCXX.h"
Jordan Rose563ea232012-08-03 23:31:15 +000017#include "clang/Basic/PrettyStackTrace.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "clang/StaticAnalyzer/Core/CheckerManager.h"
19#include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h"
20#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
Zhongxing Xucb7464a2010-04-19 12:51:02 +000021
22using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000023using namespace ento;
Zhongxing Xucb7464a2010-04-19 12:51:02 +000024
Ted Kremenekeea72a92011-07-28 23:07:36 +000025void ExprEngine::CreateCXXTemporaryObject(const MaterializeTemporaryExpr *ME,
26 ExplodedNode *Pred,
27 ExplodedNodeSet &Dst) {
Ted Kremenek66c486f2012-08-22 06:26:15 +000028 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
Ted Kremenek6a835dd2011-10-02 00:54:48 +000029 const Expr *tempExpr = ME->GetTemporaryExpr()->IgnoreParens();
Ted Kremenek8bef8232012-01-26 21:29:00 +000030 ProgramStateRef state = Pred->getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +000031 const LocationContext *LCtx = Pred->getLocationContext();
Zhongxing Xucb7464a2010-04-19 12:51:02 +000032
Ted Kremenek6a835dd2011-10-02 00:54:48 +000033 // Bind the temporary object to the value of the expression. Then bind
34 // the expression to the location of the object.
Jordan Rosec210cb72012-08-27 17:50:07 +000035 SVal V = state->getSVal(tempExpr, LCtx);
Zhongxing Xucb7464a2010-04-19 12:51:02 +000036
Jordan Rose6ebea892012-09-05 17:11:26 +000037 // If the value is already a CXXTempObjectRegion, it is fine as it is.
38 // Otherwise, create a new CXXTempObjectRegion, and copy the value into it.
39 const MemRegion *MR = V.getAsRegion();
40 if (!MR || !isa<CXXTempObjectRegion>(MR)) {
Jordan Rosec210cb72012-08-27 17:50:07 +000041 const MemRegion *R =
42 svalBuilder.getRegionManager().getCXXTempObjectRegion(ME, LCtx);
Zhongxing Xucb7464a2010-04-19 12:51:02 +000043
Jordan Rosec210cb72012-08-27 17:50:07 +000044 SVal L = loc::MemRegionVal(R);
45 state = state->bindLoc(L, V);
46 V = L;
47 }
48
49 Bldr.generateNode(ME, Pred, state->BindExpr(ME, LCtx, V));
Zhongxing Xucb7464a2010-04-19 12:51:02 +000050}
51
Jordan Rose362a31c2012-07-02 19:28:12 +000052void ExprEngine::VisitCXXConstructExpr(const CXXConstructExpr *CE,
Ted Kremenek5fe98722011-04-08 22:42:35 +000053 ExplodedNode *Pred,
54 ExplodedNodeSet &destNodes) {
Jordan Rose888c90a2012-07-26 20:04:13 +000055 const LocationContext *LCtx = Pred->getLocationContext();
Jordan Rose075f6fb2012-07-26 20:04:16 +000056 ProgramStateRef State = Pred->getState();
57
Jordan Rose888c90a2012-07-26 20:04:13 +000058 const MemRegion *Target = 0;
59
60 switch (CE->getConstructionKind()) {
61 case CXXConstructExpr::CK_Complete: {
Jordan Rose075f6fb2012-07-26 20:04:16 +000062 // See if we're constructing an existing region by looking at the next
63 // element in the CFG.
Ted Kremenek66c486f2012-08-22 06:26:15 +000064 const CFGBlock *B = currBldrCtx->getBlock();
65 if (currStmtIdx + 1 < B->size()) {
66 CFGElement Next = (*B)[currStmtIdx+1];
Jordan Rose075f6fb2012-07-26 20:04:16 +000067
68 // Is this a constructor for a local variable?
Jordan Rosee460c462012-07-26 20:04:25 +000069 if (const CFGStmt *StmtElem = dyn_cast<CFGStmt>(&Next)) {
70 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StmtElem->getStmt())) {
71 if (const VarDecl *Var = dyn_cast<VarDecl>(DS->getSingleDecl())) {
72 if (Var->getInit()->IgnoreImplicit() == CE) {
73 QualType Ty = Var->getType();
74 if (const ArrayType *AT = getContext().getAsArrayType(Ty)) {
75 // FIXME: Handle arrays, which run the same constructor for
76 // every element. This workaround will just run the first
77 // constructor (which should still invalidate the entire array).
78 SVal Base = State->getLValue(Var, LCtx);
79 Target = State->getLValue(AT->getElementType(),
80 getSValBuilder().makeZeroArrayIndex(),
81 Base).getAsRegion();
82 } else {
83 Target = State->getLValue(Var, LCtx).getAsRegion();
84 }
85 }
86 }
87 }
88 }
89
Jordan Rose3a0a9e32012-07-26 20:04:21 +000090 // Is this a constructor for a member?
91 if (const CFGInitializer *InitElem = dyn_cast<CFGInitializer>(&Next)) {
92 const CXXCtorInitializer *Init = InitElem->getInitializer();
93 assert(Init->isAnyMemberInitializer());
94
95 const CXXMethodDecl *CurCtor = cast<CXXMethodDecl>(LCtx->getDecl());
96 Loc ThisPtr = getSValBuilder().getCXXThis(CurCtor,
97 LCtx->getCurrentStackFrame());
98 SVal ThisVal = State->getSVal(ThisPtr);
99
100 if (Init->isIndirectMemberInitializer()) {
101 SVal Field = State->getLValue(Init->getIndirectMember(), ThisVal);
Jordan Rosee460c462012-07-26 20:04:25 +0000102 Target = Field.getAsRegion();
Jordan Rose3a0a9e32012-07-26 20:04:21 +0000103 } else {
104 SVal Field = State->getLValue(Init->getMember(), ThisVal);
Jordan Rosee460c462012-07-26 20:04:25 +0000105 Target = Field.getAsRegion();
Jordan Rose3a0a9e32012-07-26 20:04:21 +0000106 }
107 }
108
Jordan Rose075f6fb2012-07-26 20:04:16 +0000109 // FIXME: This will eventually need to handle new-expressions as well.
110 }
111
Jordan Rosec210cb72012-08-27 17:50:07 +0000112 // If we couldn't find an existing region to construct into, assume we're
113 // constructing a temporary.
114 if (!Target) {
115 MemRegionManager &MRMgr = getSValBuilder().getRegionManager();
116 Target = MRMgr.getCXXTempObjectRegion(CE, LCtx);
117 }
Jordan Rose075f6fb2012-07-26 20:04:16 +0000118
Jordan Rose888c90a2012-07-26 20:04:13 +0000119 break;
120 }
121 case CXXConstructExpr::CK_NonVirtualBase:
122 case CXXConstructExpr::CK_VirtualBase:
123 case CXXConstructExpr::CK_Delegating: {
124 const CXXMethodDecl *CurCtor = cast<CXXMethodDecl>(LCtx->getDecl());
125 Loc ThisPtr = getSValBuilder().getCXXThis(CurCtor,
126 LCtx->getCurrentStackFrame());
Jordan Rose075f6fb2012-07-26 20:04:16 +0000127 SVal ThisVal = State->getSVal(ThisPtr);
Jordan Rose888c90a2012-07-26 20:04:13 +0000128
129 if (CE->getConstructionKind() == CXXConstructExpr::CK_Delegating) {
130 Target = ThisVal.getAsRegion();
131 } else {
132 // Cast to the base type.
133 QualType BaseTy = CE->getType();
134 SVal BaseVal = getStoreManager().evalDerivedToBase(ThisVal, BaseTy);
Jordan Rosee460c462012-07-26 20:04:25 +0000135 Target = BaseVal.getAsRegion();
Jordan Rose888c90a2012-07-26 20:04:13 +0000136 }
137 break;
138 }
139 }
140
Jordan Rosed563d3f2012-07-30 20:22:09 +0000141 CallEventManager &CEMgr = getStateManager().getCallEventManager();
142 CallEventRef<CXXConstructorCall> Call =
143 CEMgr.getCXXConstructorCall(CE, Target, State, LCtx);
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000144
Jordan Rose362a31c2012-07-02 19:28:12 +0000145 ExplodedNodeSet DstPreVisit;
146 getCheckerManager().runCheckersForPreStmt(DstPreVisit, Pred, CE, *this);
Jordan Rose96479da2012-07-02 19:28:16 +0000147 ExplodedNodeSet DstPreCall;
148 getCheckerManager().runCheckersForPreCall(DstPreCall, DstPreVisit,
Jordan Rosed563d3f2012-07-30 20:22:09 +0000149 *Call, *this);
Ted Kremenek5fe98722011-04-08 22:42:35 +0000150
Jordan Rose33e83b62013-01-31 18:04:03 +0000151 ExplodedNodeSet DstInvalidated;
152 StmtNodeBuilder Bldr(DstPreCall, DstInvalidated, *currBldrCtx);
153 for (ExplodedNodeSet::iterator I = DstPreCall.begin(), E = DstPreCall.end();
154 I != E; ++I)
155 defaultEvalCall(Bldr, *I, *Call);
Ted Kremenek5fe98722011-04-08 22:42:35 +0000156
Jordan Rose96479da2012-07-02 19:28:16 +0000157 ExplodedNodeSet DstPostCall;
Jordan Rose33e83b62013-01-31 18:04:03 +0000158 getCheckerManager().runCheckersForPostCall(DstPostCall, DstInvalidated,
Jordan Rosed563d3f2012-07-30 20:22:09 +0000159 *Call, *this);
Jordan Rose96479da2012-07-02 19:28:16 +0000160 getCheckerManager().runCheckersForPostStmt(destNodes, DstPostCall, CE, *this);
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000161}
162
Jordan Rose888c90a2012-07-26 20:04:13 +0000163void ExprEngine::VisitCXXDestructor(QualType ObjectType,
164 const MemRegion *Dest,
165 const Stmt *S,
Jordan Rose200fa2e2012-09-06 20:37:08 +0000166 bool IsBaseDtor,
Jordan Rose888c90a2012-07-26 20:04:13 +0000167 ExplodedNode *Pred,
168 ExplodedNodeSet &Dst) {
Jordan Rosed563d3f2012-07-30 20:22:09 +0000169 const LocationContext *LCtx = Pred->getLocationContext();
170 ProgramStateRef State = Pred->getState();
171
Jordan Rosee460c462012-07-26 20:04:25 +0000172 // FIXME: We need to run the same destructor on every element of the array.
173 // This workaround will just run the first destructor (which will still
174 // invalidate the entire array).
Jordan Rose4f69eb42012-12-12 19:13:44 +0000175 // This is a loop because of multidimensional arrays.
176 while (const ArrayType *AT = getContext().getAsArrayType(ObjectType)) {
Jordan Rosee460c462012-07-26 20:04:25 +0000177 ObjectType = AT->getElementType();
Jordan Rosed563d3f2012-07-30 20:22:09 +0000178 Dest = State->getLValue(ObjectType, getSValBuilder().makeZeroArrayIndex(),
179 loc::MemRegionVal(Dest)).getAsRegion();
Jordan Rosee460c462012-07-26 20:04:25 +0000180 }
181
Jordan Rose888c90a2012-07-26 20:04:13 +0000182 const CXXRecordDecl *RecordDecl = ObjectType->getAsCXXRecordDecl();
183 assert(RecordDecl && "Only CXXRecordDecls should have destructors");
184 const CXXDestructorDecl *DtorDecl = RecordDecl->getDestructor();
185
Jordan Rosed563d3f2012-07-30 20:22:09 +0000186 CallEventManager &CEMgr = getStateManager().getCallEventManager();
187 CallEventRef<CXXDestructorCall> Call =
Jordan Rose200fa2e2012-09-06 20:37:08 +0000188 CEMgr.getCXXDestructorCall(DtorDecl, S, Dest, IsBaseDtor, State, LCtx);
Ted Kremenekb1b5daf2011-10-23 02:31:52 +0000189
Jordan Rose563ea232012-08-03 23:31:15 +0000190 PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
191 Call->getSourceRange().getBegin(),
192 "Error evaluating destructor");
193
Jordan Rose8d276d32012-07-10 22:07:47 +0000194 ExplodedNodeSet DstPreCall;
195 getCheckerManager().runCheckersForPreCall(DstPreCall, Pred,
Jordan Rosed563d3f2012-07-30 20:22:09 +0000196 *Call, *this);
Zhongxing Xub13453b2010-11-20 06:53:12 +0000197
Jordan Rose8d276d32012-07-10 22:07:47 +0000198 ExplodedNodeSet DstInvalidated;
Ted Kremenek66c486f2012-08-22 06:26:15 +0000199 StmtNodeBuilder Bldr(DstPreCall, DstInvalidated, *currBldrCtx);
Jordan Rose8d276d32012-07-10 22:07:47 +0000200 for (ExplodedNodeSet::iterator I = DstPreCall.begin(), E = DstPreCall.end();
201 I != E; ++I)
Jordan Rosed563d3f2012-07-30 20:22:09 +0000202 defaultEvalCall(Bldr, *I, *Call);
Jordan Rose8d276d32012-07-10 22:07:47 +0000203
204 ExplodedNodeSet DstPostCall;
205 getCheckerManager().runCheckersForPostCall(Dst, DstInvalidated,
Jordan Rosed563d3f2012-07-30 20:22:09 +0000206 *Call, *this);
Zhongxing Xub13453b2010-11-20 06:53:12 +0000207}
208
Argyrios Kyrtzidisd2592a32010-12-22 18:53:44 +0000209void ExprEngine::VisitCXXNewExpr(const CXXNewExpr *CNE, ExplodedNode *Pred,
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000210 ExplodedNodeSet &Dst) {
Jordan Rose70cbf3c2012-07-02 22:21:47 +0000211 // FIXME: Much of this should eventually migrate to CXXAllocatorCall.
212 // Also, we need to decide how allocators actually work -- they're not
213 // really part of the CXXNewExpr because they happen BEFORE the
214 // CXXConstructExpr subexpression. See PR12014 for some discussion.
Ted Kremenek66c486f2012-08-22 06:26:15 +0000215 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
Ted Kremenek41c5f492011-03-31 04:04:48 +0000216
Ted Kremenek66c486f2012-08-22 06:26:15 +0000217 unsigned blockCount = currBldrCtx->blockCount();
Ted Kremenek3133f792012-02-17 23:13:45 +0000218 const LocationContext *LCtx = Pred->getLocationContext();
Ted Kremenek3b1df8b2012-08-22 06:26:06 +0000219 DefinedOrUnknownSVal symVal = svalBuilder.conjureSymbolVal(0, CNE, LCtx,
220 CNE->getType(),
221 blockCount);
Jordan Rosee38c1c22012-06-20 01:32:01 +0000222 ProgramStateRef State = Pred->getState();
Ted Kremenek41c5f492011-03-31 04:04:48 +0000223
Jordan Rosed563d3f2012-07-30 20:22:09 +0000224 CallEventManager &CEMgr = getStateManager().getCallEventManager();
225 CallEventRef<CXXAllocatorCall> Call =
226 CEMgr.getCXXAllocatorCall(CNE, State, LCtx);
227
Jordan Rose70cbf3c2012-07-02 22:21:47 +0000228 // Invalidate placement args.
Jordan Rosed563d3f2012-07-30 20:22:09 +0000229 // FIXME: Once we figure out how we want allocators to work,
230 // we should be using the usual pre-/(default-)eval-/post-call checks here.
231 State = Call->invalidateRegions(blockCount);
Jordan Rose70cbf3c2012-07-02 22:21:47 +0000232
Jordan Roseb59b5802012-10-20 02:32:51 +0000233 // If we're compiling with exceptions enabled, and this allocation function
234 // is not declared as non-throwing, failures /must/ be signalled by
235 // exceptions, and thus the return value will never be NULL.
236 // C++11 [basic.stc.dynamic.allocation]p3.
237 FunctionDecl *FD = CNE->getOperatorNew();
238 if (FD && getContext().getLangOpts().CXXExceptions) {
239 QualType Ty = FD->getType();
240 if (const FunctionProtoType *ProtoType = Ty->getAs<FunctionProtoType>())
241 if (!ProtoType->isNothrow(getContext()))
242 State = State->assume(symVal, true);
243 }
244
Ted Kremenek41c5f492011-03-31 04:04:48 +0000245 if (CNE->isArray()) {
246 // FIXME: allocating an array requires simulating the constructors.
247 // For now, just return a symbolicated region.
Jordan Rose70cbf3c2012-07-02 22:21:47 +0000248 const MemRegion *NewReg = cast<loc::MemRegionVal>(symVal).getRegion();
249 QualType ObjTy = CNE->getType()->getAs<PointerType>()->getPointeeType();
250 const ElementRegion *EleReg =
251 getStoreManager().GetElementZeroRegion(NewReg, ObjTy);
Jordan Rosee38c1c22012-06-20 01:32:01 +0000252 State = State->BindExpr(CNE, Pred->getLocationContext(),
Ted Kremenek5eca4822012-01-06 22:09:28 +0000253 loc::MemRegionVal(EleReg));
Jordan Rosee38c1c22012-06-20 01:32:01 +0000254 Bldr.generateNode(CNE, Pred, State);
Ted Kremenek41c5f492011-03-31 04:04:48 +0000255 return;
256 }
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000257
Jordan Rose70cbf3c2012-07-02 22:21:47 +0000258 // FIXME: Once we have proper support for CXXConstructExprs inside
259 // CXXNewExpr, we need to make sure that the constructed object is not
260 // immediately invalidated here. (The placement call should happen before
261 // the constructor call anyway.)
Jordan Rosee38c1c22012-06-20 01:32:01 +0000262 if (FD && FD->isReservedGlobalPlacementOperator()) {
263 // Non-array placement new should always return the placement location.
264 SVal PlacementLoc = State->getSVal(CNE->getPlacementArg(0), LCtx);
Jordan Rose9874f592012-09-08 01:24:38 +0000265 SVal Result = svalBuilder.evalCast(PlacementLoc, CNE->getType(),
266 CNE->getPlacementArg(0)->getType());
267 State = State->BindExpr(CNE, LCtx, Result);
Jordan Rose70cbf3c2012-07-02 22:21:47 +0000268 } else {
269 State = State->BindExpr(CNE, LCtx, symVal);
Jordan Rosee38c1c22012-06-20 01:32:01 +0000270 }
271
Jordan Rose89e5aaf2012-07-16 23:38:09 +0000272 // If the type is not a record, we won't have a CXXConstructExpr as an
273 // initializer. Copy the value over.
274 if (const Expr *Init = CNE->getInitializer()) {
275 if (!isa<CXXConstructExpr>(Init)) {
276 QualType ObjTy = CNE->getType()->getAs<PointerType>()->getPointeeType();
277 (void)ObjTy;
278 assert(!ObjTy->isRecordType());
279 SVal Location = State->getSVal(CNE, LCtx);
280 if (isa<Loc>(Location))
281 State = State->bindLoc(cast<Loc>(Location), State->getSVal(Init, LCtx));
282 }
283 }
284
Jordan Rosee38c1c22012-06-20 01:32:01 +0000285 Bldr.generateNode(CNE, Pred, State);
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000286}
287
Argyrios Kyrtzidisd2592a32010-12-22 18:53:44 +0000288void ExprEngine::VisitCXXDeleteExpr(const CXXDeleteExpr *CDE,
Anna Zaksebae6d02011-10-24 18:26:19 +0000289 ExplodedNode *Pred, ExplodedNodeSet &Dst) {
Ted Kremenek66c486f2012-08-22 06:26:15 +0000290 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
Erik Verbruggen4fafeb62012-02-29 08:42:57 +0000291 ProgramStateRef state = Pred->getState();
292 Bldr.generateNode(CDE, Pred, state);
Zhongxing Xu6b851382010-04-21 02:17:31 +0000293}
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000294
Ted Kremenek337e4db2012-03-10 01:34:17 +0000295void ExprEngine::VisitCXXCatchStmt(const CXXCatchStmt *CS,
296 ExplodedNode *Pred,
297 ExplodedNodeSet &Dst) {
298 const VarDecl *VD = CS->getExceptionDecl();
Ted Kremenekce612f52012-03-16 05:58:15 +0000299 if (!VD) {
300 Dst.Add(Pred);
301 return;
302 }
303
Ted Kremenek337e4db2012-03-10 01:34:17 +0000304 const LocationContext *LCtx = Pred->getLocationContext();
Ted Kremenek3b1df8b2012-08-22 06:26:06 +0000305 SVal V = svalBuilder.conjureSymbolVal(CS, LCtx, VD->getType(),
Ted Kremenek66c486f2012-08-22 06:26:15 +0000306 currBldrCtx->blockCount());
Ted Kremenek337e4db2012-03-10 01:34:17 +0000307 ProgramStateRef state = Pred->getState();
308 state = state->bindLoc(state->getLValue(VD, LCtx), V);
309
Ted Kremenek66c486f2012-08-22 06:26:15 +0000310 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
Ted Kremenek337e4db2012-03-10 01:34:17 +0000311 Bldr.generateNode(CS, Pred, state);
312}
313
Argyrios Kyrtzidisd2592a32010-12-22 18:53:44 +0000314void ExprEngine::VisitCXXThisExpr(const CXXThisExpr *TE, ExplodedNode *Pred,
Zhongxing Xu6b851382010-04-21 02:17:31 +0000315 ExplodedNodeSet &Dst) {
Ted Kremenek66c486f2012-08-22 06:26:15 +0000316 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
Anna Zaksebae6d02011-10-24 18:26:19 +0000317
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000318 // Get the this object region from StoreManager.
Ted Kremenek5eca4822012-01-06 22:09:28 +0000319 const LocationContext *LCtx = Pred->getLocationContext();
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000320 const MemRegion *R =
Ted Kremenekc8413fd2010-12-02 07:49:45 +0000321 svalBuilder.getRegionManager().getCXXThisRegion(
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000322 getContext().getCanonicalType(TE->getType()),
Ted Kremenek5eca4822012-01-06 22:09:28 +0000323 LCtx);
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000324
Ted Kremenek8bef8232012-01-26 21:29:00 +0000325 ProgramStateRef state = Pred->getState();
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000326 SVal V = state->getSVal(loc::MemRegionVal(R));
Ted Kremenek5eca4822012-01-06 22:09:28 +0000327 Bldr.generateNode(TE, Pred, state->BindExpr(TE, LCtx, V));
Zhongxing Xucb7464a2010-04-19 12:51:02 +0000328}