Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7ee5a9f2ea3bf4a97946ce3003fdfd13669065e9 (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
/*******************************************************************************
* Copyright (c) 2016 Institute for Software, HSR Hochschule fuer Technik 
* Rapperswil, University of applied sciences 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
*******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp.semantics;

import org.eclipse.cdt.internal.core.dom.parser.ISerializableExecution;
import org.eclipse.cdt.internal.core.dom.parser.ITypeMarshalBuffer;
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPEvaluation.ConstexprEvaluationContext;
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPExecution;
import org.eclipse.cdt.internal.core.dom.parser.cpp.InstantiationContext;
import org.eclipse.core.runtime.CoreException;

public class ExecDeclarationStatement implements ICPPExecution {
	private final ICPPExecution declarationExec;

	public ExecDeclarationStatement(ICPPExecution declarationExec) {
		this.declarationExec = declarationExec;
	}

	@Override
	public ICPPExecution instantiate(InstantiationContext context, int maxDepth) {
		ICPPExecution newDeclarationExec = declarationExec.instantiate(context, maxDepth);
		if (newDeclarationExec == declarationExec) {
			return this;
		}
		return new ExecDeclarationStatement(newDeclarationExec);
	}

	@Override
	public ICPPExecution executeForFunctionCall(ActivationRecord record, ConstexprEvaluationContext context) {
		ICPPExecution newDeclarationExec = declarationExec.executeForFunctionCall(record, context);
		if (newDeclarationExec == declarationExec) {
			return this;
		}
		return new ExecDeclarationStatement(newDeclarationExec);
	}
	
	@Override
	public void marshal(ITypeMarshalBuffer buffer, boolean includeValue) throws CoreException {
		buffer.putShort(ITypeMarshalBuffer.EXEC_DECLARATION_STATEMENT);
		buffer.marshalExecution(declarationExec, includeValue);
	}
	
	public static ISerializableExecution unmarshal(short firstBytes, ITypeMarshalBuffer buffer) throws CoreException {
		ICPPExecution declarationExec = (ICPPExecution)buffer.unmarshalExecution();
		return new ExecDeclarationStatement(declarationExec);
	}
}

Back to the top