-
Notifications
You must be signed in to change notification settings - Fork 570
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i#3544: RV64: Split PC-sensitive IR tests into another test (#7102)
Disassemble result of instructions like jal and auipc on riscv64 is PC-sensitve, i.e. depends on the current PC value. We used to omit the check since address of the buffer that we encode instructions to is unknown before running the test. This commit splits IR tests of these instructions out and enables regex match to handle the varying addresses. It's important to keep it small and standalone to workaround the inefficient regex implementation of CMake. Issue: #3544
- Loading branch information
Showing
7 changed files
with
339 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* ********************************************************** | ||
* Copyright (c) 2024 Institute of Software Chinese Academy of Sciences (ISCAS). | ||
* All rights reserved. | ||
* **********************************************************/ | ||
|
||
/* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are met: | ||
* | ||
* * Redistributions of source code must retain the above copyright notice, | ||
* this list of conditions and the following disclaimer. | ||
* | ||
* * Redistributions in binary form must reproduce the above copyright notice, | ||
* this list of conditions and the following disclaimer in the documentation | ||
* and/or other materials provided with the distribution. | ||
* | ||
* * Neither the name of ISCAS nor the names of its contributors may be | ||
* used to endorse or promote products derived from this software without | ||
* specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
* ARE DISCLAIMED. IN NO EVENT SHALL ISCAS OR CONTRIBUTORS BE LIABLE | ||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH | ||
* DAMAGE. | ||
*/ | ||
|
||
#ifndef IR_RISCV64_H | ||
#define IR_RISCV64_H | ||
|
||
#include "configure.h" | ||
#include "dr_api.h" | ||
#include "tools.h" | ||
#include "dr_ir_utils.h" | ||
#include "dr_defines.h" | ||
|
||
#ifdef STANDALONE_DECODER | ||
# define ASSERT(x) \ | ||
((void)((!(x)) ? (fprintf(stderr, "ASSERT FAILURE (standalone): %s:%d: %s\n", \ | ||
__FILE__, __LINE__, #x), \ | ||
abort(), 0) \ | ||
: 0)) | ||
#else | ||
# define ASSERT(x) \ | ||
((void)((!(x)) ? (dr_fprintf(STDERR, "ASSERT FAILURE (client): %s:%d: %s\n", \ | ||
__FILE__, __LINE__, #x), \ | ||
dr_abort(), 0) \ | ||
: 0)) | ||
#endif | ||
|
||
extern byte buf[8192]; | ||
|
||
byte * | ||
test_instr_encoding_copy(void *dc, uint opcode, app_pc instr_pc, instr_t *instr); | ||
byte * | ||
test_instr_encoding(void *dc, uint opcode, instr_t *instr); | ||
void | ||
test_instr_encoding_failure(void *dc, uint opcode, app_pc instr_pc, instr_t *instr); | ||
byte * | ||
test_instr_decoding_failure(void *dc, uint raw_instr); | ||
|
||
#endif /* IR_RISCV64_H */ |
Oops, something went wrong.