mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-13 22:36:58 +00:00
jit/decoder: rename decoder script
Renames generate_decoder_tests.py to generate_jit_decoder_tests.py. Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
parent
c508a927ea
commit
e714dc47d0
3 changed files with 4 additions and 4 deletions
|
|
@ -104,10 +104,10 @@ set(GEN_TEST_SRC ${CMAKE_CURRENT_SOURCE_DIR}/tests/jit/decoder/test_arm32_genera
|
||||||
|
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
OUTPUT ${GEN_TEST_SRC}
|
OUTPUT ${GEN_TEST_SRC}
|
||||||
COMMAND Python3::Interpreter ${CMAKE_SOURCE_DIR}/scripts/generate_decoder_tests.py
|
COMMAND Python3::Interpreter ${CMAKE_SOURCE_DIR}/scripts/generate_jit_decoder_tests.py
|
||||||
${CMAKE_SOURCE_DIR}/src/jit/frontend/decoder/arm32.inc
|
${CMAKE_SOURCE_DIR}/src/jit/frontend/decoder/arm32.inc
|
||||||
${GEN_TEST_SRC}
|
${GEN_TEST_SRC}
|
||||||
DEPENDS ${CMAKE_SOURCE_DIR}/scripts/generate_decoder_tests.py
|
DEPENDS ${CMAKE_SOURCE_DIR}/scripts/generate_jit_decoder_tests.py
|
||||||
${CMAKE_SOURCE_DIR}/src/jit/frontend/decoder/arm32.inc
|
${CMAKE_SOURCE_DIR}/src/jit/frontend/decoder/arm32.inc
|
||||||
COMMENT "Generating ARM32 Decoder Tests"
|
COMMENT "Generating ARM32 Decoder Tests"
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -82,7 +82,7 @@ from typing import List, Dict, Optional, Tuple
|
||||||
CPP_HEADER = """/*
|
CPP_HEADER = """/*
|
||||||
* GENERATED FILE - DO NOT EDIT
|
* GENERATED FILE - DO NOT EDIT
|
||||||
*
|
*
|
||||||
* This file is generated by scripts/generate_decoder_tests.py
|
* This file is generated by scripts/generate_jit_decoder_tests.py
|
||||||
*
|
*
|
||||||
* PURPOSE:
|
* PURPOSE:
|
||||||
* Provides 100% requirements-based test coverage for the ARM32 Instruction Decoder.
|
* Provides 100% requirements-based test coverage for the ARM32 Instruction Decoder.
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* GENERATED FILE - DO NOT EDIT
|
* GENERATED FILE - DO NOT EDIT
|
||||||
*
|
*
|
||||||
* This file is generated by scripts/generate_decoder_tests.py
|
* This file is generated by scripts/generate_jit_decoder_tests.py
|
||||||
*
|
*
|
||||||
* PURPOSE:
|
* PURPOSE:
|
||||||
* Provides 100% requirements-based test coverage for the ARM32 Instruction Decoder.
|
* Provides 100% requirements-based test coverage for the ARM32 Instruction Decoder.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue