llvm::BasicBlock *LoopBody = createBasicBlock("while.body");
// Store the blocks to use for break and continue.
- BreakContinuePush(ExitBlock, LoopHeader);
+ BreakContinueStack.push_back(BreakContinue(ExitBlock, LoopHeader));
// Evaluate the conditional in the while header. C99 6.8.5.1: The
// evaluation of the controlling expression takes place before each
EmitBlock(LoopBody);
EmitStmt(S.getBody());
- BreakContinuePop();
+ BreakContinueStack.pop_back();
// Cycle to the condition.
EmitBranch(LoopHeader);
llvm::BasicBlock *DoCond = createBasicBlock("do.cond");
// Store the blocks to use for break and continue.
- BreakContinuePush(AfterDo, DoCond);
+ BreakContinueStack.push_back(BreakContinue(AfterDo, DoCond));
// Emit the body of the loop into the block.
EmitStmt(S.getBody());
- BreakContinuePop();
+ BreakContinueStack.pop_back();
EmitBlock(DoCond);
EmitBlock(CondBlock);
- llvm::Value *saveStackDepth = StackDepth;
-
// Evaluate the condition if present. If not, treat it as a
// non-zero-constant according to 6.8.5.3p2, aka, true.
if (S.getCond()) {
ContinueBlock = CondBlock;
// Store the blocks to use for break and continue.
- // Ensure any vlas created between there and here, are undone
- BreakContinuePush(AfterFor, ContinueBlock,
- saveStackDepth, saveStackDepth);
+ BreakContinueStack.push_back(BreakContinue(AfterFor, ContinueBlock));
// If the condition is true, execute the body of the for stmt.
EmitStmt(S.getBody());
- BreakContinuePop();
+ BreakContinueStack.pop_back();
// If there is an increment, emit it next.
if (S.getInc()) {
void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
assert(!BreakContinueStack.empty() && "break stmt not in a loop or switch!");
- // FIXME: Implement break in @try or @catch blocks.
- if (ObjCEHStack.size() != BreakContinueStack.back().EHStackSize) {
- CGM.ErrorUnsupported(&S, "break inside an Obj-C exception block");
- return;
- }
-
// If this code is reachable then emit a stop point (if generating
// debug info). We have to do this ourselves because we are on the
// "simple" statement path.
if (HaveInsertPoint())
EmitStopPoint(&S);
- // We need to adjust the stack, if the destination was (will be) at
- // a different depth.
- if (EmitStackUpdate(BreakContinueStack.back().SaveBreakStackDepth))
- assert (0 && "break vla botch");
-
llvm::BasicBlock *Block = BreakContinueStack.back().BreakBlock;
EmitBranchThroughCleanup(Block);
}
void CodeGenFunction::EmitContinueStmt(const ContinueStmt &S) {
assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
- // FIXME: Implement continue in @try or @catch blocks.
- if (ObjCEHStack.size() != BreakContinueStack.back().EHStackSize) {
- CGM.ErrorUnsupported(&S, "continue inside an Obj-C exception block");
- return;
- }
-
// If this code is reachable then emit a stop point (if generating
// debug info). We have to do this ourselves because we are on the
// "simple" statement path.
if (HaveInsertPoint())
EmitStopPoint(&S);
- // We need to adjust the stack, if the destination was (will be) at
- // a different depth.
- if (EmitStackUpdate(BreakContinueStack.back().SaveContinueStackDepth))
- assert (0 && "continue vla botch");
-
llvm::BasicBlock *Block = BreakContinueStack.back().ContinueBlock;
EmitBranchThroughCleanup(Block);
}
llvm::SwitchInst *SavedSwitchInsn = SwitchInsn;
llvm::BasicBlock *SavedCRBlock = CaseRangeBlock;
- // Ensure any vlas created inside are destroyed on break.
- llvm::Value *saveBreakStackDepth = StackDepth;
-
// Create basic block to hold stuff that comes after switch
// statement. We also need to create a default block now so that
// explicit case ranges tests can have a place to jump to on
// All break statements jump to NextBlock. If BreakContinueStack is non empty
// then reuse last ContinueBlock.
- llvm::BasicBlock *ContinueBlock = NULL;
- llvm::Value *saveContinueStackDepth = NULL;
- if (!BreakContinueStack.empty()) {
+ llvm::BasicBlock *ContinueBlock = 0;
+ if (!BreakContinueStack.empty())
ContinueBlock = BreakContinueStack.back().ContinueBlock;
- saveContinueStackDepth = BreakContinueStack.back().SaveContinueStackDepth;
- }
+
// Ensure any vlas created between there and here, are undone
- BreakContinuePush(NextBlock, ContinueBlock,
- saveBreakStackDepth, saveContinueStackDepth);
+ BreakContinueStack.push_back(BreakContinue(NextBlock, ContinueBlock));
// Emit switch body.
EmitStmt(S.getBody());
- BreakContinuePop();
+
+ BreakContinueStack.pop_back();
// Update the default block in case explicit case range tests have
// been chained on top.
/// LabelMap - This keeps track of the LLVM basic block for each C label.
llvm::DenseMap<const LabelStmt*, llvm::BasicBlock*> LabelMap;
- /// BreakContinuePush - Note a new break and continue level. This must be
- /// called at the stack depth of the continue block. In particular, this must
- /// not be called after the controlling condition has possibly started a vla.
- void BreakContinuePush(llvm::BasicBlock *bb, llvm::BasicBlock *cb) {
- BreakContinueStack.push_back(BreakContinue(bb, cb, StackDepth,
- StackDepth,
- ObjCEHStack.size()));
- }
- void BreakContinuePush(llvm::BasicBlock *bb, llvm::BasicBlock *cb,
- llvm::Value *bsd, llvm::Value *csd) {
- BreakContinueStack.push_back(BreakContinue(bb, cb, bsd, csd,
- ObjCEHStack.size()));
- }
-
- /// BreakContinuePop - Note end of previous break and continue level.
- void BreakContinuePop() {
- BreakContinueStack.pop_back();
- }
-
// BreakContinueStack - This keeps track of where break and continue
- // statements should jump to, as well as the depth of the stack and the size
- // of the eh stack.
+ // statements should jump to.
struct BreakContinue {
- BreakContinue(llvm::BasicBlock *bb, llvm::BasicBlock *cb,
- llvm::Value *bsd, llvm::Value *csd, size_t ehss)
- : BreakBlock(bb), ContinueBlock(cb), SaveBreakStackDepth(bsd),
- SaveContinueStackDepth(csd), EHStackSize(ehss) {}
+ BreakContinue(llvm::BasicBlock *bb, llvm::BasicBlock *cb)
+ : BreakBlock(bb), ContinueBlock(cb) {}
llvm::BasicBlock *BreakBlock;
llvm::BasicBlock *ContinueBlock;
- llvm::Value *SaveBreakStackDepth;
- llvm::Value *SaveContinueStackDepth;
- size_t EHStackSize;
};
llvm::SmallVector<BreakContinue, 8> BreakContinueStack;