Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 1 | /* |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 2 | * Copyright (C) 2016 The Android Open Source Project |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include <dirent.h> |
| 18 | #include <err.h> |
| 19 | #include <limits.h> |
| 20 | #include <stdio.h> |
Josh Gao | d2ab9ff | 2017-07-28 12:53:36 -0700 | [diff] [blame] | 21 | #include <stdlib.h> |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 22 | #include <sys/stat.h> |
| 23 | #include <sys/types.h> |
| 24 | #include <unistd.h> |
| 25 | |
Josh Gao | 338cf12 | 2016-11-09 18:01:41 -0800 | [diff] [blame] | 26 | #if defined(__linux__) |
| 27 | #include <sched.h> |
| 28 | #endif |
| 29 | |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 30 | #include <atomic> |
Josh Gao | 338cf12 | 2016-11-09 18:01:41 -0800 | [diff] [blame] | 31 | #include <chrono> |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 32 | #include <functional> |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 33 | #include <iostream> |
| 34 | #include <map> |
| 35 | #include <memory> |
| 36 | #include <set> |
| 37 | #include <sstream> |
| 38 | #include <string> |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 39 | #include <string_view> |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 40 | #include <thread> |
| 41 | #include <unordered_map> |
| 42 | #include <vector> |
| 43 | |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 44 | #include <llvm/ADT/StringRef.h> |
| 45 | |
Josh Gao | b50b8c8 | 2017-04-27 17:22:52 -0700 | [diff] [blame] | 46 | #include <android-base/file.h> |
Josh Gao | 338cf12 | 2016-11-09 18:01:41 -0800 | [diff] [blame] | 47 | #include <android-base/macros.h> |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 48 | #include <android-base/parseint.h> |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 49 | #include <android-base/strings.h> |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 50 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 51 | #include "Arch.h" |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 52 | #include "DeclarationDatabase.h" |
Josh Gao | b5c4963 | 2016-11-08 22:21:31 -0800 | [diff] [blame] | 53 | #include "Driver.h" |
Josh Gao | f8592a3 | 2016-07-26 18:58:27 -0700 | [diff] [blame] | 54 | #include "Preprocessor.h" |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 55 | #include "SymbolDatabase.h" |
| 56 | #include "Utils.h" |
Josh Gao | 78b8a14 | 2016-11-09 01:00:41 -0800 | [diff] [blame] | 57 | #include "VFS.h" |
| 58 | |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 59 | #include "versioner.h" |
| 60 | |
Josh Gao | 338cf12 | 2016-11-09 18:01:41 -0800 | [diff] [blame] | 61 | using namespace std::chrono_literals; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 62 | using namespace std::string_literals; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 63 | |
Josh Gao | acc3d80 | 2016-11-09 18:22:44 -0800 | [diff] [blame] | 64 | bool strict; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 65 | bool verbose; |
Josh Gao | acc3d80 | 2016-11-09 18:22:44 -0800 | [diff] [blame] | 66 | bool add_include; |
Josh Gao | 338cf12 | 2016-11-09 18:01:41 -0800 | [diff] [blame] | 67 | |
| 68 | static int getCpuCount(); |
| 69 | static int max_thread_count = getCpuCount(); |
| 70 | |
| 71 | static int getCpuCount() { |
| 72 | #if defined(__linux__) |
| 73 | cpu_set_t cpu_set; |
| 74 | int rc = sched_getaffinity(getpid(), sizeof(cpu_set), &cpu_set); |
| 75 | if (rc != 0) { |
| 76 | err(1, "sched_getaffinity failed"); |
| 77 | } |
| 78 | return CPU_COUNT(&cpu_set); |
| 79 | #else |
| 80 | return 1; |
| 81 | #endif |
| 82 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 83 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 84 | namespace { |
| 85 | struct HeaderLocationInformation { |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 86 | std::string header_path; |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 87 | std::string dependency_dir; |
| 88 | // Absolute paths to ignore all children -- including subdirectories -- of. |
| 89 | std::unordered_set<std::string> ignored_directories; |
| 90 | }; |
| 91 | } |
| 92 | |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 93 | static bool is_dir(const std::string& path) { |
| 94 | struct stat st; |
| 95 | return stat(path.c_str(), &st) == 0 && S_ISDIR(st.st_mode); |
| 96 | } |
| 97 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 98 | static CompilationRequirements collectRequirements(const Arch& arch, |
| 99 | const HeaderLocationInformation& location) { |
| 100 | std::vector<std::string> headers = |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 101 | collectHeaders(location.header_path, location.ignored_directories); |
| 102 | std::vector<std::string> dependencies; |
| 103 | |
| 104 | if (is_dir(location.header_path)) { |
| 105 | dependencies.emplace_back(location.header_path); |
| 106 | } |
| 107 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 108 | if (!location.dependency_dir.empty()) { |
Yi Kong | ff6c8de | 2017-04-20 09:08:11 -0700 | [diff] [blame] | 109 | auto collect_children = [&dependencies](const std::string& dir_path) { |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 110 | DIR* dir = opendir(dir_path.c_str()); |
| 111 | if (!dir) { |
| 112 | err(1, "failed to open dependency directory '%s'", dir_path.c_str()); |
| 113 | } |
| 114 | |
| 115 | struct dirent* dent; |
| 116 | while ((dent = readdir(dir))) { |
| 117 | if (dent->d_name[0] == '.') { |
| 118 | continue; |
| 119 | } |
| 120 | |
| 121 | // TODO: Resolve symlinks. |
| 122 | std::string dependency = dir_path + "/" + dent->d_name; |
| 123 | |
| 124 | struct stat st; |
| 125 | if (stat(dependency.c_str(), &st) != 0) { |
| 126 | err(1, "failed to stat dependency '%s'", dependency.c_str()); |
| 127 | } |
| 128 | |
| 129 | if (!S_ISDIR(st.st_mode)) { |
| 130 | errx(1, "'%s' is not a directory", dependency.c_str()); |
| 131 | } |
| 132 | |
| 133 | dependencies.push_back(dependency); |
| 134 | } |
| 135 | |
| 136 | closedir(dir); |
| 137 | }; |
| 138 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 139 | collect_children(location.dependency_dir + "/common"); |
| 140 | collect_children(location.dependency_dir + "/" + to_string(arch)); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | auto new_end = std::remove_if(headers.begin(), headers.end(), [&arch](llvm::StringRef header) { |
| 144 | for (const auto& it : header_blacklist) { |
| 145 | if (it.second.find(arch) == it.second.end()) { |
| 146 | continue; |
| 147 | } |
| 148 | |
| 149 | if (header.endswith("/" + it.first)) { |
| 150 | return true; |
| 151 | } |
| 152 | } |
| 153 | return false; |
| 154 | }); |
| 155 | |
| 156 | headers.erase(new_end, headers.end()); |
| 157 | |
| 158 | CompilationRequirements result = { .headers = headers, .dependencies = dependencies }; |
| 159 | return result; |
| 160 | } |
| 161 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 162 | static std::set<CompilationType> generateCompilationTypes(const std::set<Arch> selected_architectures, |
| 163 | const std::set<int>& selected_levels) { |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 164 | std::set<CompilationType> result; |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 165 | for (const auto& arch : selected_architectures) { |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 166 | int min_api = arch_min_api[arch]; |
| 167 | for (int api_level : selected_levels) { |
| 168 | if (api_level < min_api) { |
| 169 | continue; |
| 170 | } |
Josh Gao | a77b3a9 | 2016-08-15 16:39:27 -0700 | [diff] [blame] | 171 | |
| 172 | for (int file_offset_bits : { 32, 64 }) { |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 173 | for (bool cpp : { true, false }) { |
| 174 | CompilationType type = { |
| 175 | .arch = arch, .cpp = cpp, .api_level = api_level, .file_offset_bits = file_offset_bits |
| 176 | }; |
| 177 | result.insert(type); |
| 178 | } |
Josh Gao | a77b3a9 | 2016-08-15 16:39:27 -0700 | [diff] [blame] | 179 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 180 | } |
| 181 | } |
| 182 | return result; |
| 183 | } |
| 184 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 185 | static std::unique_ptr<HeaderDatabase> compileHeaders(const std::set<CompilationType>& types, |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 186 | const HeaderLocationInformation& location) { |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 187 | if (types.empty()) { |
| 188 | errx(1, "compileHeaders received no CompilationTypes"); |
| 189 | } |
| 190 | |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 191 | auto vfs = createCommonVFS(location.header_path, location.dependency_dir, add_include); |
Josh Gao | 78b8a14 | 2016-11-09 01:00:41 -0800 | [diff] [blame] | 192 | |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 193 | size_t thread_count = max_thread_count; |
| 194 | std::vector<std::thread> threads; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 195 | |
| 196 | std::map<CompilationType, HeaderDatabase> header_databases; |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 197 | std::unordered_map<Arch, CompilationRequirements> requirements; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 198 | |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 199 | auto result = std::make_unique<HeaderDatabase>(); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 200 | for (const auto& type : types) { |
| 201 | if (requirements.count(type.arch) == 0) { |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 202 | requirements[type.arch] = collectRequirements(type.arch, location); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 203 | } |
| 204 | } |
| 205 | |
Josh Gao | 78b8a14 | 2016-11-09 01:00:41 -0800 | [diff] [blame] | 206 | initializeTargetCC1FlagCache(vfs, types, requirements); |
Josh Gao | b5c4963 | 2016-11-08 22:21:31 -0800 | [diff] [blame] | 207 | |
| 208 | std::vector<std::pair<CompilationType, const std::string&>> jobs; |
Josh Gao | 338cf12 | 2016-11-09 18:01:41 -0800 | [diff] [blame] | 209 | std::atomic<size_t> job_index(0); |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 210 | for (CompilationType type : types) { |
| 211 | CompilationRequirements& req = requirements[type.arch]; |
| 212 | for (const std::string& header : req.headers) { |
Josh Gao | b5c4963 | 2016-11-08 22:21:31 -0800 | [diff] [blame] | 213 | jobs.emplace_back(type, header); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 214 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Josh Gao | d2ab9ff | 2017-07-28 12:53:36 -0700 | [diff] [blame] | 217 | // Dup an empty file to stdin, so that we can use `clang -include a.h -` instead of `clang a.h`, |
| 218 | // since some warnings don't get generated in files that are compiled directly. |
| 219 | FILE* empty_file = tmpfile(); |
| 220 | if (!empty_file) { |
| 221 | err(1, "failed to create temporary file"); |
| 222 | } |
| 223 | |
| 224 | int empty_file_fd = fileno(empty_file); |
| 225 | if (empty_file_fd == -1) { |
| 226 | errx(1, "fileno failed on tmpfile"); |
| 227 | } |
| 228 | |
| 229 | dup2(empty_file_fd, STDIN_FILENO); |
| 230 | fclose(empty_file); |
| 231 | |
Josh Gao | b5c4963 | 2016-11-08 22:21:31 -0800 | [diff] [blame] | 232 | thread_count = std::min(thread_count, jobs.size()); |
| 233 | |
| 234 | if (thread_count == 1) { |
| 235 | for (const auto& job : jobs) { |
Josh Gao | 78b8a14 | 2016-11-09 01:00:41 -0800 | [diff] [blame] | 236 | compileHeader(vfs, result.get(), job.first, job.second); |
Josh Gao | b5c4963 | 2016-11-08 22:21:31 -0800 | [diff] [blame] | 237 | } |
| 238 | } else { |
| 239 | // Spawn threads. |
| 240 | for (size_t i = 0; i < thread_count; ++i) { |
Yi Kong | ff6c8de | 2017-04-20 09:08:11 -0700 | [diff] [blame] | 241 | threads.emplace_back([&jobs, &job_index, &result, vfs]() { |
Josh Gao | 338cf12 | 2016-11-09 18:01:41 -0800 | [diff] [blame] | 242 | while (true) { |
| 243 | size_t idx = job_index++; |
| 244 | if (idx >= jobs.size()) { |
| 245 | return; |
| 246 | } |
| 247 | |
| 248 | const auto& job = jobs[idx]; |
Josh Gao | 78b8a14 | 2016-11-09 01:00:41 -0800 | [diff] [blame] | 249 | compileHeader(vfs, result.get(), job.first, job.second); |
Josh Gao | b5c4963 | 2016-11-08 22:21:31 -0800 | [diff] [blame] | 250 | } |
| 251 | }); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 252 | } |
| 253 | |
Josh Gao | b5c4963 | 2016-11-08 22:21:31 -0800 | [diff] [blame] | 254 | // Reap them. |
| 255 | for (auto& thread : threads) { |
| 256 | thread.join(); |
| 257 | } |
| 258 | threads.clear(); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 261 | return result; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 262 | } |
| 263 | |
Josh Gao | 1a176de | 2016-11-04 13:15:11 -0700 | [diff] [blame] | 264 | static std::set<CompilationType> getCompilationTypes(const Declaration* decl) { |
| 265 | std::set<CompilationType> result; |
| 266 | for (const auto& it : decl->availability) { |
| 267 | result.insert(it.first); |
| 268 | } |
| 269 | return result; |
| 270 | } |
| 271 | |
| 272 | template<typename T> |
| 273 | static std::vector<T> Intersection(const std::set<T>& a, const std::set<T>& b) { |
| 274 | std::vector<T> intersection; |
| 275 | std::set_intersection(a.begin(), a.end(), b.begin(), b.end(), std::back_inserter(intersection)); |
| 276 | return intersection; |
| 277 | } |
| 278 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 279 | // Perform a sanity check on a symbol's declarations, enforcing the following invariants: |
| 280 | // 1. At most one inline definition of the function exists. |
| 281 | // 2. All of the availability declarations for a symbol are compatible. |
| 282 | // If a function is declared as an inline before a certain version, the inline definition |
| 283 | // should have no version tag. |
| 284 | // 3. Each availability type must only be present globally or on a per-arch basis. |
| 285 | // (e.g. __INTRODUCED_IN_ARM(9) __INTRODUCED_IN_X86(10) __DEPRECATED_IN(11) is fine, |
| 286 | // but not __INTRODUCED_IN(9) __INTRODUCED_IN_X86(10)) |
| 287 | static bool checkSymbol(const Symbol& symbol) { |
| 288 | std::string cwd = getWorkingDir() + "/"; |
| 289 | |
Josh Gao | 1a176de | 2016-11-04 13:15:11 -0700 | [diff] [blame] | 290 | std::unordered_map<const Declaration*, std::set<CompilationType>> inline_definitions; |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 291 | for (const auto& decl_it : symbol.declarations) { |
| 292 | const Declaration* decl = &decl_it.second; |
| 293 | if (decl->is_definition) { |
Josh Gao | 1a176de | 2016-11-04 13:15:11 -0700 | [diff] [blame] | 294 | std::set<CompilationType> compilation_types = getCompilationTypes(decl); |
| 295 | for (const auto& inline_def_it : inline_definitions) { |
| 296 | auto intersection = Intersection(compilation_types, inline_def_it.second); |
| 297 | if (!intersection.empty()) { |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 298 | fprintf(stderr, "versioner: conflicting inline definitions for symbol %s:\n", |
| 299 | symbol.name.c_str()); |
Josh Gao | 1a176de | 2016-11-04 13:15:11 -0700 | [diff] [blame] | 300 | fprintf(stderr, " declarations visible in: %s\n", Join(intersection, ", ").c_str()); |
| 301 | decl->dump(cwd, stderr, 4); |
| 302 | inline_def_it.first->dump(cwd, stderr, 4); |
| 303 | return false; |
| 304 | } |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 305 | } |
| 306 | |
Josh Gao | 1a176de | 2016-11-04 13:15:11 -0700 | [diff] [blame] | 307 | inline_definitions[decl] = std::move(compilation_types); |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | DeclarationAvailability availability; |
| 311 | if (!decl->calculateAvailability(&availability)) { |
| 312 | fprintf(stderr, "versioner: failed to calculate availability for declaration:\n"); |
Josh Gao | 566735d | 2016-08-02 15:07:32 -0700 | [diff] [blame] | 313 | decl->dump(cwd, stderr, 2); |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 314 | return false; |
| 315 | } |
| 316 | |
| 317 | if (decl->is_definition && !availability.empty()) { |
| 318 | fprintf(stderr, "versioner: inline definition has non-empty versioning information:\n"); |
Josh Gao | 566735d | 2016-08-02 15:07:32 -0700 | [diff] [blame] | 319 | decl->dump(cwd, stderr, 2); |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 320 | return false; |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | DeclarationAvailability availability; |
| 325 | if (!symbol.calculateAvailability(&availability)) { |
| 326 | fprintf(stderr, "versioner: inconsistent availability for symbol '%s'\n", symbol.name.c_str()); |
| 327 | symbol.dump(cwd); |
| 328 | return false; |
| 329 | } |
| 330 | |
| 331 | // TODO: Check invariant #3. |
| 332 | return true; |
| 333 | } |
| 334 | |
| 335 | static bool sanityCheck(const HeaderDatabase* database) { |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 336 | bool error = false; |
Josh Gao | 958f3b3 | 2016-06-03 13:44:00 -0700 | [diff] [blame] | 337 | std::string cwd = getWorkingDir() + "/"; |
| 338 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 339 | for (const auto& symbol_it : database->symbols) { |
| 340 | if (!checkSymbol(symbol_it.second)) { |
| 341 | error = true; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 342 | } |
| 343 | } |
| 344 | return !error; |
| 345 | } |
| 346 | |
| 347 | // Check that our symbol availability declarations match the actual NDK |
| 348 | // platform symbol availability. |
| 349 | static bool checkVersions(const std::set<CompilationType>& types, |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 350 | const HeaderDatabase* header_database, |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 351 | const NdkSymbolDatabase& symbol_database) { |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 352 | std::string cwd = getWorkingDir() + "/"; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 353 | bool failed = false; |
| 354 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 355 | std::map<Arch, std::set<CompilationType>> arch_types; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 356 | for (const CompilationType& type : types) { |
| 357 | arch_types[type.arch].insert(type); |
| 358 | } |
| 359 | |
Josh Gao | d67dbf0 | 2016-06-02 15:21:14 -0700 | [diff] [blame] | 360 | std::set<std::string> completely_unavailable; |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 361 | std::map<std::string, std::set<CompilationType>> missing_availability; |
| 362 | std::map<std::string, std::set<CompilationType>> extra_availability; |
Josh Gao | d67dbf0 | 2016-06-02 15:21:14 -0700 | [diff] [blame] | 363 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 364 | for (const auto& symbol_it : header_database->symbols) { |
| 365 | const auto& symbol_name = symbol_it.first; |
| 366 | DeclarationAvailability symbol_availability; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 367 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 368 | if (!symbol_it.second.calculateAvailability(&symbol_availability)) { |
| 369 | errx(1, "failed to calculate symbol availability"); |
| 370 | } |
| 371 | |
| 372 | const auto platform_availability_it = symbol_database.find(symbol_name); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 373 | if (platform_availability_it == symbol_database.end()) { |
Josh Gao | d67dbf0 | 2016-06-02 15:21:14 -0700 | [diff] [blame] | 374 | completely_unavailable.insert(symbol_name); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 375 | continue; |
| 376 | } |
| 377 | |
| 378 | const auto& platform_availability = platform_availability_it->second; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 379 | |
| 380 | for (const CompilationType& type : types) { |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 381 | bool should_be_available = true; |
| 382 | const auto& global_availability = symbol_availability.global_availability; |
| 383 | const auto& arch_availability = symbol_availability.arch_availability[type.arch]; |
| 384 | if (global_availability.introduced != 0 && global_availability.introduced > type.api_level) { |
| 385 | should_be_available = false; |
| 386 | } |
| 387 | |
| 388 | if (arch_availability.introduced != 0 && arch_availability.introduced > type.api_level) { |
| 389 | should_be_available = false; |
| 390 | } |
| 391 | |
| 392 | if (global_availability.obsoleted != 0 && global_availability.obsoleted <= type.api_level) { |
| 393 | should_be_available = false; |
| 394 | } |
| 395 | |
| 396 | if (arch_availability.obsoleted != 0 && arch_availability.obsoleted <= type.api_level) { |
| 397 | should_be_available = false; |
| 398 | } |
| 399 | |
| 400 | if (arch_availability.future) { |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 401 | continue; |
| 402 | } |
| 403 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 404 | // The function declaration might be (validly) missing for the given CompilationType. |
| 405 | if (!symbol_it.second.hasDeclaration(type)) { |
| 406 | should_be_available = false; |
| 407 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 408 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 409 | bool is_available = platform_availability.count(type); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 410 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 411 | if (should_be_available != is_available) { |
| 412 | if (is_available) { |
| 413 | extra_availability[symbol_name].insert(type); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 414 | } else { |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 415 | missing_availability[symbol_name].insert(type); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 416 | } |
| 417 | } |
| 418 | } |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 419 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 420 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 421 | for (const auto& it : symbol_database) { |
| 422 | const std::string& symbol_name = it.first; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 423 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 424 | bool symbol_error = false; |
Josh Gao | 0a284f5 | 2016-12-15 13:56:00 -0800 | [diff] [blame] | 425 | if (auto missing_it = missing_availability.find(symbol_name); |
| 426 | missing_it != missing_availability.end()) { |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 427 | printf("%s: declaration marked available but symbol missing in [%s]\n", symbol_name.c_str(), |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 428 | Join(missing_it->second, ", ").c_str()); |
| 429 | symbol_error = true; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 430 | failed = true; |
| 431 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 432 | |
Josh Gao | acc3d80 | 2016-11-09 18:22:44 -0800 | [diff] [blame] | 433 | if (strict) { |
Josh Gao | 0a284f5 | 2016-12-15 13:56:00 -0800 | [diff] [blame] | 434 | if (auto extra_it = extra_availability.find(symbol_name); |
| 435 | extra_it != extra_availability.end()) { |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 436 | printf("%s: declaration marked unavailable but symbol available in [%s]\n", |
| 437 | symbol_name.c_str(), Join(extra_it->second, ", ").c_str()); |
| 438 | symbol_error = true; |
| 439 | failed = true; |
Josh Gao | 958f3b3 | 2016-06-03 13:44:00 -0700 | [diff] [blame] | 440 | } |
| 441 | } |
| 442 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 443 | if (symbol_error) { |
Josh Gao | 0a284f5 | 2016-12-15 13:56:00 -0800 | [diff] [blame] | 444 | if (auto symbol_it = header_database->symbols.find(symbol_name); |
| 445 | symbol_it != header_database->symbols.end()) { |
| 446 | symbol_it->second.dump(cwd); |
| 447 | } else { |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 448 | errx(1, "failed to find symbol in header database"); |
| 449 | } |
Josh Gao | d67dbf0 | 2016-06-02 15:21:14 -0700 | [diff] [blame] | 450 | } |
Josh Gao | d67dbf0 | 2016-06-02 15:21:14 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 453 | // TODO: Verify that function/variable declarations are actually function/variable symbols. |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 454 | return !failed; |
| 455 | } |
| 456 | |
Josh Gao | 62aaf8f | 2016-06-02 14:27:21 -0700 | [diff] [blame] | 457 | static void usage(bool help = false) { |
| 458 | fprintf(stderr, "Usage: versioner [OPTION]... [HEADER_PATH] [DEPS_PATH]\n"); |
| 459 | if (!help) { |
| 460 | printf("Try 'versioner -h' for more information.\n"); |
| 461 | exit(1); |
| 462 | } else { |
| 463 | fprintf(stderr, "Version headers at HEADER_PATH, with DEPS_PATH/ARCH/* on the include path\n"); |
Josh Gao | 9b5af7a | 2016-06-02 14:29:13 -0700 | [diff] [blame] | 464 | fprintf(stderr, "Autodetects paths if HEADER_PATH and DEPS_PATH are not specified\n"); |
Josh Gao | 62aaf8f | 2016-06-02 14:27:21 -0700 | [diff] [blame] | 465 | fprintf(stderr, "\n"); |
| 466 | fprintf(stderr, "Target specification (defaults to all):\n"); |
| 467 | fprintf(stderr, " -a API_LEVEL\tbuild with specified API level (can be repeated)\n"); |
Josh Gao | 35aa213 | 2017-10-24 17:05:49 -0700 | [diff] [blame] | 468 | fprintf(stderr, " \t\tdefaults to %s\n", Join(default_levels).c_str()); |
Josh Gao | 62aaf8f | 2016-06-02 14:27:21 -0700 | [diff] [blame] | 469 | fprintf(stderr, " -r ARCH\tbuild with specified architecture (can be repeated)\n"); |
| 470 | fprintf(stderr, " \t\tvalid architectures are %s\n", Join(supported_archs).c_str()); |
| 471 | fprintf(stderr, "\n"); |
| 472 | fprintf(stderr, "Validation:\n"); |
| 473 | fprintf(stderr, " -p PATH\tcompare against NDK platform at PATH\n"); |
Josh Gao | acc3d80 | 2016-11-09 18:22:44 -0800 | [diff] [blame] | 474 | fprintf(stderr, " -s\t\tenable strict warnings\n"); |
Josh Gao | 62aaf8f | 2016-06-02 14:27:21 -0700 | [diff] [blame] | 475 | fprintf(stderr, "\n"); |
Josh Gao | f8592a3 | 2016-07-26 18:58:27 -0700 | [diff] [blame] | 476 | fprintf(stderr, "Preprocessing:\n"); |
| 477 | fprintf(stderr, " -o PATH\tpreprocess header files and emit them at PATH\n"); |
Josh Gao | d744a9b | 2017-04-03 11:24:48 -0700 | [diff] [blame] | 478 | fprintf(stderr, " -f\t\tpreprocess header files even if validation fails\n"); |
Josh Gao | f8592a3 | 2016-07-26 18:58:27 -0700 | [diff] [blame] | 479 | fprintf(stderr, "\n"); |
Josh Gao | 62aaf8f | 2016-06-02 14:27:21 -0700 | [diff] [blame] | 480 | fprintf(stderr, "Miscellaneous:\n"); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 481 | fprintf(stderr, " -F\t\tdo not ignore FORTIFY headers by default\n"); |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 482 | fprintf(stderr, " -d\t\tdump function availability\n"); |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 483 | fprintf(stderr, " -j THREADS\tmaximum number of threads to use\n"); |
Josh Gao | acc3d80 | 2016-11-09 18:22:44 -0800 | [diff] [blame] | 484 | fprintf(stderr, " -v\t\tenable verbose logging\n"); |
Josh Gao | 62aaf8f | 2016-06-02 14:27:21 -0700 | [diff] [blame] | 485 | fprintf(stderr, " -h\t\tdisplay this message\n"); |
| 486 | exit(0); |
| 487 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 488 | } |
| 489 | |
Andreas Gampe | d10d3ee | 2017-04-28 19:32:13 -0700 | [diff] [blame] | 490 | // versioner uses a prebuilt version of clang, which is not up-to-date wrt/ |
| 491 | // container annotations. So disable container overflow checking. b/37775238 |
| 492 | extern "C" const char* __asan_default_options() { |
| 493 | return "detect_container_overflow=0"; |
| 494 | } |
| 495 | |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 496 | int main(int argc, char** argv) { |
| 497 | std::string cwd = getWorkingDir() + "/"; |
| 498 | bool default_args = true; |
| 499 | std::string platform_dir; |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 500 | std::set<Arch> selected_architectures; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 501 | std::set<int> selected_levels; |
Josh Gao | f8592a3 | 2016-07-26 18:58:27 -0700 | [diff] [blame] | 502 | std::string preprocessor_output_path; |
| 503 | bool force = false; |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 504 | bool dump = false; |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 505 | bool ignore_fortify_headers = true; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 506 | |
| 507 | int c; |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 508 | while ((c = getopt(argc, argv, "a:r:p:so:fdj:vhFi")) != -1) { |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 509 | default_args = false; |
| 510 | switch (c) { |
| 511 | case 'a': { |
| 512 | char* end; |
| 513 | int api_level = strtol(optarg, &end, 10); |
| 514 | if (end == optarg || strlen(end) > 0) { |
| 515 | usage(); |
| 516 | } |
| 517 | |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 518 | selected_levels.insert(api_level); |
| 519 | break; |
| 520 | } |
| 521 | |
| 522 | case 'r': { |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 523 | Arch arch = arch_from_string(optarg); |
| 524 | selected_architectures.insert(arch); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 525 | break; |
| 526 | } |
| 527 | |
| 528 | case 'p': { |
| 529 | if (!platform_dir.empty()) { |
| 530 | usage(); |
| 531 | } |
| 532 | |
| 533 | platform_dir = optarg; |
| 534 | |
Josh Gao | f8592a3 | 2016-07-26 18:58:27 -0700 | [diff] [blame] | 535 | if (platform_dir.empty()) { |
| 536 | usage(); |
| 537 | } |
| 538 | |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 539 | struct stat st; |
| 540 | if (stat(platform_dir.c_str(), &st) != 0) { |
| 541 | err(1, "failed to stat platform directory '%s'", platform_dir.c_str()); |
| 542 | } |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 543 | if (!S_ISDIR(st.st_mode) && !S_ISREG(st.st_mode)) { |
| 544 | errx(1, "'%s' is not a file or directory", optarg); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 545 | } |
| 546 | break; |
| 547 | } |
| 548 | |
Josh Gao | acc3d80 | 2016-11-09 18:22:44 -0800 | [diff] [blame] | 549 | case 's': |
| 550 | strict = true; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 551 | break; |
| 552 | |
Josh Gao | f8592a3 | 2016-07-26 18:58:27 -0700 | [diff] [blame] | 553 | case 'o': |
| 554 | if (!preprocessor_output_path.empty()) { |
| 555 | usage(); |
| 556 | } |
| 557 | preprocessor_output_path = optarg; |
| 558 | if (preprocessor_output_path.empty()) { |
| 559 | usage(); |
| 560 | } |
| 561 | break; |
| 562 | |
| 563 | case 'f': |
| 564 | force = true; |
| 565 | break; |
| 566 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 567 | case 'd': |
| 568 | dump = true; |
| 569 | break; |
| 570 | |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 571 | case 'j': |
| 572 | if (!android::base::ParseInt<int>(optarg, &max_thread_count, 1)) { |
| 573 | usage(); |
| 574 | } |
| 575 | break; |
| 576 | |
Josh Gao | acc3d80 | 2016-11-09 18:22:44 -0800 | [diff] [blame] | 577 | case 'v': |
| 578 | verbose = true; |
| 579 | break; |
| 580 | |
Josh Gao | 62aaf8f | 2016-06-02 14:27:21 -0700 | [diff] [blame] | 581 | case 'h': |
| 582 | usage(true); |
| 583 | break; |
| 584 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 585 | case 'i': |
| 586 | // Secret option for tests to -include <android/versioning.h>. |
| 587 | add_include = true; |
| 588 | break; |
| 589 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 590 | case 'F': |
| 591 | ignore_fortify_headers = false; |
| 592 | break; |
| 593 | |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 594 | default: |
| 595 | usage(); |
| 596 | break; |
| 597 | } |
| 598 | } |
| 599 | |
Josh Gao | 9b5af7a | 2016-06-02 14:29:13 -0700 | [diff] [blame] | 600 | if (argc - optind > 2 || optind > argc) { |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 601 | usage(); |
| 602 | } |
| 603 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 604 | HeaderLocationInformation location; |
Josh Gao | 9b5af7a | 2016-06-02 14:29:13 -0700 | [diff] [blame] | 605 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 606 | const char* top = getenv("ANDROID_BUILD_TOP"); |
| 607 | if (!top && (optind == argc || add_include)) { |
| 608 | fprintf(stderr, "versioner: failed to autodetect bionic paths. Is ANDROID_BUILD_TOP set?\n"); |
| 609 | usage(); |
| 610 | } |
| 611 | |
Josh Gao | 9b5af7a | 2016-06-02 14:29:13 -0700 | [diff] [blame] | 612 | if (optind == argc) { |
| 613 | // Neither HEADER_PATH nor DEPS_PATH were specified, so try to figure them out. |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 614 | std::string versioner_dir = to_string(top) + "/bionic/tools/versioner"; |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 615 | location.header_path = versioner_dir + "/current"; |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 616 | location.dependency_dir = versioner_dir + "/dependencies"; |
Josh Gao | 9b5af7a | 2016-06-02 14:29:13 -0700 | [diff] [blame] | 617 | if (platform_dir.empty()) { |
| 618 | platform_dir = versioner_dir + "/platforms"; |
| 619 | } |
| 620 | } else { |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 621 | if (!android::base::Realpath(argv[optind], &location.header_path)) { |
Josh Gao | b50b8c8 | 2017-04-27 17:22:52 -0700 | [diff] [blame] | 622 | err(1, "failed to get realpath for path '%s'", argv[optind]); |
| 623 | } |
Josh Gao | 9b5af7a | 2016-06-02 14:29:13 -0700 | [diff] [blame] | 624 | |
| 625 | if (argc - optind == 2) { |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 626 | location.dependency_dir = argv[optind + 1]; |
Josh Gao | 9b5af7a | 2016-06-02 14:29:13 -0700 | [diff] [blame] | 627 | } |
| 628 | } |
| 629 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 630 | // Every file that lives in bits/fortify is logically a part of a header outside of bits/fortify. |
| 631 | // This makes the files there impossible to build on their own. |
| 632 | if (ignore_fortify_headers) { |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 633 | std::string fortify_path = location.header_path; |
| 634 | if (!android::base::EndsWith(location.header_path, "/")) { |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 635 | fortify_path += '/'; |
| 636 | } |
| 637 | fortify_path += "bits/fortify"; |
| 638 | location.ignored_directories.insert(std::move(fortify_path)); |
| 639 | } |
| 640 | |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 641 | if (selected_levels.empty()) { |
Josh Gao | 35aa213 | 2017-10-24 17:05:49 -0700 | [diff] [blame] | 642 | selected_levels = default_levels; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | if (selected_architectures.empty()) { |
| 646 | selected_architectures = supported_archs; |
| 647 | } |
| 648 | |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 649 | |
| 650 | struct stat st; |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 651 | if (const char *path = location.header_path.c_str(); stat(path, &st) != 0) { |
| 652 | err(1, "failed to stat '%s'", path); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | std::set<CompilationType> compilation_types; |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 656 | NdkSymbolDatabase symbol_database; |
| 657 | |
| 658 | compilation_types = generateCompilationTypes(selected_architectures, selected_levels); |
| 659 | |
| 660 | // Do this before compiling so that we can early exit if the platforms don't match what we |
| 661 | // expect. |
| 662 | if (!platform_dir.empty()) { |
| 663 | symbol_database = parsePlatforms(compilation_types, platform_dir); |
| 664 | } |
| 665 | |
Josh Gao | 338cf12 | 2016-11-09 18:01:41 -0800 | [diff] [blame] | 666 | auto start = std::chrono::high_resolution_clock::now(); |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 667 | std::unique_ptr<HeaderDatabase> declaration_database = |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 668 | compileHeaders(compilation_types, location); |
Josh Gao | 338cf12 | 2016-11-09 18:01:41 -0800 | [diff] [blame] | 669 | auto end = std::chrono::high_resolution_clock::now(); |
| 670 | |
| 671 | if (verbose) { |
| 672 | auto diff = (end - start) / 1.0ms; |
| 673 | printf("Compiled headers for %zu targets in %0.2LFms\n", compilation_types.size(), diff); |
| 674 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 675 | |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 676 | bool failed = false; |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 677 | if (dump) { |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 678 | declaration_database->dump(location.header_path + "/"); |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 679 | } else { |
| 680 | if (!sanityCheck(declaration_database.get())) { |
| 681 | printf("versioner: sanity check failed\n"); |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 682 | failed = true; |
| 683 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 684 | |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 685 | if (!platform_dir.empty()) { |
| 686 | if (!checkVersions(compilation_types, declaration_database.get(), symbol_database)) { |
| 687 | printf("versioner: version check failed\n"); |
| 688 | failed = true; |
| 689 | } |
| 690 | } |
| 691 | } |
Josh Gao | f8592a3 | 2016-07-26 18:58:27 -0700 | [diff] [blame] | 692 | |
| 693 | if (!preprocessor_output_path.empty() && (force || !failed)) { |
Josh Gao | ab25d0b | 2017-08-10 10:50:33 -0700 | [diff] [blame^] | 694 | failed = !preprocessHeaders(preprocessor_output_path, location.header_path, |
| 695 | declaration_database.get()); |
Josh Gao | f8592a3 | 2016-07-26 18:58:27 -0700 | [diff] [blame] | 696 | } |
Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame] | 697 | return failed; |
| 698 | } |