Searched defs:halt (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DShutdown.java63 /* Lock object for the native halt method */
133 /* The halt method is synchronized on the halt lock
135 * It invokes the true native halt method.
137 static void halt(int status) { method in class:Shutdown
152 * run the hooks and then halt. Instead we need to keep track of whether
189 case HOOKS: /* Stall and halt */
194 halt(status);
197 * Run more finalizers and then halt
206 halt(statu
[all...]
H A DRuntime.java75 * has been enabled. Once this is done the virtual machine {@link #halt
102 * @see #halt(int)
135 * Finally, the virtual machine will halt. Note that daemon threads will
141 * invoking the <tt>{@link #halt halt}</tt> method, which forcibly
173 * halt.
202 * @see #halt(int)
270 public void halt(int status) { method in class:Runtime
275 Shutdown.halt(status);
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp1201 Node *halt = new (phase->C) HaltNode( nproj, frame ); local
1202 phase->C->root()->add_req(halt);
1203 phase->transform(halt);
H A Dloopnode.cpp2918 Node *halt = new (C) HaltNode( if_f, frame ); local
2919 _igvn.register_new_node_with_optimizer(halt);
2920 set_loop(halt, l);
2921 C->root()->add_req(halt);
H A DgraphKit.cpp1985 HaltNode* halt = new(C) HaltNode(control(), frameptr()); local
1986 _gvn.set_type_bottom(halt);
1987 root()->add_req(halt);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp2310 Label known_ok, halt; local
2321 __ br(Assembler::notEqual, false, Assembler::pn, halt);
2336 __ brx(Assembler::notEqual, false, Assembler::pn, halt);
2347 __ bind(halt);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp3420 Label known_ok, halt; local
3432 __ jcc(Assembler::notEqual, halt);
3443 __ bind(halt);

Completed in 236 milliseconds