-
Notifications
You must be signed in to change notification settings - Fork 646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add a validator for aot module #3995
Open
lum1n0us
wants to merge
6
commits into
bytecodealliance:main
Choose a base branch
from
lum1n0us:feat/aot_validator
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+92
−6
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
716fcb7
Add AOT module validation to ensure memory constraints are met
lum1n0us 873b648
Refactor source file list formatting in SConscript for improved reada…
lum1n0us 17a4ca7
Add aot_validator.c to the build configuration
lum1n0us ce22b05
Enable AOT validator in build configuration and update related source…
lum1n0us 197a150
Fix formatting issue in aot_perf_map.c for consistency
lum1n0us 2f20016
Remove unnecessary blank line in aot_perf_map.c for cleaner code
lum1n0us File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,45 @@ | ||
/* | ||
* Copyright (C) 2019 Intel Corporation. All rights reserved. | ||
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
*/ | ||
|
||
#include "aot_validator.h" | ||
|
||
static void | ||
set_error_buf(char *error_buf, uint32 error_buf_size, const char *string) | ||
{ | ||
if (error_buf != NULL) { | ||
snprintf(error_buf, error_buf_size, | ||
"AOT module load failed: from validator. %s", string); | ||
} | ||
} | ||
|
||
static bool | ||
aot_memory_info_validate(const AOTModule *module, char *error_buf, | ||
uint32 error_buf_size) | ||
{ | ||
if (module->import_memory_count > 0) { | ||
set_error_buf(error_buf, error_buf_size, | ||
"import memory is not supported"); | ||
return false; | ||
} | ||
|
||
if (module->memory_count < 1) { | ||
set_error_buf(error_buf, error_buf_size, | ||
"there should be >=1 memory in one aot module"); | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
bool | ||
aot_module_validate(const AOTModule *module, char *error_buf, | ||
uint32 error_buf_size) | ||
{ | ||
if (!aot_memory_info_validate(module, error_buf, error_buf_size)) { | ||
return false; | ||
} | ||
|
||
return true; | ||
} |
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,15 @@ | ||
/* | ||
* Copyright (C) 2019 Intel Corporation. All rights reserved. | ||
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
*/ | ||
|
||
#ifndef _AOT_VALIDATOR_H_ | ||
#define _AOT_VALIDATOR_H_ | ||
|
||
#include "aot_runtime.h" | ||
|
||
bool | ||
aot_module_validate(const AOTModule *module, char *error_buf, | ||
uint32 error_buf_size); | ||
|
||
#endif /* _AOT_VALIDATOR_H_ */ |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe add an empty line at the end of the file