X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Ftypes%2Fcpp_exp.c;h=6e01843ac4aae08067cc765e8d5066b76b5515a9;hb=a88d91ed2154bdb6d2198e44c6f3868a5b398287;hp=ee7a30b255fef8bfa27cccb76e584455e778c003;hpb=42f44eb5bf4ecd36e26e051fada79d861d0f92d2;p=m6w6%2Fext-psi diff --git a/src/types/cpp_exp.c b/src/types/cpp_exp.c index ee7a30b..6e01843 100644 --- a/src/types/cpp_exp.c +++ b/src/types/cpp_exp.c @@ -54,6 +54,7 @@ struct psi_cpp_exp *psi_cpp_exp_init(token_t type, void *data) break; case PSI_T_ENDIF: case PSI_T_ELSE: + case PSI_T_PRAGMA_ONCE: break; default: assert(0); @@ -94,6 +95,7 @@ void psi_cpp_exp_free(struct psi_cpp_exp **exp_ptr) break; case PSI_T_ENDIF: case PSI_T_ELSE: + case PSI_T_PRAGMA_ONCE: break; default: assert(0); @@ -119,10 +121,16 @@ void psi_cpp_exp_dump(int fd, struct psi_cpp_exp *exp) case PSI_T_UNDEF: case PSI_T_IFDEF: case PSI_T_IFNDEF: + dprintf(fd, "%s", exp->data.tok->text); + break; case PSI_T_IMPORT: case PSI_T_INCLUDE: case PSI_T_INCLUDE_NEXT: - dprintf(fd, "%s", exp->data.tok->text); + if (exp->data.tok->type == PSI_T_CPP_HEADER) { + dprintf(fd, "<%s>", exp->data.tok->text); + } else { + dprintf(fd, "\"%s\"", exp->data.tok->text); + } break; case PSI_T_DEFINE: psi_cpp_macro_decl_dump(fd, exp->data.decl); @@ -133,6 +141,7 @@ void psi_cpp_exp_dump(int fd, struct psi_cpp_exp *exp) break; case PSI_T_ENDIF: case PSI_T_ELSE: + case PSI_T_PRAGMA_ONCE: break; default: assert(0); @@ -293,18 +302,30 @@ void psi_cpp_exp_exec(struct psi_cpp_exp *exp, struct psi_cpp *cpp, struct psi_d break; case PSI_T_INCLUDE: if (!cpp->skip) { - if (!psi_cpp_include(cpp, exp->data.tok->text, PSI_CPP_INCLUDE)) { + if (!psi_cpp_include(cpp, exp->data.tok, PSI_CPP_INCLUDE)) { D->error(D, exp->token, PSI_WARNING, "Failed to include %s", exp->data.tok->text); } } break; case PSI_T_INCLUDE_NEXT: if (!cpp->skip) { - if (!psi_cpp_include(cpp, exp->data.tok->text, PSI_CPP_INCLUDE_NEXT)) { + if (!psi_cpp_include(cpp, exp->data.tok, PSI_CPP_INCLUDE_NEXT)) { + D->error(D, exp->token, PSI_WARNING, "Failed to include %s", exp->data.tok->text); + } + } + break; + case PSI_T_IMPORT: + if (!cpp->skip) { + if (!psi_cpp_include(cpp, exp->data.tok, PSI_CPP_INCLUDE_ONCE)) { D->error(D, exp->token, PSI_WARNING, "Failed to include %s", exp->data.tok->text); } } break; + case PSI_T_PRAGMA_ONCE: + if (!cpp->skip) { + zend_hash_str_add_empty_element(&cpp->once, exp->token->file, strlen(exp->token->file)); + } + break; default: assert(0); break;