-
-
Notifications
You must be signed in to change notification settings - Fork 363
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
Refactoring rizin type system: introduce type scope. #4464
Draft
rockrid3r
wants to merge
3
commits into
rizinorg:dev
Choose a base branch
from
rockrid3r:fix-struct-name-collision
base: dev
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.
Draft
Changes from all commits
Commits
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ typedef struct rz_type_parser_t RzTypeParser; | |
|
||
typedef struct rz_type_db_t { | ||
void *user; | ||
HtSP /*<char *, RzBaseType *>*/ *types; //< name -> base type | ||
HtSP /*<char *, RzPVector<RzBaseType *>*>*/ *types; //< name -> vector<base type> | ||
HtSS /*<char *, char *>*/ *formats; //< name -> `pf` format | ||
HtSP /*<char *, RzCallable *>*/ *callables; //< name -> RzCallable (function type) | ||
RzTypeTarget *target; | ||
|
@@ -39,6 +39,11 @@ typedef struct rz_type_db_t { | |
RzIOBind iob; // for RzIO in formats | ||
} RzTypeDB; | ||
|
||
|
||
typedef struct rz_type_scope_t { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add Doxygen |
||
char *cu_name; | ||
} RzTypeScope; | ||
|
||
// All types in RzTypeDB module are either concrete, | ||
// "base" types that are types already having the | ||
// concrete size and memory layout | ||
|
@@ -114,6 +119,7 @@ typedef struct rz_base_type_t { | |
ut64 size; // size of the whole type in bits | ||
RzBaseTypeKind kind; | ||
RzTypeAttribute attrs; | ||
RzTypeScope scope; | ||
union { | ||
RzBaseTypeStruct struct_data; | ||
RzBaseTypeEnum enum_data; | ||
|
@@ -267,14 +273,15 @@ RZ_API bool rz_base_type_clone_into( | |
RZ_NONNULL RZ_BORROW RZ_IN RzBaseType *src); | ||
RZ_API RZ_OWN RzBaseType *rz_base_type_clone(RZ_NULLABLE RZ_BORROW RzBaseType *b); | ||
RZ_API void rz_type_base_type_free(RzBaseType *type); | ||
RZ_API bool rz_type_base_type_same_scope(const RzBaseType *a, const RzBaseType *b); | ||
RZ_API RZ_OWN RzBaseType *rz_type_base_type_new(RzBaseTypeKind kind); | ||
RZ_API RZ_BORROW const char *rz_type_base_type_kind_as_string(RzBaseTypeKind kind); | ||
|
||
RZ_API void rz_type_base_enum_case_free(void *e, void *user); | ||
RZ_API void rz_type_base_struct_member_free(void *e, void *user); | ||
RZ_API void rz_type_base_union_member_free(void *e, void *user); | ||
|
||
RZ_API RZ_BORROW RzBaseType *rz_type_db_get_base_type(const RzTypeDB *typedb, RZ_NONNULL const char *name); | ||
RZ_API RZ_BORROW RzPVector /*<RzBaseType*>*/ *rz_type_db_get_base_type(const RzTypeDB *typedb, RZ_NONNULL const char *name); | ||
RZ_API RZ_BORROW RzBaseType *rz_type_db_get_compound_type(const RzTypeDB *typedb, RZ_NONNULL const char *name); | ||
RZ_API bool rz_type_db_save_base_type(const RzTypeDB *typedb, RzBaseType *type); | ||
RZ_API bool rz_type_db_update_base_type(const RzTypeDB *typedb, RzBaseType *type); | ||
|
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.
It's a bit awkward here.
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.
Kind of. But there is no need to have it until the rizin shuts down.
dwarf_process.c
.typedb->types
.so it just takes RAM for nothing.
The same for
debug_info->base_type_by_offset
anddebug_info->base_types_by_name
.