This commit is contained in:
Joseph Provino 2013-07-16 12:20:08 -04:00
commit b573023374
2314 changed files with 78229 additions and 36237 deletions

View file

@ -763,18 +763,6 @@ inline BasicType as_BasicType(TosState state) {
TosState as_TosState(BasicType type);
// ReferenceType is used to distinguish between java/lang/ref/Reference subclasses
enum ReferenceType {
REF_NONE, // Regular class
REF_OTHER, // Subclass of java/lang/ref/Reference, but not subclass of one of the classes below
REF_SOFT, // Subclass of java/lang/ref/SoftReference
REF_WEAK, // Subclass of java/lang/ref/WeakReference
REF_FINAL, // Subclass of java/lang/ref/FinalReference
REF_PHANTOM // Subclass of java/lang/ref/PhantomReference
};
// JavaThreadState keeps track of which part of the code a thread is executing in. This
// information is needed by the safepoint code.
//