source: src/ResolvExpr/ConversionCost.h@ 9bd6105

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 9bd6105 was 8135d4c, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Merge branch 'master' into references

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[a32b204]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[2463d0e]7// ConversionCost.h --
[a32b204]8//
9// Author : Richard C. Bilson
10// Created On : Sun May 17 09:37:28 2015
11// Last Modified By : Peter A. Buhr
[6b0b624]12// Last Modified On : Sat Jul 22 09:38:24 2017
13// Update Count : 4
[a32b204]14//
15
[6b0b624]16#pragma once
[51b73452]17
[ea6332d]18#include "Cost.h" // for Cost
19#include "SynTree/Visitor.h" // for Visitor
20#include "SynTree/SynTree.h" // for Visitor Nodes
21
22namespace SymTab {
23class Indexer;
24} // namespace SymTab
[51b73452]25
26namespace ResolvExpr {
[ea6332d]27class TypeEnvironment;
28
[a32b204]29 class ConversionCost : public Visitor {
30 public:
31 ConversionCost( Type *dest, const SymTab::Indexer &indexer, const TypeEnvironment &env );
[2463d0e]32
[a32b204]33 Cost get_cost() const { return cost; }
34
35 virtual void visit(VoidType *voidType);
36 virtual void visit(BasicType *basicType);
37 virtual void visit(PointerType *pointerType);
38 virtual void visit(ArrayType *arrayType);
[2463d0e]39 virtual void visit(ReferenceType *refType);
[a32b204]40 virtual void visit(FunctionType *functionType);
41 virtual void visit(StructInstType *aggregateUseType);
42 virtual void visit(UnionInstType *aggregateUseType);
43 virtual void visit(EnumInstType *aggregateUseType);
[4040425]44 virtual void visit(TraitInstType *aggregateUseType);
[a32b204]45 virtual void visit(TypeInstType *aggregateUseType);
46 virtual void visit(TupleType *tupleType);
[44b7088]47 virtual void visit(VarArgsType *varArgsType);
[89e6ffc]48 virtual void visit(ZeroType *zeroType);
49 virtual void visit(OneType *oneType);
[a32b204]50 protected:
51 Type *dest;
52 const SymTab::Indexer &indexer;
53 Cost cost;
54 const TypeEnvironment &env;
55 };
[2463d0e]56
57 Cost convertToReferenceCost( Type * src, ReferenceType * dest, const SymTab::Indexer & indexer, const TypeEnvironment & env );
[51b73452]58} // namespace ResolvExpr
59
[a32b204]60// Local Variables: //
61// tab-width: 4 //
62// mode: c++ //
63// compile-command: "make install" //
64// End: //
Note: See TracBrowser for help on using the repository browser.