diff options
author | Owen Avery <powerboat9.gamer@gmail.com> | 2023-05-28 09:44:39 -0400 |
---|---|---|
committer | CohenArthur <arthur.cohen@embecosm.com> | 2023-06-07 11:23:48 +0000 |
commit | ab44003c26a5dc5c92145d491e51b7582d51a4f6 (patch) | |
tree | d164f6915e0aeeed1368beb0bfa3297772af08c9 /gcc/rust/ast/rust-ast.cc | |
parent | 25b40ba2e03c4ff030adb7ce8ce00e5315c46cb3 (diff) | |
download | gcc-ab44003c26a5dc5c92145d491e51b7582d51a4f6.zip gcc-ab44003c26a5dc5c92145d491e51b7582d51a4f6.tar.gz gcc-ab44003c26a5dc5c92145d491e51b7582d51a4f6.tar.bz2 |
Fix non-mod-rs files' external module loading paths
gcc/rust/ChangeLog:
* Make-lang.in: Add "rust-dir-owner.o".
* ast/rust-ast.cc: Include "rust-dir-owner.h".
(Module::process_file_path):
Handle non-mod-rs external file modules properly.
* parse/rust-parse-impl.h: Include "rust-dir-owner.h".
(Parser::parse_module):
Handle non-mod-rs external file modules properly.
* util/rust-dir-owner.cc: New file.
* util/rust-dir-owner.h: New file.
gcc/testsuite/ChangeLog:
* rust/compile/test_mod.rs: Moved to...
* rust/compile/issue-1089/test_mod.rs: ...here.
* rust/compile/mod_missing_middle.rs: Fix paths.
* rust/compile/missing_middle/both_path.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/both_path.rs: ...here.
* rust/compile/missing_middle/explicit.not.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/explicit.not.rs: ...here.
* rust/compile/missing_middle/other.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/explicit.not/other.rs: ...here.
* rust/compile/missing_middle/inner_path.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/inner_path.rs: ...here.
* rust/compile/missing_middle/outer_path.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/outer_path.rs: ...here.
* rust/compile/missing_middle/sub/mod.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/sub/mod.rs: ...here.
* rust/compile/torture/modules/mod.rs: Moved to...
* rust/compile/torture/extern_mod1/modules/mod.rs: ...here.
* rust/execute/torture/modules/mod.rs: Moved to...
* rust/execute/torture/extern_mod4/modules/mod.rs: ...here.
Signed-off-by: Owen Avery <powerboat9.gamer@gmail.com>
Diffstat (limited to 'gcc/rust/ast/rust-ast.cc')
-rw-r--r-- | gcc/rust/ast/rust-ast.cc | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/gcc/rust/ast/rust-ast.cc b/gcc/rust/ast/rust-ast.cc index 36f1a0c..dd7aaa6 100644 --- a/gcc/rust/ast/rust-ast.cc +++ b/gcc/rust/ast/rust-ast.cc @@ -26,6 +26,7 @@ along with GCC; see the file COPYING3. If not see #include "rust-lex.h" #include "rust-parse.h" #include "rust-operators.h" +#include "rust-dir-owner.h" /* Compilation unit used for various AST-related functions that would make * the headers too long if they were defined inline and don't receive any @@ -3310,21 +3311,37 @@ Module::process_file_path () // This corresponds to the path of the file 'including' the module. So the // file that contains the 'mod <file>;' directive - std::string including_fname (outer_filename); + std::string including_fpath (outer_filename); std::string expected_file_path = module_name + ".rs"; std::string expected_dir_path = "mod.rs"; - auto dir_slash_pos = including_fname.rfind (file_separator); + auto dir_slash_pos = including_fpath.rfind (file_separator); std::string current_directory_name; + std::string including_fname; - // If we haven't found a file_separator, then we have to look for files in the - // current directory ('.') + // If we haven't found a file_separator, then we may have to look for files in + // the current directory ('.') if (dir_slash_pos == std::string::npos) - current_directory_name = std::string (".") + file_separator; + { + including_fname = std::move (including_fpath); + including_fpath = std::string (".") + file_separator + including_fname; + dir_slash_pos = 1; + } else - current_directory_name - = including_fname.substr (0, dir_slash_pos) + file_separator; + { + including_fname = including_fpath.substr (dir_slash_pos + 1); + } + + current_directory_name + = including_fpath.substr (0, dir_slash_pos) + file_separator; + + auto path_string = filename_from_path_attribute (get_outer_attrs ()); + + std::string including_subdir; + if (path_string.empty () && module_scope.empty () + && get_file_subdir (including_fname, including_subdir)) + current_directory_name += including_subdir + file_separator; // Handle inline module declarations adding path components. for (auto const &name : module_scope) @@ -3333,7 +3350,6 @@ Module::process_file_path () current_directory_name.append (file_separator); } - auto path_string = filename_from_path_attribute (get_outer_attrs ()); if (!path_string.empty ()) { module_file = current_directory_name + path_string; |