Home | History | Annotate | Download | only in gcmole

Lines Matching refs:block

930   class Block {
932 Block(const Environment& in,
941 ~Block() {
1000 Block* parent_;
1026 Block block (env, this);
1028 block.Loop(stmt->getCond(), stmt->getBody());
1029 } while (block.changed());
1030 return block.out();
1034 Block block (env, this);
1036 block.Loop(stmt->getBody(), stmt->getCond());
1037 } while (block.changed());
1038 return block.out();
1042 Block block (VisitStmt(stmt->getInit(), env), this);
1044 block.Loop(stmt->getCond(),
1047 } while (block.changed());
1048 return block.out();
1059 Block block (env, this);
1060 block.Seq(stmt->getCond(), stmt->getBody());
1061 return block.out();
1169 Block* EnterBlock(Block* block) {
1170 Block* parent = block_;
1171 block_ = block;
1175 void LeaveBlock(Block* block
1176 block_ = block;
1194 Block* block_;