Searched defs:Exit (Results 1 - 25 of 36) sorted by relevance

12

/external/valgrind/main/VEX/switchback/
H A Dbinary_switchback.pl38 sub Exit { subroutine
54 Exit 1;
142 Exit 1;
211 Exit 1;
317 Exit 1;
353 Exit 1;
373 Exit 1;
431 Exit 0;
/external/llvm/unittests/VMCore/
H A DVerifierTest.cpp30 BasicBlock *Exit = BasicBlock::Create(C, "exit", F.get()); local
31 ReturnInst::Create(C, Exit);
37 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp124 const CFGBlock *Exit = BE.getDst(); local
125 const CFGElement &CE = Exit->front();
/external/llvm/lib/CodeGen/
H A DSpillPlacement.h82 BorderConstraint Exit : 8; ///< Constraint on block exit. member in struct:llvm::SpillPlacement::BlockConstraint
107 /// Entry = Exit = PrefSpill, and ChangesValue = false.
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix.cc149 void Exit(int exitcode) { function in namespace:__sanitizer
H A Dsanitizer_win.cc120 void Exit(int exitcode) { function in namespace:__sanitizer
/external/llvm/include/llvm/Analysis/
H A DRegionInfo.h161 /// The \e Exit of a Region is the first BasicBlock that is passed after
246 /// @param Exit The exit basic block of the region.
251 Region(BasicBlock *Entry, BasicBlock *Exit, RegionInfo* RI,
496 block_iterator_wrapper(pointer Entry, pointer Exit) : super(df_begin(Entry)) argument
501 super::Visited.insert(Exit);
/external/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp303 BasicBlock *Exit = BI->getSuccessor(0); local
305 if (L->contains(Exit))
306 std::swap(Exit, NewHeader);
308 assert(L->contains(NewHeader) && !L->contains(Exit) &&
421 assert(DT->getNode(Exit)->getIDom() == OrigPreheaderNode);
434 // Preserve canonical loop form, which means that 'Exit' should have only
436 BasicBlock *ExitSplit = SplitCriticalEdge(L->getLoopLatch(), Exit, this);
437 ExitSplit->moveBefore(Exit);
440 // simpler. The first step is to remove the extra edge to the Exit block.
441 Exit
[all...]
/external/llvm/lib/Transforms/Utils/
H A DBreakCriticalEdges.cpp357 BasicBlock *Exit = ExitBlocks[i]; local
358 for (pred_iterator I = pred_begin(Exit), E = pred_end(Exit);
377 if (!Exit->isLandingPad()) {
379 SplitBlockPredecessors(Exit, Preds, "split", P);
381 createPHIsForSplitLoopExit(Preds, NewExitBB, Exit);
384 SplitLandingPadPredecessors(Exit, Preds,
388 createPHIsForSplitLoopExit(Preds, NewBBs[0], Exit);
H A DLoopUnrollRuntime.cpp112 BasicBlock *Exit = L->getUniqueExitBlock(); local
113 assert(Exit != 0 && "Loop must have a single exit block only");
115 SmallVector<BasicBlock*, 4> Preds(pred_begin(Exit), pred_end(Exit));
116 if (!Exit->isLandingPad()) {
117 SplitBlockPredecessors(Exit, Preds, ".unr-lcssa", P);
120 SplitLandingPadPredecessors(Exit, Preds, ".unr1-lcssa", ".unr2-lcssa",
124 BranchInst::Create(Exit, NewPH, BrLoopExit, InsertPt);
H A DLoopSimplify.cpp100 BasicBlock *RewriteLoopExitBlock(Loop *L, BasicBlock *Exit);
409 BasicBlock *LoopSimplify::RewriteLoopExitBlock(Loop *L, BasicBlock *Exit) { argument
411 for (pred_iterator I = pred_begin(Exit), E = pred_end(Exit); I != E; ++I) {
424 if (Exit->isLandingPad()) {
426 SplitLandingPadPredecessors(Exit, ArrayRef<BasicBlock*>(&LoopBlocks[0],
432 NewExitBB = SplitBlockPredecessors(Exit, LoopBlocks, ".loopexit", this);
/external/chromium/chrome/browser/ui/
H A Dbrowser_list.cc378 void BrowserList::Exit() { function in class:BrowserList
445 // down. If any messages are processed we'll likely crash. Exit now.
/external/llvm/tools/lli/
H A Dlli.cpp602 // If the program doesn't explicitly call exit, we will need the Exit
604 Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context), local
675 if (Function *ExitF = dyn_cast<Function>(Exit)) {
/external/llvm/lib/Analysis/
H A DRegionInfo.cpp56 Region::Region(BasicBlock *Entry, BasicBlock *Exit, RegionInfo* RInfo, argument
58 : RegionNode(Parent, Entry, 1), RI(RInfo), DT(dt), exit(Exit) {}
467 // Exit is the header of a loop that contains the entry. In this case,
730 BasicBlock *Exit = NULL; local
740 Exit = R->getExit();
742 Exit = *succ_begin(BB);
744 return Exit;
746 // Get largest region that starts at Exit.
747 Region *ExitR = getRegionFor(Exit);
749 && ExitR->getParent()->getEntry() == Exit)
[all...]
/external/openssl/crypto/des/
H A Ddes.c373 int Exit=0; local
385 Exit=10;
407 Exit=9;
420 Exit=9;
479 Exit=6;
553 Exit=7;
582 Exit=6;
628 Exit=8;
643 Exit=7;
681 if (Exit) EXI
[all...]
/external/clang/lib/CodeGen/
H A DCGCleanup.cpp465 static void ForwardPrebranchedFallthrough(llvm::BasicBlock *Exit, argument
468 // Exit is the exit block of a cleanup, so it always terminates in
470 llvm::TerminatorInst *Term = Exit->getTerminator();
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp713 BasicBlock *Exit = BasicBlock::Create(*Ctx, "exit", Fn); local
721 BranchInst::Create(Exit, PredNotNegOne, Cond, BB);
734 Builder.CreateCondBr(Cond, Exit, CounterEnd);
741 Builder.CreateBr(Exit);
744 Builder.SetInsertPoint(Exit);
/external/v8/src/
H A Dfull-codegen.cc1010 current = current->Exit(&stack_depth, &context_length);
1038 current = current->Exit(&stack_depth, &context_length);
1060 // Exit all nested statements.
1065 current = current->Exit(&stack_depth, &context_length);
1397 FullCodeGenerator::NestedStatement* FullCodeGenerator::TryCatch::Exit( function in class:v8::internal::FullCodeGenerator::TryCatch
H A Dfull-codegen.h147 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::BASE_EMBEDDED
209 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::NestedBlock
224 virtual NestedStatement* Exit(int* stack_depth, int* context_length);
235 virtual NestedStatement* Exit(int* stack_depth, int* context_length);
249 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::Finally
265 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::ForIn
280 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::WithOrCatch
H A Dd8.cc206 Exit(1);
576 if (enter_context) utility_context_->Exit();
663 Exit(1);
865 Exit(1);
928 void Shell::Exit(int exit_code) { function in class:v8::Shell
1148 Shell::Exit(1);
1182 Shell::Exit(1);
1194 Shell::Exit(1);
1197 Shell::Exit(1);
1407 Exit(
[all...]
H A Disolate.cc1528 // direct pointer. We don't use Enter/Exit here to avoid
1920 void Isolate::Exit() { function in class:v8::internal::Isolate
/external/clang/include/clang/Analysis/
H A DCFG.h551 /// represents the Exit point of the CFG. A CFG will also contain a designated
696 CFGBlock & getExit() { return *Exit; }
697 const CFGBlock & getExit() const { return *Exit; }
768 CFG() : Entry(NULL), Exit(NULL), IndirectGotoBlock(NULL), NumBlockIDs(0),
783 CFGBlock *Exit; member in class:clang::CFGBlock::CFG
/external/clang/include/clang/Parse/
H A DParser.h674 // Exit - Exit the scope associated with this object now, rather
676 void Exit() { function in class:clang::Parser::ParseScope
684 Exit();
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1504 CFGBlock &Exit = ProgP.getLocationContext()->getCFG()->getExit(); local
1505 if (BE->getBlock() == &Exit)
/external/v8/src/arm/
H A Dfull-codegen-arm.cc1152 // Exit and decrement the loop depth.
4411 FullCodeGenerator::NestedStatement* FullCodeGenerator::TryFinally::Exit( function in class:v8::internal::FullCodeGenerator::TryFinally

Completed in 1384 milliseconds

12