Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1663cf1446cd38044e01a126c62b70c7934c8cde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*******************************************************************************
 * Copyright (c) 2012, 2013 Wind River Systems, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Markus Schorn - initial API and implementation
 *     Sergey Prigogin (Google)
 *******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp.semantics;

import org.eclipse.cdt.core.CCorePlugin;
import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.IType;
import org.eclipse.cdt.internal.core.dom.parser.ISerializableType;
import org.eclipse.cdt.internal.core.dom.parser.ITypeMarshalBuffer;
import org.eclipse.cdt.internal.core.dom.parser.ProblemType;
import org.eclipse.cdt.internal.core.dom.parser.cpp.CPPUnknownBinding;
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPEvaluation;
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPUnknownType;
import org.eclipse.core.runtime.CoreException;

/**
 * Represents the type of a dependent expression.
 */
public class TypeOfDependentExpression extends CPPUnknownBinding implements ICPPUnknownType, ISerializableType {
	private final ICPPEvaluation fEvaluation;
	// Whether this represents a decltype(expr), or a dependent type in another context.
	private boolean fIsForDecltype;
	private boolean fIsForTemplateAuto;

	public TypeOfDependentExpression(ICPPEvaluation evaluation) {
		this(evaluation, true);
	}
	
	public TypeOfDependentExpression(ICPPEvaluation evaluation, boolean isForDecltype) {
		super(null);
		fEvaluation = evaluation;
		fIsForDecltype = isForDecltype;
		fIsForTemplateAuto = false;
	}
	
	public ICPPEvaluation getEvaluation() {
		return fEvaluation;
	}
	
	public boolean isForDecltype() {
		return fIsForDecltype;
	}
	
	public void setIsForDecltype(boolean isForDecltype) {
		fIsForDecltype = isForDecltype;
	}

	public boolean isForTemplateAuto() {
		return fIsForTemplateAuto;
	}

	public void setForTemplateAuto(boolean isForTemplateAuto) {
		fIsForTemplateAuto = isForTemplateAuto;
	}

	@Override
	public boolean isSameType(IType type) {
		return type instanceof TypeOfDependentExpression
				&& fEvaluation == ((TypeOfDependentExpression) type).fEvaluation;
	}

	@Override
	public TypeOfDependentExpression clone() {
		return (TypeOfDependentExpression) super.clone();
	}

	public char[] getSignature() {
		SignatureBuilder buf = new SignatureBuilder();
		try {
			marshal(buf);
		} catch (CoreException e) {
			CCorePlugin.log(e);
			return new char[] { '?' };
		}
		return buf.getSignature();
	}

	@Override
	public void marshal(ITypeMarshalBuffer buffer) throws CoreException {
		short firstBytes = ITypeMarshalBuffer.DEPENDENT_EXPRESSION_TYPE;
		if (fIsForDecltype) {
			firstBytes |= ITypeMarshalBuffer.FLAG1;
		}
		if (fIsForTemplateAuto) {
			firstBytes |= ITypeMarshalBuffer.FLAG2;
		}
		buffer.putShort(firstBytes);
		buffer.marshalEvaluation(fEvaluation, false);
	}

	public static IType unmarshal(short firstBytes, ITypeMarshalBuffer buffer) throws CoreException {
		ICPPEvaluation eval= buffer.unmarshalEvaluation();
		if (eval != null) {
			boolean isForDecltype = (firstBytes & ITypeMarshalBuffer.FLAG1) != 0;
			boolean isForTemplateAuto = (firstBytes & ITypeMarshalBuffer.FLAG2) != 0;
			TypeOfDependentExpression expression = new TypeOfDependentExpression(eval, isForDecltype);
			expression.setForTemplateAuto(isForTemplateAuto);
			return expression;
		}
		return ProblemType.UNKNOWN_FOR_EXPRESSION;
	}

	@Override
	public IBinding getOwner() {
		// We won't know until instantiation.
		return null;
	}

	@Override
	public char[] getNameCharArray() {
		return fEvaluation.getSignature();
	}
}

Back to the top