# HG changeset patch # User Doug Simon # Date 1369132780 -7200 # Node ID 05b719a4ae09457ab67ccbc172fdbe610c2aa862 # Parent f43313f3f7596edbcc5ddf187b7a0da0064413c9 expanded documentation for ForeignCallDescriptor diff -r f43313f3f759 -r 05b719a4ae09 graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/ForeignCallDescriptor.java --- a/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/ForeignCallDescriptor.java Tue May 21 11:28:31 2013 +0200 +++ b/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/ForeignCallDescriptor.java Tue May 21 12:39:40 2013 +0200 @@ -33,6 +33,9 @@ *
  • The callee has different register saving semantics. For example, the callee may save all * registers (apart from some specified temporaries) in which case the register allocator doesn't * not need to spill all live registers around the call site.
  • + *
  • The call does not occur at an INVOKE* bytecode. Such a call could be transformed into a + * standard Java call if the foreign routine is a normal Java method and the runtime supports + * linking Java calls at arbitrary bytecodes.
  • * */ public class ForeignCallDescriptor {