search for: putobject

Displaying 2 results from an estimated 2 matches for "putobject".

Did you mean: outobject
2011 Jul 17
1
[LLVMdev] vmkit runtime errors
...loader starts slowly with j3, but all is fine at the first moment. After requesting to load some classes and clojure files via an emacs session to the second program, I get following exception trace: Exception in thread "pool-2-thread-1" java.lang.UnsatisfiedLinkError: sun.misc.Unsafe.putObject(Ljava/lang/Object;JLjava/lang/Object;)V at sun.misc.Unsafe.putObject(Unsafe.java:0) at java.util.concurrent.locks.LockSupport.setBlocker(LockSupport.java:107) at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:196) at java.util.concurrent.SynchronousQueue$Transf...
2016 Nov 09
2
[ORC] SimpleCompiler and module transformations
..., then I just proceed to a module analysis phase. If the object does not exist, then I compile the module, put object file into a cache, and then proceed to a module analysis phase. In other words: let object = cache.getObject(module); if object == null { object = compile(module) cache.putObject(object, module) } processModule(module) When I run my program two times, then I basically analyze two different modules, even though they are loaded from the same bitcode file. Please, let me know if more information/clarification is needed. Any hints, suggestions, and recommendations are mo...