]> git.ipfire.org Git - thirdparty/gcc.git/commit - libcpp/ChangeLog
Implement C++11 user-defined literals.
authorEd Smith-Rowland <3dw4rd@verizon.net>
Wed, 26 Oct 2011 19:30:59 +0000 (19:30 +0000)
committerJason Merrill <jason@gcc.gnu.org>
Wed, 26 Oct 2011 19:30:59 +0000 (15:30 -0400)
commit3ce4f9e4d2643273f11647e97b2c7796a64a73dd
tree1d0c22775480b21a84a6024b85f12710e67dd587
parent7f808caddae18d281e190566e6f49e3417d99926
Implement C++11 user-defined literals.

libcpp/
* expr.c: (cpp_interpret_float_suffix, cpp_interpret_int_suffix,
cpp_userdef_string_remove_type, cpp_userdef_string_add_type,
cpp_userdef_char_remove_type, cpp_userdef_char_add_type,
cpp_userdef_string_p, cpp_userdef_char_p, cpp_get_userdef_suffix): New.
(cpp_classify_number): Classify unrecognized tokens as user-defined
literals.
* include/cpplib.h: Add new tokens for user-defined literals.
* init.c: Add new preprocessor flag (cxx11).
* lex.c: (lex_string, lex_raw_string): Handle user-defined literals
including concatenation and promotion with suffixes.
c-family/
* c-common.c (build_userdef_literal): New.
* c-common.def: New tree code.
* c-common.h (tree_userdef_literal): New tree struct and accessors.
* c-lex.c (interpret_float): Add suffix parm.
(c_lex_with_flags): Build literal tokens.
cp/
* cp-objcp-common.c: (cp_tree_size) Return size of USERDEF_LITERAL tree.
* cp-tree.h: (UDLIT_OP_*, UDLIT_OPER_P): Literal operator
name tools. New tree code for user-defined literals.
* cxx-pretty-print.h: (pp_cxx_userdef_literal) New.
* cxx-pretty-print.c: (pp_cxx_userdef_literal) New.
(pp_cxx_primary_expression, pp_cxx_expression): Use it.
* decl.c: (cp_tree_node_structure): Return new tree code.
(duplicate_decls): Check for raw vs. template operator conflicts.
(grokfndecl, grokdeclarator): New checks for literal operators.
* error.c: (dump_expr): Warn about user-defined literals
in C++98 mode. (dump_function_name): Pretty printing.
* mangle.c: (write_literal_operator_name): New.
(write_unqualified_id, write_unqualified_name): Use it.
* parser.c: (cp_parser_operator): Handle operator"".
(cp_parser_userdef_char_literal, cp_parser_userdef_numeric_literal,
cp_parser_userdef_string_literal): New.
(cp_parser_primary_expression): Handle new user-defined literal tokens
with new functions.
* semantics.c: (potential_constant_expression_1): Add
user-defined literals.
* typeck.c (check_raw_literal_operator,
check_literal_operator_args): New.

From-SVN: r180536
57 files changed:
gcc/c-family/ChangeLog
gcc/c-family/c-common.c
gcc/c-family/c-common.def
gcc/c-family/c-common.h
gcc/c-family/c-lex.c
gcc/cp/ChangeLog
gcc/cp/cp-objcp-common.c
gcc/cp/cp-tree.h
gcc/cp/cxx-pretty-print.c
gcc/cp/cxx-pretty-print.h
gcc/cp/decl.c
gcc/cp/error.c
gcc/cp/mangle.c
gcc/cp/parser.c
gcc/cp/semantics.c
gcc/cp/typeck.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/udlit-addr.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-args-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-args.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-clink-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-concat-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-concat.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-constexpr.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-cpp98-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-declare-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-embed-quote.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-friend.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-general.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-inline.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-linkage-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-member-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-namespace.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-nofunc-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-nonempty-str-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-nospace-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-nosuffix-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-nounder-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-operator-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-preproc-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-raw-op-string-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-raw-op.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-raw-str.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-shadow-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-suffix-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-systemheader.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-template.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-tmpl-arg-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-tmpl-arg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-tmpl-parms-neg.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit-tmpl-parms.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/udlit_system_header [new file with mode: 0644]
libcpp/ChangeLog
libcpp/expr.c
libcpp/include/cpplib.h
libcpp/init.c
libcpp/lex.c