mirror of https://github.com/aamine/cbc
105 lines
2.7 KiB
Java
105 lines
2.7 KiB
Java
package net.loveruby.cflat.ast;
|
|
import net.loveruby.cflat.type.*;
|
|
import net.loveruby.cflat.exception.*;
|
|
import java.util.*;
|
|
|
|
public class FuncallNode extends ExprNode {
|
|
protected ExprNode expr;
|
|
protected List<ExprNode> arguments;
|
|
|
|
public FuncallNode(ExprNode expr, List<ExprNode> arguments) {
|
|
this.expr = expr;
|
|
this.arguments = arguments;
|
|
}
|
|
|
|
public ExprNode expr() {
|
|
return expr;
|
|
}
|
|
|
|
public void setExpr(ExprNode expr) {
|
|
this.expr = expr;
|
|
}
|
|
|
|
/** Returns true if this funcall is NOT a function pointer call. */
|
|
public boolean isStaticCall() {
|
|
VariableNode var = getFunctionVariable();
|
|
if (var == null) return false;
|
|
return (var.entity() instanceof Function);
|
|
}
|
|
|
|
/**
|
|
* Returns a function object which is refered by expression.
|
|
* This method expects this is static function call (isStaticCall()).
|
|
*/
|
|
public Function function() {
|
|
VariableNode var = getFunctionVariable();
|
|
if (var == null) throw new Error("not a static funcall");
|
|
return (Function)var.entity();
|
|
}
|
|
|
|
private VariableNode getFunctionVariable() {
|
|
if (expr instanceof AddressNode) {
|
|
ExprNode e = ((AddressNode)expr).expr();
|
|
if (! (e instanceof VariableNode)) return null;
|
|
return (VariableNode)e;
|
|
}
|
|
else if (expr instanceof VariableNode) {
|
|
return (VariableNode)expr;
|
|
}
|
|
else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a type of return value of the function which is refered
|
|
* by expr. This method expects expr.type().isCallable() is true.
|
|
*/
|
|
public Type type() {
|
|
try {
|
|
return functionType().returnType();
|
|
}
|
|
catch (ClassCastException err) {
|
|
throw new SemanticError(err.getMessage());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a type of function which is refered by expr.
|
|
* This method expects expr.type().isCallable() is true.
|
|
*/
|
|
public FunctionType functionType() {
|
|
return expr.type().getPointerType().baseType().getFunctionType();
|
|
}
|
|
|
|
public long numArgs() {
|
|
return arguments.size();
|
|
}
|
|
|
|
public List<ExprNode> arguments() {
|
|
return arguments;
|
|
}
|
|
|
|
// called from TypeChecker
|
|
public void replaceArgs(List<ExprNode> args) {
|
|
this.arguments = args;
|
|
}
|
|
|
|
public ListIterator<ExprNode> finalArg() {
|
|
return arguments.listIterator(arguments.size());
|
|
}
|
|
|
|
public Location location() {
|
|
return expr.location();
|
|
}
|
|
|
|
protected void _dump(Dumper d) {
|
|
d.printMember("expr", expr);
|
|
d.printNodeList("arguments", arguments);
|
|
}
|
|
|
|
public <S,E> E accept(ASTVisitor<S,E> visitor) {
|
|
return visitor.visit(this);
|
|
}
|
|
}
|