Uses of Class
org.jikesrvm.runtime.DynamicLink

Packages that use DynamicLink
org.jikesrvm.classloader   
org.jikesrvm.compilers.baseline   
org.jikesrvm.compilers.baseline.ia32   
org.jikesrvm.compilers.common   
org.jikesrvm.compilers.opt.runtimesupport   
org.jikesrvm.jni   
org.jikesrvm.runtime   
 

Uses of DynamicLink in org.jikesrvm.classloader
 

Methods in org.jikesrvm.classloader with parameters of type DynamicLink
 void NormalMethod.getDynamicLink(DynamicLink dynamicLink, int bcIndex)
          Fill in DynamicLink object for the invoke at the given bytecode index
 

Uses of DynamicLink in org.jikesrvm.compilers.baseline
 

Methods in org.jikesrvm.compilers.baseline with parameters of type DynamicLink
 void BaselineCompiledMethod.getDynamicLink(DynamicLink dynamicLink, Offset instructionOffset)
           
 

Uses of DynamicLink in org.jikesrvm.compilers.baseline.ia32
 

Fields in org.jikesrvm.compilers.baseline.ia32 declared as DynamicLink
private  DynamicLink BaselineGCMapIterator.dynamicLink
          place to keep info returned by CompiledMethod.getDynamicLink
 

Uses of DynamicLink in org.jikesrvm.compilers.common
 

Methods in org.jikesrvm.compilers.common with parameters of type DynamicLink
abstract  void CompiledMethod.getDynamicLink(DynamicLink dynamicLink, Offset instructionOffset)
          Fetch symbolic reference to a method that's called by one of this method's instructions.
 void HardwareTrapCompiledMethod.getDynamicLink(DynamicLink dynamicLink, Offset instructionOffset)
           
 

Uses of DynamicLink in org.jikesrvm.compilers.opt.runtimesupport
 

Methods in org.jikesrvm.compilers.opt.runtimesupport with parameters of type DynamicLink
 void OptCompiledMethod.getDynamicLink(DynamicLink dynamicLink, Offset instructionOffset)
          Fetch symbolic reference to a method that's called by one of this method's instructions.
 

Uses of DynamicLink in org.jikesrvm.jni
 

Methods in org.jikesrvm.jni with parameters of type DynamicLink
 void JNICompiledMethod.getDynamicLink(DynamicLink dynamicLink, Offset instructionOffset)
           
 

Uses of DynamicLink in org.jikesrvm.runtime
 

Methods in org.jikesrvm.runtime that return DynamicLink
(package private) static DynamicLink DynamicLinker.DL_Helper.resolveDynamicInvocation()
          Discover method reference to be invoked via dynamic bridge.
 

Methods in org.jikesrvm.runtime with parameters of type DynamicLink
(package private) static void DynamicLinker.DL_Helper.compileMethod(DynamicLink dynamicLink, RVMMethod targetMethod)
          Compile (if necessary) targetMethod and patch the appropriate disaptch tables
(package private) static RVMMethod DynamicLinker.DL_Helper.resolveMethodRef(DynamicLink dynamicLink)
          Resolve method ref into appropriate RVMMethod Taken: DynamicLink that describes call site.