org.vmmagic.pragma
Annotation Type Inline


@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Inline

This pragma indicates that a particular method should always be inlined by the optimizing compiler.


Optional Element Summary
 int[] arguments
          Arguments that must be constant to cause inlining.
 Inline.When value
          When to inline, default When.Always
 

value

public abstract Inline.When value
When to inline, default When.Always

Default:
org.vmmagic.pragma.Inline.When.Always

arguments

public abstract int[] arguments
Arguments that must be constant to cause inlining. NB for static methods 0 is the first argument whilst for virtual methods 0 is this

Default:
{}