// // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // Attribute.cpp -- // // Author : Aaron B. Moss // Created On : Fri May 10 10:30:00 2019 // Last Modified By : Aaron B. Moss // Created On : Fri May 10 10:30:00 2019 // Update Count : 1 // #include "Attribute.hpp" #include // for transform #include // for tolower #include // for back_inserter #include namespace ast { std::string Attribute::normalizedName() const { // trim underscores auto begin = name.find_first_not_of('_'); auto end = name.find_last_not_of('_'); if ( begin == std::string::npos || end == std::string::npos ) return ""; // convert to lowercase std::string ret; ret.reserve( end-begin+1 ); int (*tolower)(int) = std::tolower; std::transform( &name[begin], &name[end+1], back_inserter( ret ), tolower ); return ret; } bool Attribute::isValidOnFuncParam() const { // attributes such as aligned, cleanup, etc. produce GCC errors when they appear // on function parameters. Maintain here a whitelist of attribute names that are // allowed to appear on parameters. std::string norm = normalizedName(); return norm == "unused" || norm == "noreturn"; } } // Local Variables: // // tab-width: 4 // // mode: c++ // // compile-command: "make install" // // End: //