diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-04-22 22:29:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 22:29:27 (GMT) |
commit | c5fc15685202cda73f7c3f5c6f299b0945f58508 (patch) | |
tree | 7624ae45b95f2812e801c5879bdbdcb796f570a6 /PCbuild | |
parent | a81849b0315277bb3937271174aaaa5059c0b445 (diff) | |
download | cpython-c5fc15685202cda73f7c3f5c6f299b0945f58508.zip cpython-c5fc15685202cda73f7c3f5c6f299b0945f58508.tar.gz cpython-c5fc15685202cda73f7c3f5c6f299b0945f58508.tar.bz2 |
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)
Co-authored-by: Guido van Rossum <guido@python.org>
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 9 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 12 | ||||
-rw-r--r-- | PCbuild/regen.vcxproj | 10 |
3 files changed, 30 insertions, 1 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 862c5a8..d795c4d 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -213,6 +213,8 @@ <ClInclude Include="..\Include\parsetok.h" /> <ClInclude Include="..\Include\patchlevel.h" /> <ClInclude Include="..\Include\picklebufobject.h" /> + <ClInclude Include="..\Include\pegen_interface.h" /> + <ClInclude Include="..\Include\pyhash.h" /> <ClInclude Include="..\Include\pyhash.h" /> <ClInclude Include="..\Include\py_curses.h" /> <ClInclude Include="..\Include\pyarena.h" /> @@ -276,6 +278,8 @@ <ClInclude Include="..\Objects\unicodetype_db.h" /> <ClInclude Include="..\Parser\parser.h" /> <ClInclude Include="..\Parser\tokenizer.h" /> + <ClInclude Include="..\Parser\pegen\parse_string.h" /> + <ClInclude Include="..\Parser\pegen\pegen.h" /> <ClInclude Include="..\PC\errmap.h" /> <ClInclude Include="..\PC\pyconfig.h" /> <ClInclude Include="..\Python\ceval_gil.h" /> @@ -338,6 +342,7 @@ <ClCompile Include="..\Modules\_opcode.c" /> <ClCompile Include="..\Modules\_operator.c" /> <ClCompile Include="..\Modules\parsermodule.c" /> + <ClCompile Include="..\Modules\_peg_parser.c" /> <ClCompile Include="..\Modules\posixmodule.c" /> <ClCompile Include="..\Modules\rotatingtree.c" /> <ClCompile Include="..\Modules\sha1module.c" /> @@ -419,6 +424,10 @@ <ClCompile Include="..\Parser\parsetok.c" /> <ClCompile Include="..\Parser\tokenizer.c" /> <ClCompile Include="..\Parser\token.c" /> + <ClCompile Include="..\Parser\pegen\pegen.c" /> + <ClCompile Include="..\Parser\pegen\parse.c" /> + <ClCompile Include="..\Parser\pegen\parse_string.c" /> + <ClCompile Include="..\Parser\pegen\peg_api.c" /> <ClCompile Include="..\PC\invalid_parameter_handler.c" /> <ClCompile Include="..\PC\winreg.c" /> <ClCompile Include="..\PC\config.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 9d6d997..8c02622 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -902,6 +902,18 @@ <ClCompile Include="..\Parser\grammar1.c"> <Filter>Parser</Filter> </ClCompile> + <ClCompile Include="..\Parser\pegen\pegen.c"> + <Filter>Parser</Filter> + </ClCompile> + <ClCompile Include="..\Parser\pegen\parse.c"> + <Filter>Parser</Filter> + </ClCompile> + <ClCompile Include="..\Parser\pegen\parse_string.c"> + <Filter>Parser</Filter> + </ClCompile> + <ClCompile Include="..\Parser\pegen\peg_api.c"> + <Filter>Parser</Filter> + </ClCompile> <ClCompile Include="..\Parser\listnode.c"> <Filter>Parser</Filter> </ClCompile> diff --git a/PCbuild/regen.vcxproj b/PCbuild/regen.vcxproj index 876b12b..9fe8d6d 100644 --- a/PCbuild/regen.vcxproj +++ b/PCbuild/regen.vcxproj @@ -166,6 +166,14 @@ </Copy> <Warning Text="Grammar updated. You will need to rebuild pythoncore to see the changes." Condition="'@(_UpdatedH)' != '' and '@(_UpdatedC)' != ''" /> </Target> + <Target Name="_RegenPegen" BeforeTargets="Build"> + <!-- Regenerate Parser/pegen/parse.c --> + <Exec Command=""$PYTHONPATH=$(srcdir)/Tools/peg_generator" "$(PythonExe)" -m pegen -c -q "$(PySourcePath)Grammar\python.gram" -o "$(IntDir)parse.c"" /> + <Copy SourceFiles="$(IntDir)parse.c" DestinationFiles="$(PySourcePath)Parser\pegen\parse.c"> + <Output TaskParameter="CopiedFiles" ItemName="_UpdatedParse" /> + </Copy> + <Warning Text="Pegen updated. You will need to rebuild pythoncore to see the changes." Condition="'@(_UpdatedParse)' != ''" /> + </Target> <Target Name="_RegenAST_H" AfterTargets="_RegenGrammar"> <!-- Regenerate Include/Python-ast.h using Parser/asdl_c.py -h --> <Exec Command=""$(PythonExe)" "$(PySourcePath)Parser\asdl_c.py" -h "$(IntDir)Python-ast.h" "$(PySourcePath)Parser\Python.asdl"" /> @@ -222,4 +230,4 @@ <Clean Include="$(IntDir)graminit.c.new" /> </ItemGroup> </Target> -</Project>
\ No newline at end of file +</Project> |