[51587aa] | 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 | //
|
---|
[5af62f1] | 7 | // TupleAssignment.cc --
|
---|
[51587aa] | 8 | //
|
---|
[843054c2] | 9 | // Author : Rodolfo G. Esteves
|
---|
[51587aa] | 10 | // Created On : Mon May 18 07:44:20 2015
|
---|
[c0aa336] | 11 | // Last Modified By : Peter A. Buhr
|
---|
[615a096] | 12 | // Last Modified On : Fri Mar 17 09:43:03 2017
|
---|
| 13 | // Update Count : 8
|
---|
[51587aa] | 14 | //
|
---|
| 15 |
|
---|
[03321e4] | 16 | #include <algorithm> // for transform
|
---|
| 17 | #include <cassert> // for assert
|
---|
| 18 | #include <iterator> // for back_insert_iterator, back...
|
---|
| 19 | #include <list> // for _List_const_iterator, _Lis...
|
---|
| 20 | #include <memory> // for unique_ptr, allocator_trai...
|
---|
| 21 | #include <string> // for string
|
---|
[78315272] | 22 | #include <vector>
|
---|
[51b73452] | 23 |
|
---|
[8135d4c] | 24 | #include "CodeGen/OperatorTable.h"
|
---|
[03321e4] | 25 | #include "Common/UniqueName.h" // for UniqueName
|
---|
| 26 | #include "Common/utility.h" // for zipWith
|
---|
| 27 | #include "Explode.h" // for explode
|
---|
| 28 | #include "InitTweak/GenInit.h" // for genCtorInit
|
---|
| 29 | #include "InitTweak/InitTweak.h" // for getPointerBase, isAssignment
|
---|
| 30 | #include "Parser/LinkageSpec.h" // for Cforall
|
---|
| 31 | #include "ResolvExpr/Alternative.h" // for AltList, Alternative
|
---|
| 32 | #include "ResolvExpr/AlternativeFinder.h" // for AlternativeFinder, simpleC...
|
---|
| 33 | #include "ResolvExpr/Cost.h" // for Cost
|
---|
| 34 | #include "ResolvExpr/Resolver.h" // for resolveCtorInit
|
---|
| 35 | #include "ResolvExpr/TypeEnvironment.h" // for TypeEnvironment
|
---|
[c43c171] | 36 | #include "ResolvExpr/typeops.h" // for combos
|
---|
[03321e4] | 37 | #include "SynTree/Declaration.h" // for ObjectDecl
|
---|
| 38 | #include "SynTree/Expression.h" // for Expression, CastExpr, Name...
|
---|
| 39 | #include "SynTree/Initializer.h" // for ConstructorInit, SingleInit
|
---|
| 40 | #include "SynTree/Statement.h" // for ExprStmt
|
---|
| 41 | #include "SynTree/Type.h" // for Type, Type::Qualifiers
|
---|
| 42 | #include "SynTree/TypeSubstitution.h" // for TypeSubstitution
|
---|
| 43 | #include "SynTree/Visitor.h" // for Visitor
|
---|
[51b73452] | 44 |
|
---|
[4b6ef70] | 45 | #if 0
|
---|
| 46 | #define PRINT(x) x
|
---|
| 47 | #else
|
---|
| 48 | #define PRINT(x)
|
---|
| 49 | #endif
|
---|
| 50 |
|
---|
[51b73452] | 51 | namespace Tuples {
|
---|
[5af62f1] | 52 | class TupleAssignSpotter {
|
---|
| 53 | public:
|
---|
| 54 | // dispatcher for Tuple (multiple and mass) assignment operations
|
---|
| 55 | TupleAssignSpotter( ResolvExpr::AlternativeFinder & );
|
---|
[c43c171] | 56 | void spot( UntypedExpr * expr, std::vector<ResolvExpr::AlternativeFinder> &args );
|
---|
[5af62f1] | 57 |
|
---|
| 58 | private:
|
---|
| 59 | void match();
|
---|
| 60 |
|
---|
[6eb8948] | 61 | struct Matcher {
|
---|
[5af62f1] | 62 | public:
|
---|
[78315272] | 63 | Matcher( TupleAssignSpotter &spotter, const ResolvExpr::AltList& lhs, const
|
---|
| 64 | ResolvExpr::AltList& rhs );
|
---|
[5af62f1] | 65 | virtual ~Matcher() {}
|
---|
| 66 | virtual void match( std::list< Expression * > &out ) = 0;
|
---|
[1d2b64f] | 67 | ObjectDecl * newObject( UniqueName & namer, Expression * expr );
|
---|
[3c13c03] | 68 | ResolvExpr::AltList lhs, rhs;
|
---|
[5af62f1] | 69 | TupleAssignSpotter &spotter;
|
---|
[1d2b64f] | 70 | ResolvExpr::Cost baseCost;
|
---|
[6eb8948] | 71 | std::list< ObjectDecl * > tmpDecls;
|
---|
[1d2b64f] | 72 | ResolvExpr::TypeEnvironment compositeEnv;
|
---|
[5af62f1] | 73 | };
|
---|
| 74 |
|
---|
[6eb8948] | 75 | struct MassAssignMatcher : public Matcher {
|
---|
[5af62f1] | 76 | public:
|
---|
[78315272] | 77 | MassAssignMatcher( TupleAssignSpotter &spotter, const ResolvExpr::AltList& lhs,
|
---|
| 78 | const ResolvExpr::AltList& rhs ) : Matcher(spotter, lhs, rhs) {}
|
---|
[5af62f1] | 79 | virtual void match( std::list< Expression * > &out );
|
---|
| 80 | };
|
---|
| 81 |
|
---|
[6eb8948] | 82 | struct MultipleAssignMatcher : public Matcher {
|
---|
[5af62f1] | 83 | public:
|
---|
[78315272] | 84 | MultipleAssignMatcher( TupleAssignSpotter &spotter, const ResolvExpr::AltList& lhs,
|
---|
| 85 | const ResolvExpr::AltList& rhs ) : Matcher(spotter, lhs, rhs) {}
|
---|
[5af62f1] | 86 | virtual void match( std::list< Expression * > &out );
|
---|
| 87 | };
|
---|
| 88 |
|
---|
| 89 | ResolvExpr::AlternativeFinder ¤tFinder;
|
---|
[65660bd] | 90 | std::string fname;
|
---|
| 91 | std::unique_ptr< Matcher > matcher;
|
---|
[5af62f1] | 92 | };
|
---|
| 93 |
|
---|
[f831177] | 94 | /// true if expr is an expression of tuple type
|
---|
[5af62f1] | 95 | bool isTuple( Expression *expr ) {
|
---|
[51587aa] | 96 | if ( ! expr ) return false;
|
---|
[d29fa5f] | 97 | assert( expr->result );
|
---|
[e6cee92] | 98 | return dynamic_cast< TupleType * >( expr->get_result()->stripReferences() );
|
---|
[51587aa] | 99 | }
|
---|
| 100 |
|
---|
[65660bd] | 101 | template< typename AltIter >
|
---|
| 102 | bool isMultAssign( AltIter begin, AltIter end ) {
|
---|
| 103 | // multiple assignment if more than one alternative in the range or if
|
---|
| 104 | // the alternative is a tuple
|
---|
| 105 | if ( begin == end ) return false;
|
---|
| 106 | if ( isTuple( begin->expr ) ) return true;
|
---|
| 107 | return ++begin != end;
|
---|
| 108 | }
|
---|
| 109 |
|
---|
[e6cee92] | 110 | bool refToTuple( Expression *expr ) {
|
---|
| 111 | assert( expr->get_result() );
|
---|
[5af62f1] | 112 | // also check for function returning tuple of reference types
|
---|
[65660bd] | 113 | if ( CastExpr * castExpr = dynamic_cast< CastExpr * >( expr ) ) {
|
---|
[e6cee92] | 114 | return refToTuple( castExpr->get_arg() );
|
---|
| 115 | } else {
|
---|
| 116 | return isTuple( expr );
|
---|
[51587aa] | 117 | }
|
---|
| 118 | return false;
|
---|
| 119 | }
|
---|
| 120 |
|
---|
[c43c171] | 121 | void handleTupleAssignment( ResolvExpr::AlternativeFinder & currentFinder, UntypedExpr * expr,
|
---|
[78315272] | 122 | std::vector<ResolvExpr::AlternativeFinder> &args ) {
|
---|
| 123 | TupleAssignSpotter spotter( currentFinder );
|
---|
| 124 | spotter.spot( expr, args );
|
---|
[5af62f1] | 125 | }
|
---|
[51587aa] | 126 |
|
---|
[5af62f1] | 127 | TupleAssignSpotter::TupleAssignSpotter( ResolvExpr::AlternativeFinder &f )
|
---|
| 128 | : currentFinder(f) {}
|
---|
[51587aa] | 129 |
|
---|
[78315272] | 130 | void TupleAssignSpotter::spot( UntypedExpr * expr,
|
---|
| 131 | std::vector<ResolvExpr::AlternativeFinder> &args ) {
|
---|
[65660bd] | 132 | if ( NameExpr *op = dynamic_cast< NameExpr * >(expr->get_function()) ) {
|
---|
[bff227f] | 133 | if ( CodeGen::isCtorDtorAssign( op->get_name() ) ) {
|
---|
[78315272] | 134 | fname = op->get_name();
|
---|
| 135 |
|
---|
| 136 | // AlternativeFinder will naturally handle this case case, if it's legal
|
---|
| 137 | if ( args.size() == 0 ) return;
|
---|
| 138 |
|
---|
| 139 | // if an assignment only takes 1 argument, that's odd, but maybe someone wrote
|
---|
| 140 | // the function, in which case AlternativeFinder will handle it normally
|
---|
| 141 | if ( args.size() == 1 && CodeGen::isAssignment( fname ) ) return;
|
---|
| 142 |
|
---|
| 143 | // look over all possible left-hand-sides
|
---|
| 144 | for ( ResolvExpr::Alternative& lhsAlt : args[0] ) {
|
---|
| 145 | // skip non-tuple LHS
|
---|
| 146 | if ( ! refToTuple(lhsAlt.expr) ) continue;
|
---|
| 147 |
|
---|
| 148 | // explode is aware of casts - ensure every LHS expression is sent into explode
|
---|
| 149 | // with a reference cast
|
---|
| 150 | // xxx - this seems to change the alternatives before the normal
|
---|
| 151 | // AlternativeFinder flow; maybe this is desired?
|
---|
| 152 | if ( ! dynamic_cast<CastExpr*>( lhsAlt.expr ) ) {
|
---|
| 153 | lhsAlt.expr = new CastExpr( lhsAlt.expr,
|
---|
| 154 | new ReferenceType( Type::Qualifiers(),
|
---|
| 155 | lhsAlt.expr->get_result()->clone() ) );
|
---|
[c43c171] | 156 | }
|
---|
| 157 |
|
---|
[78315272] | 158 | // explode the LHS so that each field of a tuple-valued-expr is assigned
|
---|
| 159 | ResolvExpr::AltList lhs;
|
---|
| 160 | explode( lhsAlt, currentFinder.get_indexer(), back_inserter(lhs), true );
|
---|
| 161 | for ( ResolvExpr::Alternative& alt : lhs ) {
|
---|
| 162 | // each LHS value must be a reference - some come in with a cast expression,
|
---|
| 163 | // if not just cast to reference here
|
---|
| 164 | if ( ! dynamic_cast<ReferenceType*>( alt.expr->get_result() ) ) {
|
---|
| 165 | alt.expr = new CastExpr( alt.expr,
|
---|
| 166 | new ReferenceType( Type::Qualifiers(),
|
---|
| 167 | alt.expr->get_result()->clone() ) );
|
---|
[51587aa] | 168 | }
|
---|
[78315272] | 169 | }
|
---|
| 170 |
|
---|
| 171 | if ( args.size() == 1 ) {
|
---|
| 172 | // mass default-initialization/destruction
|
---|
| 173 | ResolvExpr::AltList rhs{};
|
---|
| 174 | matcher.reset( new MassAssignMatcher( *this, lhs, rhs ) );
|
---|
[4b6ef70] | 175 | match();
|
---|
[78315272] | 176 | } else if ( args.size() > 2 ) {
|
---|
| 177 | // expand all possible RHS possibilities
|
---|
| 178 | // TODO build iterative version of this instead of using combos
|
---|
| 179 | std::vector< ResolvExpr::AltList > rhsAlts;
|
---|
| 180 | combos( std::next(args.begin(), 1), args.end(),
|
---|
| 181 | std::back_inserter( rhsAlts ) );
|
---|
| 182 | for ( const ResolvExpr::AltList& rhsAlt : rhsAlts ) {
|
---|
| 183 | // multiple assignment
|
---|
| 184 | ResolvExpr::AltList rhs;
|
---|
| 185 | explode( rhsAlt, currentFinder.get_indexer(),
|
---|
| 186 | std::back_inserter(rhs), true );
|
---|
| 187 | matcher.reset( new MultipleAssignMatcher( *this, lhs, rhs ) );
|
---|
| 188 | match();
|
---|
| 189 | }
|
---|
| 190 | } else {
|
---|
| 191 | for ( const ResolvExpr::Alternative& rhsAlt : args[1] ) {
|
---|
| 192 | ResolvExpr::AltList rhs;
|
---|
| 193 | if ( isTuple(rhsAlt.expr) ) {
|
---|
| 194 | // multiple assignment
|
---|
| 195 | explode( rhsAlt, currentFinder.get_indexer(),
|
---|
| 196 | std::back_inserter(rhs), true );
|
---|
| 197 | matcher.reset( new MultipleAssignMatcher( *this, lhs, rhs ) );
|
---|
| 198 | } else {
|
---|
| 199 | // mass assignment
|
---|
| 200 | rhs.push_back( rhsAlt );
|
---|
| 201 | matcher.reset( new MassAssignMatcher( *this, lhs, rhs ) );
|
---|
| 202 | }
|
---|
| 203 | match();
|
---|
| 204 | }
|
---|
[51587aa] | 205 | }
|
---|
| 206 | }
|
---|
| 207 | }
|
---|
| 208 | }
|
---|
| 209 | }
|
---|
| 210 |
|
---|
[5af62f1] | 211 | void TupleAssignSpotter::match() {
|
---|
| 212 | assert ( matcher != 0 );
|
---|
[51587aa] | 213 |
|
---|
[5af62f1] | 214 | std::list< Expression * > new_assigns;
|
---|
| 215 | matcher->match( new_assigns );
|
---|
| 216 |
|
---|
[f831177] | 217 | if ( ! matcher->lhs.empty() || ! matcher->rhs.empty() ) {
|
---|
| 218 | // if both lhs and rhs are empty then this is the empty tuple case, wherein it's okay for new_assigns to be empty.
|
---|
| 219 | // if not the empty tuple case, return early so that no new alternatives are generated.
|
---|
| 220 | if ( new_assigns.empty() ) return;
|
---|
| 221 | }
|
---|
[5af62f1] | 222 | ResolvExpr::AltList current;
|
---|
| 223 | // now resolve new assignments
|
---|
[78315272] | 224 | for ( std::list< Expression * >::iterator i = new_assigns.begin();
|
---|
| 225 | i != new_assigns.end(); ++i ) {
|
---|
[4b6ef70] | 226 | PRINT(
|
---|
| 227 | std::cerr << "== resolving tuple assign ==" << std::endl;
|
---|
| 228 | std::cerr << *i << std::endl;
|
---|
| 229 | )
|
---|
| 230 |
|
---|
[78315272] | 231 | ResolvExpr::AlternativeFinder finder{ currentFinder.get_indexer(),
|
---|
| 232 | currentFinder.get_environ() };
|
---|
[ac9ca96] | 233 | try {
|
---|
| 234 | finder.findWithAdjustment(*i);
|
---|
| 235 | } catch (...) {
|
---|
[1d2b64f] | 236 | return; // no match should not mean failure, it just means this particular tuple assignment isn't valid
|
---|
[ac9ca96] | 237 | }
|
---|
[5af62f1] | 238 | // prune expressions that don't coincide with
|
---|
| 239 | ResolvExpr::AltList alts = finder.get_alternatives();
|
---|
| 240 | assert( alts.size() == 1 );
|
---|
| 241 | assert( alts.front().expr != 0 );
|
---|
[908cc83] | 242 | current.push_back( alts.front() );
|
---|
[5af62f1] | 243 | }
|
---|
| 244 |
|
---|
[6eb8948] | 245 | // extract expressions from the assignment alternatives to produce a list of assignments that
|
---|
| 246 | // together form a single alternative
|
---|
| 247 | std::list< Expression *> solved_assigns;
|
---|
| 248 | for ( ResolvExpr::Alternative & alt : current ) {
|
---|
| 249 | solved_assigns.push_back( alt.expr->clone() );
|
---|
| 250 | }
|
---|
[1d2b64f] | 251 | // combine assignment environments into combined expression environment
|
---|
| 252 | simpleCombineEnvironments( current.begin(), current.end(), matcher->compositeEnv );
|
---|
[78315272] | 253 | currentFinder.get_alternatives().push_front( ResolvExpr::Alternative(
|
---|
| 254 | new TupleAssignExpr(solved_assigns, matcher->tmpDecls), matcher->compositeEnv,
|
---|
| 255 | ResolvExpr::sumCost( current ) + matcher->baseCost ) );
|
---|
[4b6ef70] | 256 | }
|
---|
| 257 |
|
---|
[78315272] | 258 | TupleAssignSpotter::Matcher::Matcher( TupleAssignSpotter &spotter,
|
---|
| 259 | const ResolvExpr::AltList &lhs, const ResolvExpr::AltList &rhs )
|
---|
| 260 | : lhs(lhs), rhs(rhs), spotter(spotter),
|
---|
| 261 | baseCost( ResolvExpr::sumCost( lhs ) + ResolvExpr::sumCost( rhs ) ) {
|
---|
| 262 | simpleCombineEnvironments( lhs.begin(), lhs.end(), compositeEnv );
|
---|
| 263 | simpleCombineEnvironments( rhs.begin(), rhs.end(), compositeEnv );
|
---|
[4b6ef70] | 264 | }
|
---|
[51587aa] | 265 |
|
---|
[65660bd] | 266 | UntypedExpr * createFunc( const std::string &fname, ObjectDecl *left, ObjectDecl *right ) {
|
---|
| 267 | assert( left );
|
---|
[5af62f1] | 268 | std::list< Expression * > args;
|
---|
[e6cee92] | 269 | args.push_back( new VariableExpr( left ) );
|
---|
[65660bd] | 270 | // args.push_back( new AddressExpr( new VariableExpr( left ) ) );
|
---|
| 271 | if ( right ) args.push_back( new VariableExpr( right ) );
|
---|
| 272 | return new UntypedExpr( new NameExpr( fname ), args );
|
---|
[51587aa] | 273 | }
|
---|
| 274 |
|
---|
[1d2b64f] | 275 | // removes environments from subexpressions within statement exprs, which could throw off later passes like those in Box which rely on PolyMutator.
|
---|
| 276 | // xxx - maybe this should happen in alternative finder for every StmtExpr?
|
---|
| 277 | // xxx - it's possible that these environments could contain some useful information. Maybe the right thing to do is aggregate the environments and pass the aggregate back to be added into the compositeEnv
|
---|
| 278 | struct EnvRemover : public Visitor {
|
---|
| 279 | virtual void visit( ExprStmt * stmt ) {
|
---|
| 280 | delete stmt->get_expr()->get_env();
|
---|
| 281 | stmt->get_expr()->set_env( nullptr );
|
---|
| 282 | Visitor::visit( stmt );
|
---|
| 283 | }
|
---|
| 284 | };
|
---|
| 285 |
|
---|
| 286 | ObjectDecl * TupleAssignSpotter::Matcher::newObject( UniqueName & namer, Expression * expr ) {
|
---|
[d29fa5f] | 287 | assert( expr->result && ! expr->get_result()->isVoid() );
|
---|
[68fe077a] | 288 | ObjectDecl * ret = new ObjectDecl( namer.newName(), Type::StorageClasses(), LinkageSpec::Cforall, nullptr, expr->get_result()->clone(), new SingleInit( expr->clone() ) );
|
---|
[e6cee92] | 289 | // if expression type is a reference, don't need to construct anything, a simple initializer is sufficient.
|
---|
| 290 | if ( ! dynamic_cast< ReferenceType * >( expr->get_result() ) ) {
|
---|
| 291 | ConstructorInit * ctorInit = InitTweak::genCtorInit( ret );
|
---|
| 292 | ret->set_init( ctorInit );
|
---|
| 293 | ResolvExpr::resolveCtorInit( ctorInit, spotter.currentFinder.get_indexer() ); // resolve ctor/dtors for the new object
|
---|
| 294 | EnvRemover rm; // remove environments from subexpressions of StmtExprs
|
---|
| 295 | ctorInit->accept( rm );
|
---|
| 296 | }
|
---|
[f5854507] | 297 | PRINT( std::cerr << "new object: " << ret << std::endl; )
|
---|
[1d2b64f] | 298 | return ret;
|
---|
[6eb8948] | 299 | }
|
---|
| 300 |
|
---|
[5af62f1] | 301 | void TupleAssignSpotter::MassAssignMatcher::match( std::list< Expression * > &out ) {
|
---|
[6eb8948] | 302 | static UniqueName lhsNamer( "__massassign_L" );
|
---|
| 303 | static UniqueName rhsNamer( "__massassign_R" );
|
---|
[f831177] | 304 | // empty tuple case falls into this matcher, hence the second part of the assert
|
---|
| 305 | assert( (! lhs.empty() && rhs.size() <= 1) || (lhs.empty() && rhs.empty()) );
|
---|
[51587aa] | 306 |
|
---|
[65660bd] | 307 | ObjectDecl * rtmp = rhs.size() == 1 ? newObject( rhsNamer, rhs.front().expr ) : nullptr;
|
---|
[3c13c03] | 308 | for ( ResolvExpr::Alternative & lhsAlt : lhs ) {
|
---|
[f831177] | 309 | // create a temporary object for each value in the lhs and create a call involving the rhs
|
---|
[65660bd] | 310 | ObjectDecl * ltmp = newObject( lhsNamer, lhsAlt.expr );
|
---|
| 311 | out.push_back( createFunc( spotter.fname, ltmp, rtmp ) );
|
---|
[6eb8948] | 312 | tmpDecls.push_back( ltmp );
|
---|
[5af62f1] | 313 | }
|
---|
[65660bd] | 314 | if ( rtmp ) tmpDecls.push_back( rtmp );
|
---|
[51b73452] | 315 | }
|
---|
| 316 |
|
---|
[5af62f1] | 317 | void TupleAssignSpotter::MultipleAssignMatcher::match( std::list< Expression * > &out ) {
|
---|
[6eb8948] | 318 | static UniqueName lhsNamer( "__multassign_L" );
|
---|
| 319 | static UniqueName rhsNamer( "__multassign_R" );
|
---|
[b3b2077] | 320 |
|
---|
[51587aa] | 321 | if ( lhs.size() == rhs.size() ) {
|
---|
[f831177] | 322 | // produce a new temporary object for each value in the lhs and rhs and pairwise create the calls
|
---|
[6eb8948] | 323 | std::list< ObjectDecl * > ltmp;
|
---|
| 324 | std::list< ObjectDecl * > rtmp;
|
---|
[1d2b64f] | 325 | std::transform( lhs.begin(), lhs.end(), back_inserter( ltmp ), [&]( ResolvExpr::Alternative & alt ){
|
---|
[65660bd] | 326 | return newObject( lhsNamer, alt.expr );
|
---|
[6eb8948] | 327 | });
|
---|
[1d2b64f] | 328 | std::transform( rhs.begin(), rhs.end(), back_inserter( rtmp ), [&]( ResolvExpr::Alternative & alt ){
|
---|
[3c13c03] | 329 | return newObject( rhsNamer, alt.expr );
|
---|
[6eb8948] | 330 | });
|
---|
[65660bd] | 331 | zipWith( ltmp.begin(), ltmp.end(), rtmp.begin(), rtmp.end(), back_inserter(out), [&](ObjectDecl * obj1, ObjectDecl * obj2 ) { return createFunc(spotter.fname, obj1, obj2); } );
|
---|
[6eb8948] | 332 | tmpDecls.splice( tmpDecls.end(), ltmp );
|
---|
| 333 | tmpDecls.splice( tmpDecls.end(), rtmp );
|
---|
[5af62f1] | 334 | }
|
---|
[51587aa] | 335 | }
|
---|
[51b73452] | 336 | } // namespace Tuples
|
---|
[51587aa] | 337 |
|
---|
| 338 | // Local Variables: //
|
---|
| 339 | // tab-width: 4 //
|
---|
| 340 | // mode: c++ //
|
---|
| 341 | // compile-command: "make install" //
|
---|
| 342 | // End: //
|
---|