-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4c4abf
commit 2b4f3ca
Showing
11 changed files
with
367 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
...g.codehaus.groovy25/src/org/codehaus/groovy/transform/sc/TemporaryVariableExpression.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.codehaus.groovy.transform.sc; | ||
|
||
import org.codehaus.groovy.ast.ClassNode; | ||
import org.codehaus.groovy.ast.GroovyCodeVisitor; | ||
import org.codehaus.groovy.ast.expr.Expression; | ||
import org.codehaus.groovy.ast.expr.ExpressionTransformer; | ||
import org.codehaus.groovy.classgen.AsmClassGenerator; | ||
import org.codehaus.groovy.classgen.asm.ExpressionAsVariableSlot; | ||
import org.codehaus.groovy.classgen.asm.WriterController; | ||
|
||
import static org.codehaus.groovy.transform.stc.StaticTypesMarker.INFERRED_TYPE; | ||
|
||
/** | ||
* A front-end class for {@link org.codehaus.groovy.classgen.asm.ExpressionAsVariableSlot} which | ||
* allows defining temporary variables loaded from variable slots directly at the AST level, | ||
* without any knowledge of {@link org.codehaus.groovy.classgen.AsmClassGenerator}. | ||
* | ||
* @since 2.4.0 | ||
*/ | ||
public class TemporaryVariableExpression extends Expression { | ||
|
||
private final Expression expression; | ||
|
||
private ExpressionAsVariableSlot[] variable = {null}; | ||
|
||
public TemporaryVariableExpression(final Expression expression) { | ||
this.expression = expression; | ||
putNodeMetaData(INFERRED_TYPE, expression.getNodeMetaData(INFERRED_TYPE)); | ||
} | ||
|
||
@Override | ||
public Expression transformExpression(final ExpressionTransformer transformer) { | ||
TemporaryVariableExpression result = new TemporaryVariableExpression(transformer.transform(expression)); | ||
result.copyNodeMetaData(this); | ||
result.variable = variable; | ||
return result; | ||
} | ||
|
||
@Override | ||
public void visit(final GroovyCodeVisitor visitor) { | ||
if (visitor instanceof AsmClassGenerator) { | ||
if (variable[0] == null) { | ||
WriterController controller = ((AsmClassGenerator) visitor).getController(); | ||
variable[0] = new ExpressionAsVariableSlot(controller, expression); | ||
} | ||
variable[0].visit(visitor); | ||
} else { | ||
expression.visit(visitor); | ||
} | ||
} | ||
|
||
public void remove(final WriterController controller) { | ||
controller.getCompileStack().removeVar(variable[0].getIndex()); | ||
variable[0] = null; | ||
} | ||
|
||
@Override | ||
public ClassNode getType() { | ||
return expression.getType(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
...g.codehaus.groovy30/src/org/codehaus/groovy/transform/sc/TemporaryVariableExpression.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.codehaus.groovy.transform.sc; | ||
|
||
import org.codehaus.groovy.ast.ClassNode; | ||
import org.codehaus.groovy.ast.GroovyCodeVisitor; | ||
import org.codehaus.groovy.ast.expr.Expression; | ||
import org.codehaus.groovy.ast.expr.ExpressionTransformer; | ||
import org.codehaus.groovy.classgen.AsmClassGenerator; | ||
import org.codehaus.groovy.classgen.asm.ExpressionAsVariableSlot; | ||
import org.codehaus.groovy.classgen.asm.WriterController; | ||
|
||
import static org.codehaus.groovy.transform.stc.StaticTypesMarker.INFERRED_TYPE; | ||
|
||
/** | ||
* A front-end class for {@link org.codehaus.groovy.classgen.asm.ExpressionAsVariableSlot} which | ||
* allows defining temporary variables loaded from variable slots directly at the AST level, | ||
* without any knowledge of {@link org.codehaus.groovy.classgen.AsmClassGenerator}. | ||
* | ||
* @since 2.4.0 | ||
*/ | ||
public class TemporaryVariableExpression extends Expression { | ||
|
||
private final Expression expression; | ||
|
||
private ExpressionAsVariableSlot[] variable = {null}; | ||
|
||
public TemporaryVariableExpression(final Expression expression) { | ||
this.expression = expression; | ||
putNodeMetaData(INFERRED_TYPE, expression.getNodeMetaData(INFERRED_TYPE)); | ||
} | ||
|
||
@Override | ||
public Expression transformExpression(final ExpressionTransformer transformer) { | ||
TemporaryVariableExpression result = new TemporaryVariableExpression(transformer.transform(expression)); | ||
result.copyNodeMetaData(this); | ||
result.variable = variable; | ||
return result; | ||
} | ||
|
||
@Override | ||
public void visit(final GroovyCodeVisitor visitor) { | ||
if (visitor instanceof AsmClassGenerator) { | ||
if (variable[0] == null) { | ||
WriterController controller = ((AsmClassGenerator) visitor).getController(); | ||
variable[0] = new ExpressionAsVariableSlot(controller, expression); | ||
} | ||
variable[0].visit(visitor); | ||
} else { | ||
expression.visit(visitor); | ||
} | ||
} | ||
|
||
public void remove(final WriterController controller) { | ||
controller.getCompileStack().removeVar(variable[0].getIndex()); | ||
variable[0] = null; | ||
} | ||
|
||
@Override | ||
public ClassNode getType() { | ||
return expression.getType(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
...g.codehaus.groovy40/src/org/codehaus/groovy/transform/sc/TemporaryVariableExpression.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.codehaus.groovy.transform.sc; | ||
|
||
import org.codehaus.groovy.ast.ClassNode; | ||
import org.codehaus.groovy.ast.GroovyCodeVisitor; | ||
import org.codehaus.groovy.ast.expr.Expression; | ||
import org.codehaus.groovy.ast.expr.ExpressionTransformer; | ||
import org.codehaus.groovy.classgen.AsmClassGenerator; | ||
import org.codehaus.groovy.classgen.asm.ExpressionAsVariableSlot; | ||
import org.codehaus.groovy.classgen.asm.WriterController; | ||
|
||
import static org.codehaus.groovy.transform.stc.StaticTypesMarker.INFERRED_TYPE; | ||
|
||
/** | ||
* A front-end class for {@link org.codehaus.groovy.classgen.asm.ExpressionAsVariableSlot} which | ||
* allows defining temporary variables loaded from variable slots directly at the AST level, | ||
* without any knowledge of {@link org.codehaus.groovy.classgen.AsmClassGenerator}. | ||
* | ||
* @since 2.4.0 | ||
*/ | ||
public class TemporaryVariableExpression extends Expression { | ||
|
||
private final Expression expression; | ||
|
||
private ExpressionAsVariableSlot[] variable = {null}; | ||
|
||
public TemporaryVariableExpression(final Expression expression) { | ||
this.expression = expression; | ||
putNodeMetaData(INFERRED_TYPE, expression.getNodeMetaData(INFERRED_TYPE)); | ||
} | ||
|
||
@Override | ||
public Expression transformExpression(final ExpressionTransformer transformer) { | ||
TemporaryVariableExpression result = new TemporaryVariableExpression(transformer.transform(expression)); | ||
result.copyNodeMetaData(this); | ||
result.variable = variable; | ||
return result; | ||
} | ||
|
||
@Override | ||
public void visit(final GroovyCodeVisitor visitor) { | ||
if (visitor instanceof AsmClassGenerator) { | ||
if (variable[0] == null) { | ||
WriterController controller = ((AsmClassGenerator) visitor).getController(); | ||
variable[0] = new ExpressionAsVariableSlot(controller, expression); | ||
} | ||
variable[0].visit(visitor); | ||
} else { | ||
expression.visit(visitor); | ||
} | ||
} | ||
|
||
public void remove(final WriterController controller) { | ||
controller.getCompileStack().removeVar(variable[0].getIndex()); | ||
variable[0] = null; | ||
} | ||
|
||
@Override | ||
public ClassNode getType() { | ||
return expression.getType(); | ||
} | ||
} |
Oops, something went wrong.