Changeset bc3127d


Ignore:
Timestamp:
Sep 1, 2017, 4:26:14 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
5809461, ba2a68b
Parents:
78a0b88
Message:

Handle user-defined literals in OperatorTable?, 0/1 from operator table

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/CodeGen/OperatorTable.cc

    r78a0b88 rbc3127d  
    1919
    2020#include "OperatorTable.h"
     21#include "Common/utility.h"
    2122
    2223namespace CodeGen {
     
    6566                        {       "?^=?",         "^=",   "_operator_bitxorassign",               OT_INFIXASSIGN          },
    6667                        {       "?|=?",         "|=",   "_operator_bitorassign",                OT_INFIXASSIGN          },
    67                         {       "&&",           "&&",   "&&",                                                   OT_LABELADDRESS         },
    68                         {       "0",            "0",    "_constant_zero",                               OT_CONSTANT                     },
    69                         {       "1",            "1",    "_constant_one",                                OT_CONSTANT                     }
     68                        {       "&&",           "&&",   "&&",                                                   OT_LABELADDRESS         }
    7069                };
    7170
     
    8685                        initialize();
    8786                } // if
     87
    8888                std::map< std::string, OperatorInfo >::const_iterator i = table.find( funcName );
    8989                if ( i == table.end() ) {
     90                        if ( isPrefix( funcName, "?`" ) ) {
     91                                // handle literal suffixes, which are user-defined postfix operators
     92                                info.inputName = funcName;
     93                                info.symbol = funcName.substr(2);
     94                                info.outputName = toString( "__operator_literal_", info.symbol );
     95                                info.type = OT_POSTFIX;
     96                                return true;
     97                        }
    9098                        return false;
    9199                } else {
  • src/Common/utility.h

    r78a0b88 rbc3127d  
    222222        std::cerr << "Warning: ";
    223223        warn_single( params... );
     224}
     225
     226/// determines if `pref` is a prefix of `str`
     227static inline bool isPrefix( const std::string & str, const std::string & pref ) {
     228        if ( pref.size() > str.size() ) return false;
     229        auto its = std::mismatch( pref.begin(), pref.end(), str.begin() );
     230        return its.first == pref.end();
    224231}
    225232
  • src/GenPoly/Box.cc

    r78a0b88 rbc3127d  
    12981298                }
    12991299
    1300                 /// determines if `pref` is a prefix of `str`
    1301                 bool isPrefix( const std::string & str, const std::string & pref ) {
    1302                         if ( pref.size() > str.size() ) return false;
    1303                         auto its = std::mismatch( pref.begin(), pref.end(), str.begin() );
    1304                         return its.first == pref.end();
    1305                 }
    1306 
    13071300                DeclarationWithType * Pass2::mutate( FunctionDecl *functionDecl ) {
    13081301                        functionDecl = safe_dynamic_cast< FunctionDecl * > ( handleDecl( functionDecl ) );
Note: See TracChangeset for help on using the changeset viewer.