X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Ftypes%2Fcpp_exp.c;h=d4bb9bb7796cafe6dd6606403b8d3953adb0e860;hb=7a210012b049742d95928175e4ebb0e565f9bda7;hp=ee7a30b255fef8bfa27cccb76e584455e778c003;hpb=42f44eb5bf4ecd36e26e051fada79d861d0f92d2;p=m6w6%2Fext-psi diff --git a/src/types/cpp_exp.c b/src/types/cpp_exp.c index ee7a30b..d4bb9bb 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); @@ -305,6 +314,18 @@ void psi_cpp_exp_exec(struct psi_cpp_exp *exp, struct psi_cpp *cpp, struct psi_d } } break; + case PSI_T_IMPORT: + if (!cpp->skip) { + if (!psi_cpp_include(cpp, exp->data.tok->text, 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;