Searched defs:Bad (Results 1 - 6 of 6) sorted by relevance

/openjdk7/langtools/test/tools/javac/PackageClassAmbiguity/
H A DBad.java32 * @compile/fail Bad.java
38 class Bad { class
/openjdk7/jdk/test/java/io/Serializable/concurrentClassDescLookup/
H A DConcurrentClassDescLookup.java38 class Bad implements Serializable { class in inherits:Serializable
121 cl = Class.forName("Bad", false, loader);
/openjdk7/hotspot/src/share/vm/opto/
H A Doptoreg.hpp58 Bad = -1 // Not a register enumerator in enum:VALUE_OBJ_CLASS_SPEC::__anon352
98 return (n != Bad);
107 // Must use table, it'd be nice if Bad was indexable...
111 return VMRegImpl::Bad();
115 // Can un-warp a stack slot or convert a register or Bad
118 // Must use table, it'd be nice if Bad was indexable...
128 return VMRegImpl::Bad();
137 // Must use table, it'd be nice if Bad was indexable...
140 return Bad;
171 // stands if you convert a flag (condition code) to a VMReg you will get VMRegImpl::Bad
[all...]
H A Dtype.hpp76 Bad=0, // Type check enumerator in enum:Type::TYPES
175 assert(_base > Bad && _base < lastype, "sanity");
/openjdk7/hotspot/src/share/vm/code/
H A Dvmreg.hpp111 static VMReg Bad() { return (VMReg) (intptr_t) BAD; } function in class:VMRegImpl
196 // the calling convention's registers. VMRegImpl::Bad is returned for any
200 // 32-bits of O0/O1 are set to VMRegImpl::Bad). Longs in one register & doubles
208 void set_bad ( ) { _second=VMRegImpl::Bad(); _first=VMRegImpl::Bad(); }
209 void set1 ( VMReg v ) { _second=VMRegImpl::Bad(); _first=v; }
216 _second = VMRegImpl::Bad();
243 VMRegPair(VMReg f) { _second = VMRegImpl::Bad(); _first = f; }
244 VMRegPair() { _second = VMRegImpl::Bad(); _first = VMRegImpl::Bad(); }
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp549 Label Bad, OK; local
557 br(Assembler::notZero, false, Assembler::pn, Bad);
565 cmp_and_brx_short(Rtemp, FP, Assembler::greaterUnsigned, Assembler::pn, Bad);
574 cmp_and_brx_short(Rsp, Rtemp, Assembler::lessUnsigned, Assembler::pn, Bad);
578 bind(Bad);

Completed in 2182 milliseconds