mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Split CPPVisitor.createType(IASTDeclarator declarator) into smaller
methods.
This commit is contained in:
parent
c3d94d1bf2
commit
1a8212ca62
1 changed files with 60 additions and 57 deletions
|
@ -1843,65 +1843,9 @@ public class CPPVisitor extends ASTQueries {
|
||||||
|
|
||||||
if (declSpec instanceof ICPPASTSimpleDeclSpecifier &&
|
if (declSpec instanceof ICPPASTSimpleDeclSpecifier &&
|
||||||
((ICPPASTSimpleDeclSpecifier) declSpec).getType() == IASTSimpleDeclSpecifier.t_auto) {
|
((ICPPASTSimpleDeclSpecifier) declSpec).getType() == IASTSimpleDeclSpecifier.t_auto) {
|
||||||
if (declarator instanceof ICPPASTFunctionDeclarator) {
|
return createAutoType(declSpec, declarator);
|
||||||
return createAutoFunctionType(declSpec, (ICPPASTFunctionDeclarator) declarator);
|
|
||||||
}
|
|
||||||
IASTInitializerClause autoInitClause= null;
|
|
||||||
parent = parent.getParent();
|
|
||||||
if (parent instanceof ICPPASTNewExpression) {
|
|
||||||
IASTInitializer initializer = ((ICPPASTNewExpression) parent).getInitializer();
|
|
||||||
if (initializer != null) {
|
|
||||||
IASTInitializerClause[] arguments = ((ICPPASTConstructorInitializer) initializer).getArguments();
|
|
||||||
if (arguments.length == 1) {
|
|
||||||
autoInitClause = arguments[0];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (parent instanceof ICPPASTRangeBasedForStatement) {
|
|
||||||
// See 6.5.4 The range-based for statement [stmt.ranged]
|
|
||||||
ICPPASTRangeBasedForStatement forStmt= (ICPPASTRangeBasedForStatement) parent;
|
|
||||||
IASTInitializerClause forInit = forStmt.getInitializerClause();
|
|
||||||
IASTExpression beginExpr= null;
|
|
||||||
if (forInit instanceof IASTExpression) {
|
|
||||||
final IASTExpression expr = (IASTExpression) forInit;
|
|
||||||
IType type= SemanticUtil.getNestedType(expr.getExpressionType(), TDEF|CVTYPE);
|
|
||||||
if (type instanceof IArrayType) {
|
|
||||||
beginExpr= expr.copy();
|
|
||||||
} else if (type instanceof ICPPClassType) {
|
|
||||||
ICPPClassType ct= (ICPPClassType) type;
|
|
||||||
if (ct.getCompositeScope().find(BEGIN_STR).length > 0) {
|
|
||||||
final CPPASTName name = new CPPASTName(BEGIN);
|
|
||||||
name.setOffset(((ASTNode) forInit).getOffset());
|
|
||||||
beginExpr= new CPPASTFunctionCallExpression(
|
|
||||||
new CPPASTFieldReference(name, expr.copy()), NO_ARGS);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (beginExpr == null) {
|
|
||||||
final CPPASTName name = new CPPASTName(BEGIN);
|
|
||||||
name.setOffset(((ASTNode) forInit).getOffset());
|
|
||||||
beginExpr= new CPPASTFunctionCallExpression(
|
|
||||||
new CPPASTIdExpression(name),
|
|
||||||
new IASTInitializerClause[] {forInit.copy()});
|
|
||||||
}
|
|
||||||
autoInitClause= new CPPASTUnaryExpression(IASTUnaryExpression.op_star, beginExpr);
|
|
||||||
autoInitClause.setParent(forStmt);
|
|
||||||
autoInitClause.setPropertyInParent(ICPPASTRangeBasedForStatement.INITIALIZER);
|
|
||||||
} else if (parent instanceof IASTCompositeTypeSpecifier &&
|
|
||||||
declSpec.getStorageClass() != IASTDeclSpecifier.sc_static) {
|
|
||||||
// Non-static auto-typed class members are not allowed.
|
|
||||||
return new ProblemType(ISemanticProblem.TYPE_AUTO_FOR_NON_STATIC_FIELD);
|
|
||||||
} else {
|
|
||||||
IASTInitializer initClause= declarator.getInitializer();
|
|
||||||
if (initClause instanceof IASTEqualsInitializer) {
|
|
||||||
autoInitClause= ((IASTEqualsInitializer) initClause).getInitializerClause();
|
|
||||||
} else if (initClause instanceof IASTInitializerClause) {
|
|
||||||
autoInitClause= (IASTInitializerClause) initClause;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return createAutoType(autoInitClause, declSpec, declarator);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
IType type = createType(declSpec);
|
IType type = createType(declSpec);
|
||||||
type = createType(type, declarator);
|
type = createType(type, declarator);
|
||||||
|
|
||||||
|
@ -1926,6 +1870,65 @@ public class CPPVisitor extends ASTQueries {
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static IType createAutoType(IASTDeclSpecifier declSpec, IASTDeclarator declarator) {
|
||||||
|
if (declarator instanceof ICPPASTFunctionDeclarator) {
|
||||||
|
return createAutoFunctionType(declSpec, (ICPPASTFunctionDeclarator) declarator);
|
||||||
|
}
|
||||||
|
IASTInitializerClause autoInitClause= null;
|
||||||
|
IASTNode parent = declarator.getParent().getParent();
|
||||||
|
if (parent instanceof ICPPASTNewExpression) {
|
||||||
|
IASTInitializer initializer = ((ICPPASTNewExpression) parent).getInitializer();
|
||||||
|
if (initializer != null) {
|
||||||
|
IASTInitializerClause[] arguments = ((ICPPASTConstructorInitializer) initializer).getArguments();
|
||||||
|
if (arguments.length == 1) {
|
||||||
|
autoInitClause = arguments[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (parent instanceof ICPPASTRangeBasedForStatement) {
|
||||||
|
// See 6.5.4 The range-based for statement [stmt.ranged]
|
||||||
|
ICPPASTRangeBasedForStatement forStmt= (ICPPASTRangeBasedForStatement) parent;
|
||||||
|
IASTInitializerClause forInit = forStmt.getInitializerClause();
|
||||||
|
IASTExpression beginExpr= null;
|
||||||
|
if (forInit instanceof IASTExpression) {
|
||||||
|
final IASTExpression expr = (IASTExpression) forInit;
|
||||||
|
IType type= SemanticUtil.getNestedType(expr.getExpressionType(), TDEF|CVTYPE);
|
||||||
|
if (type instanceof IArrayType) {
|
||||||
|
beginExpr= expr.copy();
|
||||||
|
} else if (type instanceof ICPPClassType) {
|
||||||
|
ICPPClassType ct= (ICPPClassType) type;
|
||||||
|
if (ct.getCompositeScope().find(BEGIN_STR).length > 0) {
|
||||||
|
final CPPASTName name = new CPPASTName(BEGIN);
|
||||||
|
name.setOffset(((ASTNode) forInit).getOffset());
|
||||||
|
beginExpr= new CPPASTFunctionCallExpression(
|
||||||
|
new CPPASTFieldReference(name, expr.copy()), NO_ARGS);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (beginExpr == null) {
|
||||||
|
final CPPASTName name = new CPPASTName(BEGIN);
|
||||||
|
name.setOffset(((ASTNode) forInit).getOffset());
|
||||||
|
beginExpr= new CPPASTFunctionCallExpression(
|
||||||
|
new CPPASTIdExpression(name),
|
||||||
|
new IASTInitializerClause[] { forInit.copy() });
|
||||||
|
}
|
||||||
|
autoInitClause= new CPPASTUnaryExpression(IASTUnaryExpression.op_star, beginExpr);
|
||||||
|
autoInitClause.setParent(forStmt);
|
||||||
|
autoInitClause.setPropertyInParent(ICPPASTRangeBasedForStatement.INITIALIZER);
|
||||||
|
} else if (parent instanceof IASTCompositeTypeSpecifier &&
|
||||||
|
declSpec.getStorageClass() != IASTDeclSpecifier.sc_static) {
|
||||||
|
// Non-static auto-typed class members are not allowed.
|
||||||
|
return new ProblemType(ISemanticProblem.TYPE_AUTO_FOR_NON_STATIC_FIELD);
|
||||||
|
} else {
|
||||||
|
IASTInitializer initClause= declarator.getInitializer();
|
||||||
|
if (initClause instanceof IASTEqualsInitializer) {
|
||||||
|
autoInitClause= ((IASTEqualsInitializer) initClause).getInitializerClause();
|
||||||
|
} else if (initClause instanceof IASTInitializerClause) {
|
||||||
|
autoInitClause= (IASTInitializerClause) initClause;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return createAutoType(autoInitClause, declSpec, declarator);
|
||||||
|
}
|
||||||
|
|
||||||
private static IType createAutoType(IASTInitializerClause initClause, IASTDeclSpecifier declSpec, IASTDeclarator declarator) {
|
private static IType createAutoType(IASTInitializerClause initClause, IASTDeclSpecifier declSpec, IASTDeclarator declarator) {
|
||||||
// C++0x: 7.1.6.4
|
// C++0x: 7.1.6.4
|
||||||
if (initClause == null || !autoTypeDeclSpecs.get().add(declSpec)) {
|
if (initClause == null || !autoTypeDeclSpecs.get().add(declSpec)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue