Hi,
I did a CVS update and to my regret I now find the following errors from
Jikes:
Found 1 semantic error compiling "java/lang/Object.java":
7. import com.ibm.JikesRVM.VM_ObjectModel;
^------------^
*** Semantic Error: A candidate for type "VM_ObjectModel" was found, but
it is invalid and needs to be fixed before this type will successfully
compile.
Found 7 semantic errors compiling "org/mmtk/vm/Scanning.java":
81. public static void enumeratePointers(ObjectReference object,
Enumerate _enum)
^-------^
*** Semantic Error: Type "org.mmtk.vm.Enumerate" was not found.
114. enumeratePointers(VM_Scheduler.threads, preCopyEnum);
^--------------------------------------------------^
*** Semantic Error: No applicable overload for a method with signature
"enumeratePointers(com.ibm.JikesRVM.VM_Thread[],
org.mmtk.utility.scan.PreCopyEnumerator)" was found in type
"org.mmtk.vm.Scanning". Perhaps you wanted the overloaded version "void
enumeratePointers(org.vmmagic.unboxed.ObjectReference object, ?? _enum)
throws org.vmmagic.pragma.UninterruptiblePragma,
org.vmmagic.pragma.InlinePragma;" instead?
121. enumeratePointers(thread, preCopyEnum);
^------------------------------------^
*** Semantic Error: No applicable overload for a method with signature
"enumeratePointers(com.ibm.JikesRVM.VM_Thread,
org.mmtk.utility.scan.PreCopyEnumerator)" was found in type
"org.mmtk.vm.Scanning". Perhaps you wanted the overloaded version "void
enumeratePointers(org.vmmagic.unboxed.ObjectReferenceobject, ?? _enum)
throws org.vmmagic.pragma.UninterruptiblePragma,
org.vmmagic.pragma.InlinePragma;" instead?
122. enumeratePointers(thread.contextRegisters, preCopyEnum);
^-----------------------------------------------------^
*** Semantic Error: No applicable overload for a method with signature
"enumeratePointers(com.ibm.JikesRVM.VM_Registers,
org.mmtk.utility.scan.PreCopyEnumerator)" was found in type
"org.mmtk.vm.Scanning". Perhaps you wanted the overloaded version "void
enumeratePointers(org.vmmagic.unboxed.ObjectReference object, ?? _enum)
throws org.vmmagic.pragma.UninterruptiblePragma,
org.vmmagic.pragma.InlinePragma;" instead?
123. enumeratePointers(thread.hardwareExceptionRegisters,
preCopyEnum);
^---------------------------------------------------------------^
*** Semantic Error: No applicable overload for a method with signature
"enumeratePointers(com.ibm.JikesRVM.VM_Registers,
org.mmtk.utility.scan.PreCopyEnumerator)" was found in type
"org.mmtk.vm.Scanning". Perhaps you wanted the overloaded version "void
enumeratePointers(org.vmmagic.unboxed.ObjectReference object, ?? _enum)
throws org.vmmagic.pragma.UninterruptiblePragma,
org.vmmagic.pragma.InlinePragma;" instead?
128. enumeratePointers(thread.jniEnv, preCopyEnum);
^-------------------------------------------^
*** Semantic Error: No applicable overload for a method with signature
"enumeratePointers(com.ibm.JikesRVM.jni.VM_JNIEnvironment,
org.mmtk.utility.scan.PreCopyEnumerator)" was found in type
"org.mmtk.vm.Scanning". Perhaps you wanted the overloaded version "void
enumeratePointers(org.vmmagic.unboxed.ObjectReference object, ?? _enum)
throws org.vmmagic.pragma.UninterruptiblePragma,
org.vmmagic.pragma.InlinePragma;" instead?
144. private static void enumeratePointers(Object object, Enumerate
_enum)
^-------^
*** Semantic Error: Type "Enumerate" was not found.
Found 2 semantic errors compiling "org/mmtk/vm/ScanThread.java":
213. VM_GCMapIteratorGroup iteratorGroup = collector.iteratorGroup;
^-----------^
*** Semantic Error: No accessible field named "iteratorGroup" was found
in type "com.ibm.JikesRVM.memoryManagers.mmInterface.VM_CollectorThread".
214. iteratorGroup.newStackWalk(t);
^---------------------------^
*** Semantic Error: No applicable overload for a method with signature
"newStackWalk(com.ibm.JikesRVM.VM_Thread)" was found in type
"com.ibm.JikesRVM.memoryManagers.mmInterface.VM_GCMapIteratorGroup".
Perhaps you wanted the overloaded version "void
newStackWalk(com.ibm.JikesRVM.VM_Thread thread,
org.vmmagic.unboxed.Address registerLocation) throws
org.vmmagic.pragma.UninterruptiblePragma;" instead?
Found 1 semantic error compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/utility/gcspy/Subspace.java":
9. import org.mmtk.vm.gcspy.Util;
^--------------------^
*** Semantic Error: The import "org/mmtk/vm/gcspy/Util" is not valid,
since it does not name a type in a package.
Found 4 semantic errors compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/utility/gcspy/drivers/AbstractDriver.java":
10. import org.mmtk.vm.gcspy.ServerSpace;
^---------------------------^
*** Semantic Error: The import "org/mmtk/vm/gcspy/ServerSpace" is not
valid, since it does not name a type in a package.
11. import org.mmtk.vm.gcspy.ServerInterpreter;
^---------------------------------^
*** Semantic Error: The import "org/mmtk/vm/gcspy/ServerInterpreter" is
not valid, since it does not name a type in a package.
12. import org.mmtk.vm.gcspy.Util;
^--------------------^
*** Semantic Error: The import "org/mmtk/vm/gcspy/Util" is not valid,
since it does not name a type in a package.
34. protected ServerSpace space; // The GCspy
space abstraction
^---------^
*** Semantic Error: Type "ServerSpace" was not found.
Found 10 semantic errors compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/utility/gcspy/drivers/TreadmillDriver.java":
12. import org.mmtk.utility.gcspy.Subspace;
^------^
*** Semantic Error: A candidate for type "Subspace" was found, but it is
invalid and needs to be fixed before this type will successfully compile.
16. import org.mmtk.vm.gcspy.ServerInterpreter;
^---------------------------------^
*** Semantic Error: The import "org/mmtk/vm/gcspy/ServerInterpreter" is
not valid, since it does not name a type in a package.
17. import org.mmtk.vm.gcspy.ServerSpace;
^---------------------------^
*** Semantic Error: The import "org/mmtk/vm/gcspy/ServerSpace" is not
valid, since it does not name a type in a package.
18. import org.mmtk.vm.gcspy.Stream;
^----------------------^
*** Semantic Error: The import "org/mmtk/vm/gcspy/Stream" is not valid,
since it does not name a type in a package.
33. public class TreadmillDriver extends AbstractDriver
^------------^
*** Semantic Error: A candidate for type "AbstractDriver" was found, but
it is invalid and needs to be fixed before this type will successfully
compile.
76. private Stream usedSpaceStream;
^----^
*** Semantic Error: Type "Stream" was not found.
77. private Stream objectsStream;
^----^
*** Semantic Error: Type "Stream" was not found.
132. space = new ServerSpace(
^---------^
*** Semantic Error: Type "ServerSpace" was not found.
147. = new Stream(
^----^
*** Semantic Error: Type "Stream" was not found.
164. objectsStream = new Stream(
^----^
*** Semantic Error: Type "Stream" was not found.
Found 1 semantic error compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/utility/Treadmill.java":
6. import org.mmtk.utility.gcspy.drivers.TreadmillDriver;
^-------------^
*** Semantic Error: A candidate for type "TreadmillDriver" was found,
but it is invalid and needs to be fixed before this type will
successfully compile.
Found 1 semantic error compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/policy/LargeObjectSpace.java":
8. import org.mmtk.utility.Treadmill;
^-------^
*** Semantic Error: A candidate for type "Treadmill" was found, but it
is invalid and needs to be fixed before this type will successfully compile.
Found 2 semantic errors compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/plan/BasePlan.java":
9. import org.mmtk.policy.LargeObjectSpace;
^--------------^
*** Semantic Error: A candidate for type "LargeObjectSpace" was found,
but it is invalid and needs to be fixed before this type will
successfully compile.
26. import org.mmtk.vm.PlanConstants;
^-----------------------^
*** Semantic Error: The import "org/mmtk/vm/PlanConstants" is not valid,
since it does not name a type in a package.
Found 2 semantic errors compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/utility/heap/HeapGrowthManager.java":
7. import org.mmtk.plan.BasePlan;
^------^
*** Semantic Error: A candidate for type "BasePlan" was found, but it is
invalid and needs to be fixed before this type will successfully compile.
11. import org.mmtk.vm.PlanConstants;
^-----------------------^
*** Semantic Error: The import "org/mmtk/vm/PlanConstants" is not valid,
since it does not name a type in a package.
Found 1 semantic error compiling
"com/ibm/JikesRVM/memoryManagers/mmInterface/VM_CollectorThread.java":
8. import org.mmtk.utility.heap.HeapGrowthManager;
^---------------^
*** Semantic Error: A candidate for type "HeapGrowthManager" was found,
but it is invalid and needs to be fixed before this type will
successfully compile.
Found 1 semantic error compiling "com/ibm/JikesRVM/VM_Magic.java":
9. import
com.ibm.JikesRVM.memoryManagers.mmInterface.VM_CollectorThread;
^----------------^
*** Semantic Error: A candidate for type "VM_CollectorThread" was found,
but it is invalid and needs to be fixed before this type will
successfully compile.
Found 1 semantic error compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/plan/StopTheWorldGC.java":
18. import org.mmtk.vm.PlanConstants;
^-----------------------^
*** Semantic Error: The import "org/mmtk/vm/PlanConstants" is not valid,
since it does not name a type in a package.
Found 2 semantic errors compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/plan/Generational.java":
21. import org.mmtk.vm.PlanConstants;
^-----------------------^
*** Semantic Error: The import "org/mmtk/vm/PlanConstants" is not valid,
since it does not name a type in a package.
55. public abstract class Generational extends StopTheWorldGC
^------------^
*** Semantic Error: A candidate for type "StopTheWorldGC" was found, but
it is invalid and needs to be fixed before this type will successfully
compile.
Found 1 semantic error compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/plan/GenMS.java":
54. public class GenMS extends Generational implements Uninterruptible {
^----------^
*** Semantic Error: A candidate for type "Generational" was found, but
it is invalid and needs to be fixed before this type will successfully
compile.
Found 2 semantic errors compiling
"com/ibm/JikesRVM/memoryManagers/mmInterface/VM_AllocatorHeader.java":
9. import org.mmtk.vm.PlanConstants;
^-----------------------^
*** Semantic Error: The import "org/mmtk/vm/PlanConstants" is not valid,
since it does not name a type in a package.
15. import com.ibm.JikesRVM.VM_Magic;
^------^
*** Semantic Error: A candidate for type "VM_Magic" was found, but it is
invalid and needs to be fixed before this type will successfully compile.
Found 1 semantic error compiling "com/ibm/JikesRVM/VM_ObjectModel.java":
8. import
com.ibm.JikesRVM.memoryManagers.mmInterface.VM_AllocatorHeader;
^----------------^
*** Semantic Error: A candidate for type "VM_AllocatorHeader" was found,
but it is invalid and needs to be fixed before this type will
successfully compile.
Found 1 semantic error compiling
"com/ibm/JikesRVM/memoryManagers/mmInterface/MM_Interface.java":
30. import org.mmtk.vm.PlanConstants;
^-----------------------^
*** Semantic Error: The import "org/mmtk/vm/PlanConstants" is not valid,
since it does not name a type in a package.
Found 1 semantic error compiling "Dummy.java":
7. import com.ibm.JikesRVM.memoryManagers.mmInterface.MM_Interface;
^----------^
*** Semantic Error: A candidate for type "MM_Interface" was found, but
it is invalid and needs to be fixed before this type will successfully
compile.
Found 1 semantic error compiling
"/home/simgroup/IanR/current/symlink-antigua/MMTk/src/org/mmtk/utility/scan/Scan.java":
62. Scanning.enumeratePointers(object, _enum);
^---------------------------------------^
*** Semantic Error: No applicable overload for a method with signature
"enumeratePointers(org.vmmagic.unboxed.ObjectReference,
org.mmtk.utility.scan.Enumerator)" was found in type
"org.mmtk.vm.Scanning". Perhaps you wanted the overloaded version "void
enumeratePointers(org.vmmagic.unboxed.ObjectReference object, ?? _enum)
throws org.vmmagic.pragma.UninterruptiblePragma,
org.vmmagic.pragma.InlinePragma;" instead?
...compilation FAILED) jbuild.compile: The Jikes compiler exited with
status 1
Is this being fixed? or is my CVS repository out of sync?
Thanks,
Ian Rogers
|