HomeSort by relevance Sort by last modified time
    Searched defs:Exit (Results 1 - 25 of 29) sorted by null

1 2

  /external/llvm/tools/lli/
lli.cpp 163 atexit(do_shutdown); // Call llvm_shutdown() on exit.
191 exit(1);
233 exit(1);
265 // If the program doesn't explicitly call exit, we will need the Exit
267 Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context),
291 // If the program didn't call exit explicitly, we should call it now.
293 if (Function *ExitF = dyn_cast<Function>(Exit)) {
299 errs() << "ERROR: exit(" << Result << ") returned!\n"
    [all...]
  /external/llvm/unittests/VMCore/
VerifierTest.cpp 30 BasicBlock *Exit = BasicBlock::Create(C, "exit", F.get());
31 ReturnInst::Create(C, Exit);
37 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 105 const CFGBlock *Exit = BE.getDst();
106 const CFGElement &CE = Exit->front();
  /external/llvm/lib/CodeGen/
SpillPlacement.h 69 /// exit.
72 PrefReg, ///< Block entry/exit prefers a register.
73 PrefSpill, ///< Block entry/exit prefers a stack slot.
78 /// BlockConstraint - Entry and exit constraints for a basic block.
82 BorderConstraint Exit : 8; ///< Constraint on block exit.
107 /// Entry = Exit = PrefSpill, and ChangesValue = false.
  /external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 168 // Keep it simple, and restrict loop rotation to loops with one exit only.
201 BasicBlock *Exit = BI->getSuccessor(0);
203 if (L->contains(Exit))
204 std::swap(Exit, NewHeader);
206 assert(L->contains(NewHeader) && !L->contains(Exit) &&
207 "Unable to determine loop header and exit blocks");
307 // Since OrigPreheader now has the conditional branch to Exit block, it is
308 // the dominator of Exit.
309 DT->changeImmediateDominator(Exit, OrigPreheader);
321 // Preserve canonical loop form, which means that 'Exit' should have only on
    [all...]
  /external/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 120 /// CreatePHIsForSplitLoopExit - When a loop exit edge is split, LCSSA form
121 /// may require new PHIs in the new exit block. This function inserts the
123 /// is the new loop exit block, and DestBB is the old loop exit, now the
330 // other exit blocks of the loop that also have predecessors outside
335 "Split point for loop exit is contained in loop!");
337 // Update LCSSA form in the newly created exit block.
344 // For each unique exit block...
354 BasicBlock *Exit = ExitBlocks[i];
355 for (pred_iterator I = pred_begin(Exit), E = pred_end(Exit)
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 190 BNE Exit ;// If not set Exit
234 B Exit ;// Branch to exit
274 Exit
  /external/v8/src/mips/
virtual-frame-mips.cc 87 void VirtualFrame::Exit() {
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 212 BNE Exit ;// If not set Exit
254 B Exit
306 Exit
  /external/chromium/chrome/browser/ui/
browser_list.cc 338 // exit can restore all browsers open before exiting.
378 void BrowserList::Exit() {
401 // On most platforms, closing all windows causes the application to exit.
406 // that is done, will cause the application to exit cleanly.
434 // can properly shutdown before we exit.
445 // down. If any messages are processed we'll likely crash. Exit now.
browser.cc     [all...]
  /external/v8/src/
isolate.cc 507 // direct pointer. We don't use Enter/Exit here to avoid
888 void Isolate::Exit() {
full-codegen.cc 958 // with one that's safe for GC. If we hit an exit from the try block of
963 stack_depth = current->Exit(stack_depth);
979 // with one that's safe for GC. If we hit an exit from the try block of
984 stack_depth = current->Exit(stack_depth);
1000 // Exit all nested statements.
1004 stack_depth = current->Exit(stack_depth);
    [all...]
full-codegen.h 147 virtual int Exit(int stack_depth) {
204 virtual int Exit(int stack_depth);
218 virtual int Exit(int stack_depth);
232 virtual int Exit(int stack_depth) {
251 virtual int Exit(int stack_depth) {
api.cc 577 void Context::Exit() {
583 "v8::Context::Exit()",
584 "Cannot exit non-entered context")) {
    [all...]
  /external/llvm/lib/Analysis/
RegionInfo.cpp 9 // Detects single entry single exit regions in the control flow graph.
56 Region::Region(BasicBlock *Entry, BasicBlock *Exit, RegionInfo* RInfo,
58 : RegionNode(Parent, Entry, 1), RI(RInfo), DT(dt), exit(Exit) {}
79 assert(exit && "No exit to replace!");
80 exit = BB;
88 BasicBlock *entry = getEntry(), *exit = getExit(); local
91 if (!exit)
95 && !(DT->dominates(exit, BB) && DT->dominates(entry, exit)))
156 BasicBlock *exit = getExit(); local
211 BasicBlock *entry = getEntry(), *exit = getExit(); local
224 BasicBlock *exit = getExit(); local
596 BasicBlock *exit = N->getBlock(); local
    [all...]
  /external/openssl/crypto/des/
des.c 104 #define EXIT(a) exit(a&0x10000000L)
106 #define EXIT(a) exit(a)
255 EXIT(1);
275 EXIT(3);
282 EXIT(2);
290 EXIT(4);
302 EXIT(5);
319 EXIT(0)
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 339 /// will have a single immediate successor: the exit block. This allows them
340 /// to be easily reached from the exit block and using this bit quickly
543 /// represents the Exit point of the CFG. A CFG will also contain a designated
629 CFGBlock & getExit() { return *Exit; }
630 const CFGBlock & getExit() const { return *Exit; }
696 CFG() : Entry(NULL), Exit(NULL), IndirectGotoBlock(NULL), NumBlockIDs(0),
711 CFGBlock *Exit;
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h 637 /// the parser will exit the scope.
656 // Exit - Exit the scope associated with this object now, rather
658 void Exit() {
666 Exit();
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 55 instructions. IRSBs are single-entry, multiple-exit code blocks.
61 Because the blocks are multiple-exit, there can be additional
62 conditional exit statements that cause control to leave the IRSB
63 before the final exit. Also because of this, IRSBs can cover
254 /* IRConsts are used within 'Const' and 'Exit' IRExprs. */
    [all...]
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 

Completed in 1523 milliseconds

1 2