Skip to content

Commit

Permalink
Mark runtime_helper helper methods with JIT annotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Nov 4, 2014
1 parent c3b80aa commit a8db1a0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions core/src/main/java/org/jruby/ir/runtime/IRRuntimeHelpers.java
Expand Up @@ -114,6 +114,7 @@ public static IRubyObject initiateNonLocalReturn(ThreadContext context, DynamicS
throw IRReturnJump.create(dynScope, returnValue);
}

@JIT
public static IRubyObject handleNonlocalReturn(StaticScope scope, DynamicScope dynScope, Object rjExc, Block.Type blockType) throws RuntimeException {
if (!(rjExc instanceof IRReturnJump)) {
Helpers.throwException((Throwable)rjExc);
Expand Down Expand Up @@ -157,6 +158,7 @@ public static IRubyObject initiateBreak(ThreadContext context, DynamicScope dynS
}
}

@JIT
public static IRubyObject handleBreakAndReturnsInLambdas(ThreadContext context, StaticScope scope, DynamicScope dynScope, Object exc, Block.Type blockType) throws RuntimeException {
if ((exc instanceof IRBreakJump) && inNonMethodBodyLambda(scope, blockType)) {
// We just unwound all the way up because of a non-local break
Expand All @@ -173,6 +175,7 @@ public static IRubyObject handleBreakAndReturnsInLambdas(ThreadContext context,
}
}

@JIT
public static IRubyObject handlePropagatedBreak(ThreadContext context, DynamicScope dynScope, Object bjExc, Block.Type blockType) {
if (!(bjExc instanceof IRBreakJump)) {
Helpers.throwException((Throwable)bjExc);
Expand Down Expand Up @@ -531,17 +534,20 @@ public static IRubyObject extractOptionalArgument(RubyArray rubyArray, int minAr
return minArgsLength < n ? rubyArray.entry(index) : UndefinedValue.UNDEFINED;
}

@JIT
public static IRubyObject isDefinedBackref(ThreadContext context) {
return RubyMatchData.class.isInstance(context.getBackRef()) ?
context.runtime.getDefinedMessage(DefinedMessage.GLOBAL_VARIABLE) : context.nil;
}

@JIT
public static IRubyObject isDefinedGlobal(ThreadContext context, String name) {
return context.runtime.getGlobalVariables().isDefined(name) ?
context.runtime.getDefinedMessage(DefinedMessage.GLOBAL_VARIABLE) : context.nil;
}

// FIXME: This checks for match data differently than isDefinedBackref. Seems like they should use same mechanism?
@JIT
public static IRubyObject isDefinedNthRef(ThreadContext context, int matchNumber) {
IRubyObject backref = context.getBackRef();

Expand All @@ -554,6 +560,7 @@ public static IRubyObject isDefinedNthRef(ThreadContext context, int matchNumber
return context.nil;
}

@JIT
public static IRubyObject isDefinedClassVar(ThreadContext context, RubyModule receiver, String name) {
boolean defined = receiver.isClassVarDefined(name);

Expand All @@ -566,23 +573,27 @@ public static IRubyObject isDefinedClassVar(ThreadContext context, RubyModule re
return defined ? context.runtime.getDefinedMessage(DefinedMessage.CLASS_VARIABLE) : context.nil;
}

@JIT
public static IRubyObject isDefinedInstanceVar(ThreadContext context, IRubyObject receiver, String name) {
return receiver.getInstanceVariables().hasInstanceVariable(name) ?
context.runtime.getDefinedMessage(DefinedMessage.INSTANCE_VARIABLE) : context.nil;
}

@JIT
public static IRubyObject isDefinedCall(ThreadContext context, IRubyObject self, IRubyObject receiver, String name) {
RubyString boundValue = Helpers.getDefinedCall(context, self, receiver, name);

return boundValue == null ? context.nil : boundValue;
}

@JIT
public static IRubyObject isDefinedConstantOrMethod(ThreadContext context, IRubyObject receiver, String name) {
RubyString definedType = Helpers.getDefinedConstantOrBoundMethod(receiver, name);

return definedType == null ? context.nil : definedType;
}

@JIT
public static IRubyObject isDefinedMethod(ThreadContext context, IRubyObject receiver, String name, boolean checkIfPublic) {
DynamicMethod method = receiver.getMetaClass().searchMethod(name);

Expand All @@ -594,6 +605,7 @@ public static IRubyObject isDefinedMethod(ThreadContext context, IRubyObject rec
return context.nil;
}

@JIT
public static IRubyObject isDefinedSuper(ThreadContext context, IRubyObject receiver) {
boolean flag = false;
String frameName = context.getFrameName();
Expand Down Expand Up @@ -657,6 +669,7 @@ public static RubyModule getModuleFromScope(ThreadContext context, StaticScope s
return rubyClass;
}

@JIT
public static IRubyObject mergeKeywordArguments(ThreadContext context, IRubyObject restKwarg, IRubyObject explcitKwarg) {
return ((RubyHash) TypeConverter.checkHashType(context.runtime, restKwarg)).merge(context, explcitKwarg, Block.NULL_BLOCK);
}
Expand Down

0 comments on commit a8db1a0

Please sign in to comment.