LLVM 24.0.0git
FileSystem.h
Go to the documentation of this file.
1//===- llvm/Support/FileSystem.h - File System OS Concept -------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file declares the llvm::sys::fs namespace. It is designed after
10// TR2/boost filesystem (v3), but modified to remove exception handling and the
11// path class.
12//
13// All functions return an error_code and their actual work via the last out
14// argument. The out argument is defined if and only if errc::success is
15// returned. A function may return any error code in the generic or system
16// category. However, they shall be equivalent to any error conditions listed
17// in each functions respective documentation if the condition applies. [ note:
18// this does not guarantee that error_code will be in the set of explicitly
19// listed codes, but it does guarantee that if any of the explicitly listed
20// errors occur, the correct error_code will be used ]. All functions may
21// return errc::not_enough_memory if there is not enough memory to complete the
22// operation.
23//
24//===----------------------------------------------------------------------===//
25
26#ifndef LLVM_SUPPORT_FILESYSTEM_H
27#define LLVM_SUPPORT_FILESYSTEM_H
28
30#include "llvm/ADT/StringRef.h"
31#include "llvm/ADT/Twine.h"
32#include "llvm/Config/llvm-config.h"
33#include "llvm/Support/Chrono.h"
35#include "llvm/Support/Error.h"
38#include "llvm/Support/File.h"
40#include "llvm/Support/MD5.h"
41#include <cassert>
42#include <cstdint>
43#include <ctime>
44#include <memory>
45#include <string>
46#include <system_error>
47#include <vector>
48
49namespace llvm {
50namespace sys {
51namespace fs {
52
53/// An enumeration for the file system's view of the type.
66
67/// space_info - Self explanatory.
73
98
99// Helper functions so that you can use & and | to manipulate perms bits:
101 return static_cast<perms>(static_cast<unsigned short>(l) |
102 static_cast<unsigned short>(r));
103}
105 return static_cast<perms>(static_cast<unsigned short>(l) &
106 static_cast<unsigned short>(r));
107}
108inline perms &operator|=(perms &l, perms r) {
109 l = l | r;
110 return l;
111}
112inline perms &operator&=(perms &l, perms r) {
113 l = l & r;
114 return l;
115}
117 // Avoid UB by explicitly truncating the (unsigned) ~ result.
118 return static_cast<perms>(
119 static_cast<unsigned short>(~static_cast<unsigned short>(x)));
120}
121
122/// Represents the result of a call to directory_iterator::status(). This is a
123/// subset of the information returned by a regular sys::fs::status() call, and
124/// represents the information provided by Windows FileFirstFile/FindNextFile.
126protected:
127 #if defined(LLVM_ON_UNIX)
128 time_t fs_st_atime = 0;
129 time_t fs_st_mtime = 0;
132 uid_t fs_st_uid = 0;
133 gid_t fs_st_gid = 0;
134 off_t fs_st_size = 0;
135 #elif defined (_WIN32)
136 uint32_t LastAccessedTimeHigh = 0;
137 uint32_t LastAccessedTimeLow = 0;
138 uint32_t LastWriteTimeHigh = 0;
139 uint32_t LastWriteTimeLow = 0;
140 uint32_t FileSizeHigh = 0;
141 uint32_t FileSizeLow = 0;
142 #endif
145
146public:
147 basic_file_status() = default;
148
150
151 #if defined(LLVM_ON_UNIX)
153 uint32_t ATimeNSec, time_t MTime, uint32_t MTimeNSec,
154 uid_t UID, gid_t GID, off_t Size)
155 : fs_st_atime(ATime), fs_st_mtime(MTime),
156 fs_st_atime_nsec(ATimeNSec), fs_st_mtime_nsec(MTimeNSec),
157 fs_st_uid(UID), fs_st_gid(GID),
159#elif defined(_WIN32)
160 basic_file_status(file_type Type, perms Perms, uint32_t LastAccessTimeHigh,
161 uint32_t LastAccessTimeLow, uint32_t LastWriteTimeHigh,
162 uint32_t LastWriteTimeLow, uint32_t FileSizeHigh,
163 uint32_t FileSizeLow)
164 : LastAccessedTimeHigh(LastAccessTimeHigh),
165 LastAccessedTimeLow(LastAccessTimeLow),
166 LastWriteTimeHigh(LastWriteTimeHigh),
167 LastWriteTimeLow(LastWriteTimeLow), FileSizeHigh(FileSizeHigh),
168 FileSizeLow(FileSizeLow), Type(Type), Perms(Perms) {}
169 #endif
170
171 // getters
172 file_type type() const { return Type; }
173 perms permissions() const { return Perms; }
174
175 /// The file access time as reported from the underlying file system.
176 ///
177 /// Also see comments on \c getLastModificationTime() related to the precision
178 /// of the returned value.
180
181 /// The file modification time as reported from the underlying file system.
182 ///
183 /// The returned value allows for nanosecond precision but the actual
184 /// resolution is an implementation detail of the underlying file system.
185 /// There is no guarantee for what kind of resolution you can expect, the
186 /// resolution can differ across platforms and even across mountpoints on the
187 /// same machine.
189
190#if defined(LLVM_ON_UNIX)
191 uint32_t getUser() const { return fs_st_uid; }
192 uint32_t getGroup() const { return fs_st_gid; }
193 uint64_t getSize() const { return fs_st_size; }
194#elif defined(_WIN32)
195 uint32_t getUser() const {
196 return 9999; // Not applicable to Windows, so...
197 }
198
199 uint32_t getGroup() const {
200 return 9999; // Not applicable to Windows, so...
201 }
202
203 uint64_t getSize() const {
204 return (uint64_t(FileSizeHigh) << 32) + FileSizeLow;
205 }
206#endif
207
208 // setters
209 void type(file_type v) { Type = v; }
210 void permissions(perms p) { Perms = p; }
211};
212
213/// Represents the result of a call to sys::fs::status().
216
217#if defined(LLVM_ON_UNIX)
218 dev_t fs_st_dev = 0;
219 nlink_t fs_st_nlinks = 0;
220 ino_t fs_st_ino = 0;
221#elif defined(_WIN32)
222 uint32_t NumLinks = 0;
223 uint32_t VolumeSerialNumber = 0;
224 uint64_t PathHash = 0;
225#endif
226
227public:
228 file_status() = default;
229
231
232 #if defined(LLVM_ON_UNIX)
233 file_status(file_type Type, perms Perms, dev_t Dev, nlink_t Links, ino_t Ino,
234 time_t ATime, uint32_t ATimeNSec,
235 time_t MTime, uint32_t MTimeNSec,
236 uid_t UID, gid_t GID, off_t Size)
237 : basic_file_status(Type, Perms, ATime, ATimeNSec, MTime, MTimeNSec,
238 UID, GID, Size),
239 fs_st_dev(Dev), fs_st_nlinks(Links), fs_st_ino(Ino) {}
240 #elif defined(_WIN32)
242 uint32_t LastAccessTimeHigh, uint32_t LastAccessTimeLow,
243 uint32_t LastWriteTimeHigh, uint32_t LastWriteTimeLow,
244 uint32_t VolumeSerialNumber, uint32_t FileSizeHigh,
245 uint32_t FileSizeLow, uint64_t PathHash)
246 : basic_file_status(Type, Perms, LastAccessTimeHigh, LastAccessTimeLow,
247 LastWriteTimeHigh, LastWriteTimeLow, FileSizeHigh,
248 FileSizeLow),
249 NumLinks(LinkCount), VolumeSerialNumber(VolumeSerialNumber),
250 PathHash(PathHash) {}
251 #endif
252
255};
256
257/// @}
258/// @name Physical Operators
259/// @{
260
261/// Make \a path an absolute path.
262///
263/// Makes \a path absolute using the current directory if it is not already. An
264/// empty \a path will result in the current directory.
265///
266/// /absolute/path => /absolute/path
267/// relative/../path => <current-directory>/relative/../path
268///
269/// @param path A path that is modified to be an absolute path.
270/// @returns errc::success if \a path has been made absolute, otherwise a
271/// platform-specific error_code.
273
274/// Create all the non-existent directories in path.
275///
276/// @param path Directories to create.
277/// @returns errc::success if is_directory(path), otherwise a platform
278/// specific error_code. If IgnoreExisting is false, also returns
279/// error if the directory already existed.
280LLVM_ABI std::error_code
281create_directories(const Twine &path, bool IgnoreExisting = true,
282 perms Perms = owner_all | group_all);
283
284/// Create the directory in path.
285///
286/// @param path Directory to create.
287/// @returns errc::success if is_directory(path), otherwise a platform
288/// specific error_code. If IgnoreExisting is false, also returns
289/// error if the directory already existed.
290LLVM_ABI std::error_code create_directory(const Twine &path,
291 bool IgnoreExisting = true,
292 perms Perms = owner_all | group_all);
293
294/// Create a symbolic link from \a from to \a to.
295///
296/// This may fail on Windows if run without create symbolic link permissions.
297///
298/// On Windows
299/// - slashes in the symlink target are normalized to `\`, and
300/// - if \a to does not exist, it will always create a file symlink.
301///
302/// @param to The path to the symlink target.
303/// @param from The path of the symlink to create.
304/// @returns errc::success if the link was created, otherwise a platform
305/// specific error_code.
306LLVM_ABI std::error_code create_symlink(const Twine &to, const Twine &from);
307
308/// Create a link from \a from to \a to.
309///
310/// Tries to create a symbolic link first, and falls back to a hard link if
311/// that fails. The caller may not assume which type of link is created.
312///
313/// @param to The path to link to.
314/// @param from The path to link from. This is created.
315/// @returns errc::success if the link was created, otherwise a platform
316/// specific error_code.
317LLVM_ABI std::error_code create_link(const Twine &to, const Twine &from);
318
319/// Create a hard link from \a from to \a to, or return an error.
320///
321/// @param to The path to hard link to.
322/// @param from The path to hard link from. This is created.
323/// @returns errc::success if the link was created, otherwise a platform
324/// specific error_code.
325LLVM_ABI std::error_code create_hard_link(const Twine &to, const Twine &from);
326
327/// Collapse all . and .. patterns, resolve all symlinks, and optionally
328/// expand ~ expressions to the user's home directory.
329///
330/// @param path The path to resolve.
331/// @param output The location to store the resolved path.
332/// @param expand_tilde If true, resolves ~ expressions to the user's home
333/// directory.
334LLVM_ABI std::error_code real_path(const Twine &path,
335 SmallVectorImpl<char> &output,
336 bool expand_tilde = false);
337
338/// Read the target of a symbolic link.
339///
340/// @param path The path of the symlink.
341/// @param output The location to store the symlink target.
342/// @returns errc::success if the symlink target has been stored in output,
343/// errc::invalid_argument if path is not a symbolic link, otherwise
344/// a platform-specific error_code.
345LLVM_ABI std::error_code readlink(const Twine &path,
346 SmallVectorImpl<char> &output);
347
348/// Expands ~ expressions to the user's home directory. On Unix ~user
349/// directories are resolved as well.
350///
351/// @param path The path to resolve.
353
354/// Get the current path.
355///
356/// @param result Holds the current path on return.
357/// @returns errc::success if the current path has been stored in result,
358/// otherwise a platform-specific error_code.
360
361/// Set the current path.
362///
363/// @param path The path to set.
364/// @returns errc::success if the current path was successfully set,
365/// otherwise a platform-specific error_code.
366LLVM_ABI std::error_code set_current_path(const Twine &path);
367
368/// Remove path. Equivalent to POSIX remove().
369///
370/// @param path Input path.
371/// @returns errc::success if path has been removed or didn't exist, otherwise a
372/// platform-specific error code. If IgnoreNonExisting is false, also
373/// returns error if the file didn't exist.
374LLVM_ABI std::error_code remove(const Twine &path,
375 bool IgnoreNonExisting = true);
376
377/// Recursively delete a directory.
378///
379/// @param path Input path.
380/// @returns errc::success if path has been removed or didn't exist, otherwise a
381/// platform-specific error code.
382LLVM_ABI std::error_code remove_directories(const Twine &path,
383 bool IgnoreErrors = true);
384
385/// Rename \a from to \a to.
386///
387/// Files are renamed as if by POSIX rename(), except that on Windows there may
388/// be a short interval of time during which the destination file does not
389/// exist.
390///
391/// @param from The path to rename from.
392/// @param to The path to rename to. This is created.
393LLVM_ABI std::error_code rename(const Twine &from, const Twine &to);
394
395/// Copy the contents of \a From to \a To.
396///
397/// @param From The path to copy from.
398/// @param To The path to copy to. This is created.
399LLVM_ABI std::error_code copy_file(const Twine &From, const Twine &To);
400
401/// Copy the contents of \a From to \a To.
402///
403/// @param From The path to copy from.
404/// @param ToFD The open file descriptor of the destination file.
405LLVM_ABI std::error_code copy_file(const Twine &From, int ToFD);
406
407/// Resize path to size. File is resized as if by POSIX truncate().
408///
409/// @param FD Input file descriptor.
410/// @param Size Size to resize to.
411/// @returns errc::success if \a path has been resized to \a size, otherwise a
412/// platform-specific error_code.
413LLVM_ABI std::error_code resize_file(int FD, uint64_t Size);
414
415/// Resize path to size with sparse files explicitly enabled. It uses
416/// FSCTL_SET_SPARSE On Windows. This is the same as resize_file on
417/// non-Windows
418LLVM_ABI std::error_code resize_file_sparse(int FD, uint64_t Size);
419
420/// Resize \p FD to \p Size before mapping \a mapped_file_region::readwrite. On
421/// non-Windows, this calls \a resize_file(). On Windows, this is a no-op,
422/// since the subsequent mapping (via \c CreateFileMapping) automatically
423/// extends the file.
424inline std::error_code resize_file_before_mapping_readwrite(int FD,
425 uint64_t Size) {
426#ifdef _WIN32
427 (void)FD;
428 (void)Size;
429 return std::error_code();
430#else
431 return resize_file(FD, Size);
432#endif
433}
434
435/// Compute an MD5 hash of a file's contents.
436///
437/// @param FD Input file descriptor.
438/// @returns An MD5Result with the hash computed, if successful, otherwise a
439/// std::error_code.
441
442/// Version of compute_md5 that doesn't require an open file descriptor.
444
445/// @}
446/// @name Physical Observers
447/// @{
448
449/// Does file exist?
450///
451/// @param status A basic_file_status previously returned from stat.
452/// @returns True if the file represented by status exists, false if it does
453/// not.
454LLVM_ABI bool exists(const basic_file_status &status);
455
456enum class AccessMode { Exist, Write, Execute };
457
458/// Can the file be accessed?
459///
460/// @param Path Input path.
461/// @returns errc::success if the path can be accessed, otherwise a
462/// platform-specific error_code.
463LLVM_ABI std::error_code access(const Twine &Path, AccessMode Mode);
464
465/// Does file exist?
466///
467/// @param Path Input path.
468/// @returns True if it exists, false otherwise.
469inline bool exists(const Twine &Path) {
470 return !access(Path, AccessMode::Exist);
471}
472
473/// Can we execute this file?
474///
475/// @param Path Input path.
476/// @returns True if we can execute it, false otherwise.
477LLVM_ABI bool can_execute(const Twine &Path);
478
479/// Can we write this file?
480///
481/// @param Path Input path.
482/// @returns True if we can write to it, false otherwise.
483inline bool can_write(const Twine &Path) {
484 return !access(Path, AccessMode::Write);
485}
486
487/// Do file_status's represent the same thing?
488///
489/// @param A Input file_status.
490/// @param B Input file_status.
491///
492/// assert(status_known(A) || status_known(B));
493///
494/// @returns True if A and B both represent the same file system entity, false
495/// otherwise.
497
498/// Do paths represent the same thing?
499///
500/// assert(status_known(A) || status_known(B));
501///
502/// @param A Input path A.
503/// @param B Input path B.
504/// @param result Set to true if stat(A) and stat(B) have the same device and
505/// inode (or equivalent).
506/// @returns errc::success if result has been successfully set, otherwise a
507/// platform-specific error_code.
508LLVM_ABI std::error_code equivalent(const Twine &A, const Twine &B,
509 bool &result);
510
511/// Simpler version of equivalent for clients that don't need to
512/// differentiate between an error and false.
513inline bool equivalent(const Twine &A, const Twine &B) {
514 bool result;
515 return !equivalent(A, B, result) && result;
516}
517
518/// Is the file mounted on a local filesystem?
519///
520/// @param path Input path.
521/// @param result Set to true if \a path is on fixed media such as a hard disk,
522/// false if it is not.
523/// @returns errc::success if result has been successfully set, otherwise a
524/// platform specific error_code.
525LLVM_ABI std::error_code is_local(const Twine &path, bool &result);
526
527/// Version of is_local accepting an open file descriptor.
528LLVM_ABI std::error_code is_local(int FD, bool &result);
529
530/// Simpler version of is_local for clients that don't need to
531/// differentiate between an error and false.
532inline bool is_local(const Twine &Path) {
533 bool Result;
534 return !is_local(Path, Result) && Result;
535}
536
537/// Simpler version of is_local accepting an open file descriptor for
538/// clients that don't need to differentiate between an error and false.
539inline bool is_local(int FD) {
540 bool Result;
541 return !is_local(FD, Result) && Result;
542}
543
544/// Does status represent a directory?
545///
546/// @param Path The path to get the type of.
547/// @param Follow For symbolic links, indicates whether to return the file type
548/// of the link itself, or of the target.
549/// @returns A value from the file_type enumeration indicating the type of file.
550LLVM_ABI file_type get_file_type(const Twine &Path, bool Follow = true);
551
552/// Does status represent a directory?
553///
554/// @param status A basic_file_status previously returned from status.
555/// @returns status.type() == file_type::directory_file.
556LLVM_ABI bool is_directory(const basic_file_status &status);
557
558/// Is path a directory?
559///
560/// @param path Input path.
561/// @param result Set to true if \a path is a directory (after following
562/// symlinks, false if it is not. Undefined otherwise.
563/// @returns errc::success if result has been successfully set, otherwise a
564/// platform-specific error_code.
565LLVM_ABI std::error_code is_directory(const Twine &path, bool &result);
566
567/// Simpler version of is_directory for clients that don't need to
568/// differentiate between an error and false.
569inline bool is_directory(const Twine &Path) {
570 bool Result;
571 return !is_directory(Path, Result) && Result;
572}
573
574/// Does status represent a regular file?
575///
576/// @param status A basic_file_status previously returned from status.
577/// @returns status_known(status) && status.type() == file_type::regular_file.
578LLVM_ABI bool is_regular_file(const basic_file_status &status);
579
580/// Is path a regular file?
581///
582/// @param path Input path.
583/// @param result Set to true if \a path is a regular file (after following
584/// symlinks), false if it is not. Undefined otherwise.
585/// @returns errc::success if result has been successfully set, otherwise a
586/// platform-specific error_code.
587LLVM_ABI std::error_code is_regular_file(const Twine &path, bool &result);
588
589/// Simpler version of is_regular_file for clients that don't need to
590/// differentiate between an error and false.
591inline bool is_regular_file(const Twine &Path) {
592 bool Result;
593 if (is_regular_file(Path, Result))
594 return false;
595 return Result;
596}
597
598/// Does status represent a symlink file?
599///
600/// @param status A basic_file_status previously returned from status.
601/// @returns status_known(status) && status.type() == file_type::symlink_file.
602LLVM_ABI bool is_symlink_file(const basic_file_status &status);
603
604/// Is path a symlink file?
605///
606/// @param path Input path.
607/// @param result Set to true if \a path is a symlink file, false if it is not.
608/// Undefined otherwise.
609/// @returns errc::success if result has been successfully set, otherwise a
610/// platform-specific error_code.
611LLVM_ABI std::error_code is_symlink_file(const Twine &path, bool &result);
612
613/// Simpler version of is_symlink_file for clients that don't need to
614/// differentiate between an error and false.
615inline bool is_symlink_file(const Twine &Path) {
616 bool Result;
617 if (is_symlink_file(Path, Result))
618 return false;
619 return Result;
620}
621
622/// Does this status represent something that exists but is not a
623/// directory or regular file?
624///
625/// @param status A basic_file_status previously returned from status.
626/// @returns exists(s) && !is_regular_file(s) && !is_directory(s)
627LLVM_ABI bool is_other(const basic_file_status &status);
628
629/// Is path something that exists but is not a directory,
630/// regular file, or symlink?
631///
632/// @param path Input path.
633/// @param result Set to true if \a path exists, but is not a directory, regular
634/// file, or a symlink, false if it does not. Undefined otherwise.
635/// @returns errc::success if result has been successfully set, otherwise a
636/// platform-specific error_code.
637LLVM_ABI std::error_code is_other(const Twine &path, bool &result);
638
639/// Get file status as if by POSIX stat().
640///
641/// @param path Input path.
642/// @param result Set to the file status.
643/// @param follow When true, follows symlinks. Otherwise, the symlink itself is
644/// statted.
645/// @returns errc::success if result has been successfully set, otherwise a
646/// platform-specific error_code.
647LLVM_ABI std::error_code status(const Twine &path, file_status &result,
648 bool follow = true);
649
650/// A version for when a file is already available.
651LLVM_ABI std::error_code status(file_t F, file_status &Result);
652
653/// A version for when a file descriptor is already available.
654LLVM_ABI std::error_code status(int FD, file_status &Result);
655
656/// Get file creation mode mask of the process.
657///
658/// @returns Mask reported by umask(2)
659/// @note There is no umask on Windows. This function returns 0 always
660/// on Windows. This function does not return an error_code because
661/// umask(2) never fails. It is not thread safe.
663
664/// Set file permissions.
665///
666/// @param Path File to set permissions on.
667/// @param Permissions New file permissions.
668/// @returns errc::success if the permissions were successfully set, otherwise
669/// a platform-specific error_code.
670/// @note On Windows, all permissions except *_write are ignored. Using any of
671/// owner_write, group_write, or all_write will make the file writable.
672/// Otherwise, the file will be marked as read-only.
673LLVM_ABI std::error_code setPermissions(const Twine &Path, perms Permissions);
674
675/// Vesion of setPermissions accepting a file descriptor.
676/// TODO Delete the path based overload once we implement the FD based overload
677/// on Windows.
678LLVM_ABI std::error_code setPermissions(int FD, perms Permissions);
679
680/// Get file permissions.
681///
682/// @param Path File to get permissions from.
683/// @returns the permissions if they were successfully retrieved, otherwise a
684/// platform-specific error_code.
685/// @note On Windows, if the file does not have the FILE_ATTRIBUTE_READONLY
686/// attribute, all_all will be returned. Otherwise, all_read | all_exe
687/// will be returned.
689
690/// Get file size.
691///
692/// @param Path Input path.
693/// @param Result Set to the size of the file in \a Path.
694/// @returns errc::success if result has been successfully set, otherwise a
695/// platform-specific error_code.
696inline std::error_code file_size(const Twine &Path, uint64_t &Result) {
698 std::error_code EC = status(Path, Status);
699 if (EC)
700 return EC;
701 Result = Status.getSize();
702 return std::error_code();
703}
704
705/// Set the file modification and access time.
706///
707/// @returns errc::success if the file times were successfully set, otherwise a
708/// platform-specific error_code or errc::function_not_supported on
709/// platforms where the functionality isn't available.
710LLVM_ABI std::error_code
712 TimePoint<> ModificationTime);
713
714/// Simpler version that sets both file modification and access time to the same
715/// time.
716inline std::error_code setLastAccessAndModificationTime(int FD,
717 TimePoint<> Time) {
718 return setLastAccessAndModificationTime(FD, Time, Time);
719}
720
721/// Set the file modification and access time, by path.
722///
723/// Works for both regular files and directories on all supported platforms.
724///
725/// @returns errc::success if the file times were successfully set, otherwise a
726/// platform-specific error_code or errc::function_not_supported on
727/// platforms where the functionality isn't available.
728LLVM_ABI std::error_code
730 TimePoint<> ModificationTime);
731
732/// Simpler version that sets both file modification and access time to the same
733/// time.
734inline std::error_code setLastAccessAndModificationTime(const Twine &Path,
735 TimePoint<> Time) {
736 return setLastAccessAndModificationTime(Path, Time, Time);
737}
738
739/// Is status available?
740///
741/// @param s Input file status.
742/// @returns True if status() != status_error.
743LLVM_ABI bool status_known(const basic_file_status &s);
744
745enum CreationDisposition : unsigned {
746 /// CD_CreateAlways - When opening a file:
747 /// * If it already exists, truncate it.
748 /// * If it does not already exist, create a new file.
750
751 /// CD_CreateNew - When opening a file:
752 /// * If it already exists, fail.
753 /// * If it does not already exist, create a new file.
755
756 /// CD_OpenExisting - When opening a file:
757 /// * If it already exists, open the file with the offset set to 0.
758 /// * If it does not already exist, fail.
760
761 /// CD_OpenAlways - When opening a file:
762 /// * If it already exists, open the file with the offset set to 0.
763 /// * If it does not already exist, create a new file.
765};
766
767enum FileAccess : unsigned {
770};
771
772enum OpenFlags : unsigned {
774
775 /// The file should be opened in text mode on platforms like z/OS that make
776 /// this distinction.
778
779 /// The file should use a carriage linefeed '\r\n'. This flag should only be
780 /// used with OF_Text. Only makes a difference on Windows.
782
783 /// The file should be opened in text mode and use a carriage linefeed '\r\n'.
784 /// This flag has the same functionality as OF_Text on z/OS but adds a
785 /// carriage linefeed on Windows.
787
788 /// The file should be opened in append mode.
790
791 /// The returned handle can be used for deleting the file. Only makes a
792 /// difference on windows.
794
795 /// When a child process is launched, this file should remain open in the
796 /// child process.
798
799 /// Force files Atime to be updated on access. Only makes a difference on
800 /// Windows.
802
803 /// Open the file with sufficient access to update its metadata. Only makes
804 /// a difference on Windows, where it adds FILE_WRITE_ATTRIBUTES to the
805 /// access mask.
807
808 /// Allow opening a directory. Only makes a difference on Windows, where it
809 /// adds FILE_FLAG_BACKUP_SEMANTICS to the open flags so a handle to a
810 /// directory can be obtained.
812};
813
814/// Create a potentially unique file name but does not create it.
815///
816/// Generates a unique path suitable for a temporary file but does not
817/// open or create the file. The name is based on \a Model with '%'
818/// replaced by a random char in [0-9a-f]. If \a MakeAbsolute is true
819/// then the system's temp directory is prepended first. If \a MakeAbsolute
820/// is false the current directory will be used instead.
821///
822/// This function does not check if the file exists. If you want to be sure
823/// that the file does not yet exist, you should use enough '%' characters
824/// in your model to ensure this. Each '%' gives 4-bits of entropy so you can
825/// use 32 of them to get 128 bits of entropy.
826///
827/// Example: clang-%%-%%-%%-%%-%%.s => clang-a0-b1-c2-d3-e4.s
828///
829/// @param Model Name to base unique path off of. Must contain at least one '%'.
830/// @param ResultPath Set to the file's path.
831/// @param MakeAbsolute Whether to use the system temp directory.
832LLVM_ABI void createUniquePath(const Twine &Model,
833 SmallVectorImpl<char> &ResultPath,
834 bool MakeAbsolute);
835
836/// Create a uniquely named file.
837///
838/// Generates a unique path suitable for a temporary file and then opens it as a
839/// file. The name is based on \a Model with '%' replaced by a random char in
840/// [0-9a-f]. If \a Model is not an absolute path, the temporary file will be
841/// created in the current directory.
842///
843/// Example: clang-%%-%%-%%-%%-%%.s => clang-a0-b1-c2-d3-e4.s
844///
845/// This is an atomic operation. Either the file is created and opened, or the
846/// file system is left untouched.
847///
848/// The intended use is for files that are to be kept, possibly after
849/// renaming them. For example, when running 'clang -c foo.o', the file can
850/// be first created as foo-abc123.o and then renamed.
851///
852/// @param Model Name to base unique path off of.
853/// @param ResultFD Set to the opened file's file descriptor.
854/// @param ResultPath Set to the opened file's absolute path.
855/// @param Flags Set to the opened file's flags.
856/// @param Mode Set to the opened file's permissions.
857/// @returns errc::success if Result{FD,Path} have been successfully set,
858/// otherwise a platform-specific error_code.
859LLVM_ABI std::error_code createUniqueFile(const Twine &Model, int &ResultFD,
860 SmallVectorImpl<char> &ResultPath,
861 OpenFlags Flags = OF_None,
862 unsigned Mode = all_read | all_write);
863
864/// Simpler version for clients that don't want an open file. An empty
865/// file will still be created.
866LLVM_ABI std::error_code createUniqueFile(const Twine &Model,
867 SmallVectorImpl<char> &ResultPath,
868 unsigned Mode = all_read | all_write);
869
870/// Represents a temporary file.
871///
872/// The temporary file must be eventually discarded or given a final name and
873/// kept.
874///
875/// The destructor doesn't implicitly discard because there is no way to
876/// properly handle errors in a destructor.
877class TempFile {
878 bool Done = false;
879 LLVM_ABI TempFile(StringRef Name, int FD);
880
881public:
882 /// This creates a temporary file with createUniqueFile and schedules it for
883 /// deletion with sys::RemoveFileOnSignal.
885 create(const Twine &Model, unsigned Mode = all_read | all_write,
886 OpenFlags ExtraFlags = OF_None);
887 LLVM_ABI TempFile(TempFile &&Other);
888 LLVM_ABI TempFile &operator=(TempFile &&Other);
889
890 // Name of the temporary file.
891 std::string TmpName;
892
893 // The open file descriptor.
894 int FD = -1;
895
896#ifdef _WIN32
897 // Whether we need to manually remove the file on close.
898 bool RemoveOnClose = false;
899#endif
900
901 // Keep this with the given name.
902 LLVM_ABI Error keep(const Twine &Name);
903
904 // Keep this with the temporary name.
906
907 // Delete the file.
909
910 // This checks that keep or delete was called.
912};
913
914/// Create a file in the system temporary directory.
915///
916/// The filename is of the form prefix-random_chars.suffix. Since the directory
917/// is not know to the caller, Prefix and Suffix cannot have path separators.
918/// The files are created with mode 0600.
919///
920/// This should be used for things like a temporary .s that is removed after
921/// running the assembler.
922LLVM_ABI std::error_code createTemporaryFile(const Twine &Prefix,
923 StringRef Suffix, int &ResultFD,
924 SmallVectorImpl<char> &ResultPath,
925 OpenFlags Flags = OF_None);
926
927/// Simpler version for clients that don't want an open file. An empty
928/// file will still be created.
929LLVM_ABI std::error_code createTemporaryFile(const Twine &Prefix,
930 StringRef Suffix,
931 SmallVectorImpl<char> &ResultPath,
932 OpenFlags Flags = OF_None);
933
934LLVM_ABI std::error_code
935createUniqueDirectory(const Twine &Prefix, SmallVectorImpl<char> &ResultPath);
936
937/// Get a unique name, not currently exisiting in the filesystem. Subject
938/// to race conditions, prefer to use createUniqueFile instead.
939///
940/// Similar to createUniqueFile, but instead of creating a file only
941/// checks if it exists. This function is subject to race conditions, if you
942/// want to use the returned name to actually create a file, use
943/// createUniqueFile instead.
944LLVM_ABI std::error_code
946 SmallVectorImpl<char> &ResultPath);
947
948/// Get a unique temporary file name, not currently exisiting in the
949/// filesystem. Subject to race conditions, prefer to use createTemporaryFile
950/// instead.
951///
952/// Similar to createTemporaryFile, but instead of creating a file only
953/// checks if it exists. This function is subject to race conditions, if you
954/// want to use the returned name to actually create a file, use
955/// createTemporaryFile instead.
956LLVM_ABI std::error_code
958 SmallVectorImpl<char> &ResultPath);
959
961 return OpenFlags(unsigned(A) | unsigned(B));
962}
963
965 A = A | B;
966 return A;
967}
968
970 return FileAccess(unsigned(A) | unsigned(B));
971}
972
974 A = A | B;
975 return A;
976}
977
978/// @brief Opens a file with the specified creation disposition, access mode,
979/// and flags and returns a file descriptor.
980///
981/// The caller is responsible for closing the file descriptor once they are
982/// finished with it.
983///
984/// @param Name The path of the file to open, relative or absolute.
985/// @param ResultFD If the file could be opened successfully, its descriptor
986/// is stored in this location. Otherwise, this is set to -1.
987/// @param Disp Value specifying the existing-file behavior.
988/// @param Access Value specifying whether to open the file in read, write, or
989/// read-write mode.
990/// @param Flags Additional flags.
991/// @param Mode The access permissions of the file, represented in octal.
992/// @returns errc::success if \a Name has been opened, otherwise a
993/// platform-specific error_code.
994LLVM_ABI std::error_code openFile(const Twine &Name, int &ResultFD,
996 OpenFlags Flags, unsigned Mode = 0666);
997
998/// @brief Opens a file with the specified creation disposition, access mode,
999/// and flags and returns a platform-specific file object.
1000///
1001/// The caller is responsible for closing the file object once they are
1002/// finished with it.
1003///
1004/// @param Name The path of the file to open, relative or absolute.
1005/// @param Disp Value specifying the existing-file behavior.
1006/// @param Access Value specifying whether to open the file in read, write, or
1007/// read-write mode.
1008/// @param Flags Additional flags.
1009/// @param Mode The access permissions of the file, represented in octal.
1010/// @returns errc::success if \a Name has been opened, otherwise a
1011/// platform-specific error_code.
1015 unsigned Mode = 0666);
1016
1017/// Converts from a Posix file descriptor number to a native file handle.
1018/// On Windows, this retreives the underlying handle. On non-Windows, this is a
1019/// no-op.
1021
1022#ifndef _WIN32
1023inline file_t convertFDToNativeFile(int FD) { return file_t(FD); }
1024#endif
1025
1026/// Return an open handle to standard in. On Unix, this is typically FD 0.
1027/// Returns Invalid file_t when the stream is closed.
1029
1030/// Return an open handle to standard out. On Unix, this is typically FD 1.
1031/// Returns Invalid file_t when the stream is closed.
1033
1034/// Return an open handle to standard error. On Unix, this is typically FD 2.
1035/// Returns kInvalidFile when the stream is closed.
1037
1038/// Reads \p Buf.size() bytes from \p FileHandle into \p Buf. Returns the number
1039/// of bytes actually read. On Unix, this is equivalent to `return ::read(FD,
1040/// Buf.data(), Buf.size())`, with error reporting. Returns 0 when reaching EOF.
1041///
1042/// @param FileHandle File to read from.
1043/// @param Buf Buffer to read into.
1044/// @returns The number of bytes read, or error.
1047
1048/// Default chunk size for \a readNativeFileToEOF().
1049enum : size_t { DefaultReadChunkSize = 4 * 4096 };
1050
1051/// Reads from \p FileHandle until EOF, appending to \p Buffer in chunks of
1052/// size \p ChunkSize.
1053///
1054/// This calls \a readNativeFile() in a loop. On Error, previous chunks that
1055/// were read successfully are left in \p Buffer and returned.
1056///
1057/// Note: For reading the final chunk at EOF, \p Buffer's capacity needs extra
1058/// storage of \p ChunkSize.
1059///
1060/// \param FileHandle File to read from.
1061/// \param Buffer Where to put the file content.
1062/// \param ChunkSize Size of chunks.
1063/// \returns The error if EOF was not found.
1065 SmallVectorImpl<char> &Buffer,
1066 ssize_t ChunkSize = DefaultReadChunkSize);
1067
1068/// Reads \p Buf.size() bytes from \p FileHandle at offset \p Offset into \p
1069/// Buf. If 'pread' is available, this will use that, otherwise it will use
1070/// 'lseek'. Returns the number of bytes actually read. Returns 0 when reaching
1071/// EOF.
1072///
1073/// @param FileHandle File to read from.
1074/// @param Buf Buffer to read into.
1075/// @param Offset Offset into the file at which the read should occur.
1076/// @returns The number of bytes read, or error.
1080
1081/// @brief Opens the file with the given name in a write-only or read-write
1082/// mode, returning its open file descriptor. If the file does not exist, it
1083/// is created.
1084///
1085/// The caller is responsible for closing the file descriptor once they are
1086/// finished with it.
1087///
1088/// @param Name The path of the file to open, relative or absolute.
1089/// @param ResultFD If the file could be opened successfully, its descriptor
1090/// is stored in this location. Otherwise, this is set to -1.
1091/// @param Flags Additional flags used to determine whether the file should be
1092/// opened in, for example, read-write or in write-only mode.
1093/// @param Mode The access permissions of the file, represented in octal.
1094/// @returns errc::success if \a Name has been opened, otherwise a
1095/// platform-specific error_code.
1096inline std::error_code
1097openFileForWrite(const Twine &Name, int &ResultFD,
1099 OpenFlags Flags = OF_None, unsigned Mode = 0666) {
1100 return openFile(Name, ResultFD, Disp, FA_Write, Flags, Mode);
1101}
1102
1103/// @brief Opens the file with the given name in a write-only or read-write
1104/// mode, returning its open file descriptor. If the file does not exist, it
1105/// is created.
1106///
1107/// The caller is responsible for closing the freeing the file once they are
1108/// finished with it.
1109///
1110/// @param Name The path of the file to open, relative or absolute.
1111/// @param Flags Additional flags used to determine whether the file should be
1112/// opened in, for example, read-write or in write-only mode.
1113/// @param Mode The access permissions of the file, represented in octal.
1114/// @returns a platform-specific file descriptor if \a Name has been opened,
1115/// otherwise an error object.
1118 OpenFlags Flags,
1119 unsigned Mode = 0666) {
1120 return openNativeFile(Name, Disp, FA_Write, Flags, Mode);
1121}
1122
1123/// @brief Opens the file with the given name in a write-only or read-write
1124/// mode, returning its open file descriptor. If the file does not exist, it
1125/// is created.
1126///
1127/// The caller is responsible for closing the file descriptor once they are
1128/// finished with it.
1129///
1130/// @param Name The path of the file to open, relative or absolute.
1131/// @param ResultFD If the file could be opened successfully, its descriptor
1132/// is stored in this location. Otherwise, this is set to -1.
1133/// @param Flags Additional flags used to determine whether the file should be
1134/// opened in, for example, read-write or in write-only mode.
1135/// @param Mode The access permissions of the file, represented in octal.
1136/// @returns errc::success if \a Name has been opened, otherwise a
1137/// platform-specific error_code.
1138inline std::error_code openFileForReadWrite(const Twine &Name, int &ResultFD,
1140 OpenFlags Flags,
1141 unsigned Mode = 0666) {
1142 return openFile(Name, ResultFD, Disp, FA_Write | FA_Read, Flags, Mode);
1143}
1144
1145/// @brief Opens the file with the given name in a write-only or read-write
1146/// mode, returning its open file descriptor. If the file does not exist, it
1147/// is created.
1148///
1149/// The caller is responsible for closing the freeing the file once they are
1150/// finished with it.
1151///
1152/// @param Name The path of the file to open, relative or absolute.
1153/// @param Flags Additional flags used to determine whether the file should be
1154/// opened in, for example, read-write or in write-only mode.
1155/// @param Mode The access permissions of the file, represented in octal.
1156/// @returns a platform-specific file descriptor if \a Name has been opened,
1157/// otherwise an error object.
1160 OpenFlags Flags,
1161 unsigned Mode = 0666) {
1162 return openNativeFile(Name, Disp, FA_Write | FA_Read, Flags, Mode);
1163}
1164
1165/// @brief Opens the file with the given name in a read-only mode, returning
1166/// its open file descriptor.
1167///
1168/// The caller is responsible for closing the file descriptor once they are
1169/// finished with it.
1170///
1171/// @param Name The path of the file to open, relative or absolute.
1172/// @param ResultFD If the file could be opened successfully, its descriptor
1173/// is stored in this location. Otherwise, this is set to -1.
1174/// @param RealPath If nonnull, extra work is done to determine the real path
1175/// of the opened file, and that path is stored in this
1176/// location.
1177/// @returns errc::success if \a Name has been opened, otherwise a
1178/// platform-specific error_code.
1179LLVM_ABI std::error_code
1180openFileForRead(const Twine &Name, int &ResultFD, OpenFlags Flags = OF_None,
1181 SmallVectorImpl<char> *RealPath = nullptr);
1182
1183/// @brief Opens the file with the given name in a read-only mode, returning
1184/// its open file descriptor.
1185///
1186/// The caller is responsible for closing the freeing the file once they are
1187/// finished with it.
1188///
1189/// @param Name The path of the file to open, relative or absolute.
1190/// @param RealPath If nonnull, extra work is done to determine the real path
1191/// of the opened file, and that path is stored in this
1192/// location.
1193/// @returns a platform-specific file descriptor if \a Name has been opened,
1194/// otherwise an error object.
1197 SmallVectorImpl<char> *RealPath = nullptr);
1198
1199/// An enumeration for the lock kind.
1200enum class LockKind {
1201 Exclusive, // Exclusive/writer lock
1202 Shared // Shared/reader lock
1203};
1204
1205/// Try to locks the file during the specified time.
1206///
1207/// This function implements advisory locking on entire file. If it returns
1208/// <em>errc::success</em>, the file is locked by the calling process. Until the
1209/// process unlocks the file by calling \a unlockFile, all attempts to lock the
1210/// same file will fail/block. The process that locked the file may assume that
1211/// none of other processes read or write this file, provided that all processes
1212/// lock the file prior to accessing its content.
1213///
1214/// @param FD The descriptor representing the file to lock.
1215/// @param Timeout Time in milliseconds that the process should wait before
1216/// reporting lock failure. Zero value means try to get lock only
1217/// once.
1218/// @param Kind The kind of the lock used (exclusive/shared).
1219/// @returns errc::success if lock is successfully obtained,
1220/// errc::no_lock_available if the file cannot be locked, or platform-specific
1221/// error_code otherwise.
1222///
1223/// @note Care should be taken when using this function in a multithreaded
1224/// context, as it may not prevent other threads in the same process from
1225/// obtaining a lock on the same file, even if they are using a different file
1226/// descriptor.
1227LLVM_ABI std::error_code
1229 std::chrono::milliseconds Timeout = std::chrono::milliseconds(0),
1231
1232/// Lock the file.
1233///
1234/// This function acts as @ref tryLockFile but it waits infinitely.
1235/// \param FD file descriptor to use for locking.
1236/// \param Kind of lock to used (exclusive/shared).
1237LLVM_ABI std::error_code lockFile(int FD, LockKind Kind = LockKind::Exclusive);
1238
1239/// Unlock the file.
1240///
1241/// @param FD The descriptor representing the file to unlock.
1242/// @returns errc::success if lock is successfully released or platform-specific
1243/// error_code otherwise.
1244LLVM_ABI std::error_code unlockFile(int FD);
1245
1246/// @brief Close the file object. This should be used instead of ::close for
1247/// portability. On error, the caller should assume the file is closed, as is
1248/// the case for Process::SafelyCloseFileDescriptor
1249///
1250/// @param F On input, this is the file to close. On output, the file is
1251/// set to kInvalidFile.
1252///
1253/// @returns An error code if closing the file failed. Typically, an error here
1254/// means that the filesystem may have failed to perform some buffered writes.
1255LLVM_ABI std::error_code closeFile(file_t &F);
1256
1257#ifdef LLVM_ON_UNIX
1258/// @brief Change ownership of a file.
1259///
1260/// @param Owner The owner of the file to change to.
1261/// @param Group The group of the file to change to.
1262/// @returns errc::success if successfully updated file ownership, otherwise an
1263/// error code is returned.
1265 uint32_t Group);
1266#endif
1267
1268/// RAII class that facilitates file locking.
1269class FileLocker {
1270 int FD; ///< Locked file handle.
1271 FileLocker(int FD) : FD(FD) {}
1273
1274public:
1275 FileLocker(const FileLocker &L) = delete;
1276 FileLocker(FileLocker &&L) : FD(L.FD) { L.FD = -1; }
1278 if (FD != -1)
1279 unlockFile(FD);
1280 }
1281 FileLocker &operator=(FileLocker &&L) {
1282 FD = L.FD;
1283 L.FD = -1;
1284 return *this;
1285 }
1286 FileLocker &operator=(const FileLocker &L) = delete;
1287 std::error_code unlock() {
1288 if (FD != -1) {
1289 std::error_code Result = unlockFile(FD);
1290 FD = -1;
1291 return Result;
1292 }
1293 return std::error_code();
1294 }
1295};
1296
1297LLVM_ABI std::error_code getUniqueID(const Twine Path, UniqueID &Result);
1298
1299/// Get disk space usage information.
1300///
1301/// Note: Users must be careful about "Time Of Check, Time Of Use" kind of bug.
1302/// Note: Windows reports results according to the quota allocated to the user.
1303///
1304/// @param Path Input path.
1305/// @returns a space_info structure filled with the capacity, free, and
1306/// available space on the device \a Path is on. A platform specific error_code
1307/// is returned on error.
1309
1310/// This class represents a memory mapped file. It is based on
1311/// boost::iostreams::mapped_file.
1313public:
1314 enum mapmode {
1315 readonly, ///< May only access map via const_data as read only.
1316 readwrite, ///< May access map via data and modify it. Written to path.
1317 priv ///< May modify via data, but changes are lost on destruction.
1318 };
1319
1320private:
1321 /// Platform-specific mapping state.
1322 size_t Size = 0;
1323 void *Mapping = nullptr;
1324#ifdef _WIN32
1325 sys::fs::file_t FileHandle;
1326#endif
1327 mapmode Mode = readonly;
1328
1329 void copyFrom(const mapped_file_region &Copied) {
1330 Size = Copied.Size;
1331 Mapping = Copied.Mapping;
1332#ifdef _WIN32
1333 FileHandle = Copied.FileHandle;
1334#endif
1335 Mode = Copied.Mode;
1336 }
1337
1338 void moveFromImpl(mapped_file_region &Moved) {
1339 copyFrom(Moved);
1340 Moved.copyFrom(mapped_file_region());
1341 }
1342
1343 LLVM_ABI void unmapImpl();
1344 LLVM_ABI void dontNeedImpl();
1345 LLVM_ABI void willNeedImpl();
1346 LLVM_ABI void randomAccessImpl();
1347
1348 LLVM_ABI std::error_code init(sys::fs::file_t FD, uint64_t Offset,
1349 mapmode Mode, const char *Name);
1350
1351public:
1353 mapped_file_region(mapped_file_region &&Moved) { moveFromImpl(Moved); }
1355 unmap();
1356 moveFromImpl(Moved);
1357 return *this;
1358 }
1359
1362
1363 /// \param fd An open file descriptor to map. Does not take ownership of fd.
1365 uint64_t offset, std::error_code &ec,
1366 const char *name = nullptr);
1367
1368 ~mapped_file_region() { unmapImpl(); }
1369
1370 /// Check if this is a valid mapping.
1371 explicit operator bool() const { return Mapping; }
1372
1373 /// Unmap.
1374 void unmap() {
1375 unmapImpl();
1376 copyFrom(mapped_file_region());
1377 }
1378 void dontNeed() { dontNeedImpl(); }
1379 void willNeed() { willNeedImpl(); }
1380 void randomAccess() { randomAccessImpl(); }
1381
1382 LLVM_ABI size_t size() const;
1383 LLVM_ABI char *data() const;
1384
1385 /// Write changes to disk and synchronize. Equivalent to POSIX msync. This
1386 /// will wait for flushing memory-mapped region back to disk and can be very
1387 /// slow.
1388 LLVM_ABI std::error_code sync() const;
1389
1390 /// Get a const view of the data. Modifying this memory has undefined
1391 /// behavior.
1392 LLVM_ABI const char *const_data() const;
1393
1394 /// \returns The minimum alignment offset must be.
1395 LLVM_ABI static int alignment();
1396};
1397
1398/// Return the path to the main executable, given the value of argv[0] from
1399/// program startup and the address of main itself. In extremis, this function
1400/// may fail and return an empty path.
1401LLVM_ABI std::string getMainExecutable(const char *argv0, void *MainExecAddr);
1402
1403/// @}
1404/// @name Iterators
1405/// @{
1406
1407/// directory_entry - A single entry in a directory.
1409 // FIXME: different platforms make different information available "for free"
1410 // when traversing a directory. The design of this class wraps most of the
1411 // information in basic_file_status, so on platforms where we can't populate
1412 // that whole structure, callers end up paying for a stat().
1413 // std::filesystem::directory_entry may be a better model.
1414 std::string Path;
1415 file_type Type = file_type::type_unknown; // Most platforms can provide this.
1416 bool FollowSymlinks = true; // Affects the behavior of status().
1417 basic_file_status Status; // If available.
1418
1419public:
1420 explicit directory_entry(const Twine &Path, bool FollowSymlinks = true,
1423 : Path(Path.str()), Type(Type), FollowSymlinks(FollowSymlinks),
1424 Status(Status) {}
1425
1426 directory_entry() = default;
1427
1428 LLVM_ABI void
1431
1432 const std::string &path() const { return Path; }
1433 // Get basic information about entry file (a subset of fs::status()).
1434 // On most platforms this is a stat() call.
1435 // On windows the information was already retrieved from the directory.
1437 // Get the type of this file.
1438 // On most platforms (Linux/Mac/Windows/BSD), this was already retrieved.
1439 // On some platforms (e.g. Solaris) this is a stat() call.
1440 file_type type() const {
1441 if (Type != file_type::type_unknown)
1442 return Type;
1443 auto S = status();
1444 return S ? S->type() : file_type::type_unknown;
1445 }
1446
1447 bool operator==(const directory_entry& RHS) const { return Path == RHS.Path; }
1448 bool operator!=(const directory_entry& RHS) const { return !(*this == RHS); }
1453};
1454
1455namespace detail {
1456
1457 struct DirIterState;
1458
1460 StringRef, bool);
1463
1464 /// Keeps state for the directory_iterator.
1473
1474} // end namespace detail
1475
1476/// directory_iterator - Iterates through the entries in path. There is no
1477/// operator++ because we need an error_code. If it's really needed we can make
1478/// it call report_fatal_error on error.
1480 std::shared_ptr<detail::DirIterState> State;
1481 bool FollowSymlinks = true;
1482
1483public:
1484 explicit directory_iterator(const Twine &path, std::error_code &ec,
1485 bool follow_symlinks = true)
1486 : FollowSymlinks(follow_symlinks) {
1487 State = std::make_shared<detail::DirIterState>();
1488 SmallString<128> path_storage;
1490 *State, path.toStringRef(path_storage), FollowSymlinks);
1491 }
1492
1493 explicit directory_iterator(const directory_entry &de, std::error_code &ec,
1494 bool follow_symlinks = true)
1495 : FollowSymlinks(follow_symlinks) {
1496 State = std::make_shared<detail::DirIterState>();
1498 *State, de.path(), FollowSymlinks);
1499 }
1500
1501 /// Construct end iterator.
1503
1504 // No operator++ because we need error_code.
1505 directory_iterator &increment(std::error_code &ec) {
1506 ec = directory_iterator_increment(*State);
1507 return *this;
1508 }
1509
1510 const directory_entry &operator*() const { return State->CurrentEntry; }
1511 const directory_entry *operator->() const { return &State->CurrentEntry; }
1512
1513 bool operator==(const directory_iterator &RHS) const {
1514 if (State == RHS.State)
1515 return true;
1516 if (!RHS.State)
1517 return State->CurrentEntry == directory_entry();
1518 if (!State)
1519 return RHS.State->CurrentEntry == directory_entry();
1520 return State->CurrentEntry == RHS.State->CurrentEntry;
1521 }
1522
1523 bool operator!=(const directory_iterator &RHS) const {
1524 return !(*this == RHS);
1525 }
1526};
1527
1528namespace detail {
1529
1530 /// Keeps state for the recursive_directory_iterator.
1532 std::vector<directory_iterator> Stack;
1534 bool HasNoPushRequest = false;
1535 };
1536
1537} // end namespace detail
1538
1539/// recursive_directory_iterator - Same as directory_iterator except for it
1540/// recurses down into child directories.
1542 std::shared_ptr<detail::RecDirIterState> State;
1543 bool Follow;
1544
1545public:
1547 explicit recursive_directory_iterator(const Twine &path, std::error_code &ec,
1548 bool follow_symlinks = true)
1549 : State(std::make_shared<detail::RecDirIterState>()),
1550 Follow(follow_symlinks) {
1551 State->Stack.push_back(directory_iterator(path, ec, Follow));
1552 if (State->Stack.back() == directory_iterator())
1553 State.reset();
1554 }
1555
1556 // No operator++ because we need error_code.
1558 const directory_iterator end_itr = {};
1559
1560 if (State->HasNoPushRequest)
1561 State->HasNoPushRequest = false;
1562 else {
1563 file_type type = State->Stack.back()->type();
1564 if (type == file_type::symlink_file && Follow) {
1565 // Resolve the symlink: is it a directory to recurse into?
1566 ErrorOr<basic_file_status> status = State->Stack.back()->status();
1567 if (status)
1568 type = status->type();
1569 // Otherwise broken symlink, and we'll continue.
1570 }
1571 if (type == file_type::directory_file) {
1572 State->Stack.push_back(
1573 directory_iterator(*State->Stack.back(), ec, Follow));
1574 if (State->Stack.back() != end_itr) {
1575 ++State->Level;
1576 return *this;
1577 }
1578 State->Stack.pop_back();
1579 }
1580 }
1581
1582 while (!State->Stack.empty()
1583 && State->Stack.back().increment(ec) == end_itr) {
1584 State->Stack.pop_back();
1585 --State->Level;
1586 }
1587
1588 // Check if we are done. If so, create an end iterator.
1589 if (State->Stack.empty())
1590 State.reset();
1591
1592 return *this;
1593 }
1594
1595 const directory_entry &operator*() const { return *State->Stack.back(); }
1596 const directory_entry *operator->() const { return &*State->Stack.back(); }
1597
1598 // observers
1599 /// Gets the current level. Starting path is at level 0.
1600 int level() const { return State->Level; }
1601
1602 /// Returns true if no_push has been called for this directory_entry.
1603 bool no_push_request() const { return State->HasNoPushRequest; }
1604
1605 // modifiers
1606 /// Goes up one level if Level > 0.
1607 void pop() {
1608 assert(State && "Cannot pop an end iterator!");
1609 assert(State->Level > 0 && "Cannot pop an iterator with level < 1");
1610
1611 const directory_iterator end_itr = {};
1612 std::error_code ec;
1613 do {
1614 if (ec)
1615 report_fatal_error("Error incrementing directory iterator.");
1616 State->Stack.pop_back();
1617 --State->Level;
1618 } while (!State->Stack.empty()
1619 && State->Stack.back().increment(ec) == end_itr);
1620
1621 // Check if we are done. If so, create an end iterator.
1622 if (State->Stack.empty())
1623 State.reset();
1624 }
1625
1626 /// Does not go down into the current directory_entry.
1627 void no_push() { State->HasNoPushRequest = true; }
1628
1630 return State == RHS.State;
1631 }
1632
1634 return !(*this == RHS);
1635 }
1636};
1637
1638/// @}
1639
1640} // end namespace fs
1641} // end namespace sys
1642} // end namespace llvm
1643
1644#endif // LLVM_SUPPORT_FILESYSTEM_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned uint64_t
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_ABI
Definition Compiler.h:215
DXIL Resource Access
static ManagedStatic< DebugCounterOwner > Owner
Provides ErrorOr<T> smart pointer.
This file declares llvm::sys::fs::file_t type.
amode Optimize addressing mode
#define F(x, y, z)
Definition MD5.cpp:54
static constexpr StringLiteral Filename
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
static const char * name
This file defines the SmallString class.
Value * RHS
file_status()=default
Represents either an error or a value T.
Definition ErrorOr.h:56
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
Tagged union holding either a T or a Error.
Definition Error.h:485
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:294
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
A raw_ostream that writes to a file descriptor.
FileLocker & operator=(FileLocker &&L)
FileLocker(const FileLocker &L)=delete
FileLocker & operator=(const FileLocker &L)=delete
FileLocker(FileLocker &&L)
std::error_code unlock()
LLVM_ABI Error keep()
Definition Path.cpp:1360
LLVM_ABI TempFile & operator=(TempFile &&Other)
Definition Path.cpp:1267
static LLVM_ABI Expected< TempFile > create(const Twine &Model, unsigned Mode=all_read|all_write, OpenFlags ExtraFlags=OF_None)
This creates a temporary file with createUniqueFile and schedules it for deletion with sys::RemoveFil...
Represents the result of a call to directory_iterator::status().
Definition FileSystem.h:125
basic_file_status(file_type Type, perms Perms, time_t ATime, uint32_t ATimeNSec, time_t MTime, uint32_t MTimeNSec, uid_t UID, gid_t GID, off_t Size)
Definition FileSystem.h:152
LLVM_ABI TimePoint getLastModificationTime() const
The file modification time as reported from the underlying file system.
LLVM_ABI TimePoint getLastAccessedTime() const
The file access time as reported from the underlying file system.
directory_entry - A single entry in a directory.
directory_entry(const Twine &Path, bool FollowSymlinks=true, file_type Type=file_type::type_unknown, basic_file_status Status=basic_file_status())
LLVM_ABI bool operator<=(const directory_entry &RHS) const
LLVM_ABI bool operator>(const directory_entry &RHS) const
LLVM_ABI bool operator>=(const directory_entry &RHS) const
LLVM_ABI bool operator<(const directory_entry &RHS) const
LLVM_ABI ErrorOr< basic_file_status > status() const
bool operator==(const directory_entry &RHS) const
bool operator!=(const directory_entry &RHS) const
file_type type() const
const std::string & path() const
directory_entry()=default
LLVM_ABI void replace_filename(const Twine &Filename, file_type Type, basic_file_status Status=basic_file_status())
Definition Path.cpp:1180
directory_iterator - Iterates through the entries in path.
bool operator!=(const directory_iterator &RHS) const
directory_iterator(const directory_entry &de, std::error_code &ec, bool follow_symlinks=true)
directory_iterator(const Twine &path, std::error_code &ec, bool follow_symlinks=true)
directory_iterator()=default
Construct end iterator.
const directory_entry & operator*() const
directory_iterator & increment(std::error_code &ec)
bool operator==(const directory_iterator &RHS) const
const directory_entry * operator->() const
Represents the result of a call to sys::fs::status().
Definition FileSystem.h:214
file_status(file_type Type, perms Perms, dev_t Dev, nlink_t Links, ino_t Ino, time_t ATime, uint32_t ATimeNSec, time_t MTime, uint32_t MTimeNSec, uid_t UID, gid_t GID, off_t Size)
Definition FileSystem.h:233
LLVM_ABI uint32_t getLinkCount() const
LLVM_ABI friend bool equivalent(file_status A, file_status B)
Do file_status's represent the same thing?
file_status(file_type Type)
Definition FileSystem.h:230
LLVM_ABI UniqueID getUniqueID() const
This class represents a memory mapped file.
LLVM_ABI size_t size() const
Definition Path.cpp:1212
LLVM_ABI std::error_code sync() const
Write changes to disk and synchronize.
mapped_file_region(mapped_file_region &&Moved)
static LLVM_ABI int alignment()
@ priv
May modify via data, but changes are lost on destruction.
@ readonly
May only access map via const_data as read only.
@ readwrite
May access map via data and modify it. Written to path.
mapped_file_region & operator=(mapped_file_region &&Moved)
LLVM_ABI const char * const_data() const
Get a const view of the data.
Definition Path.cpp:1222
mapped_file_region(const mapped_file_region &)=delete
LLVM_ABI char * data() const
Definition Path.cpp:1217
mapped_file_region & operator=(const mapped_file_region &)=delete
LLVM_ABI mapped_file_region(sys::fs::file_t fd, mapmode mode, size_t length, uint64_t offset, std::error_code &ec, const char *name=nullptr)
void pop()
Goes up one level if Level > 0.
bool operator==(const recursive_directory_iterator &RHS) const
void no_push()
Does not go down into the current directory_entry.
int level() const
Gets the current level. Starting path is at level 0.
const directory_entry * operator->() const
recursive_directory_iterator & increment(std::error_code &ec)
recursive_directory_iterator(const Twine &path, std::error_code &ec, bool follow_symlinks=true)
const directory_entry & operator*() const
bool no_push_request() const
Returns true if no_push has been called for this directory_entry.
bool operator!=(const recursive_directory_iterator &RHS) const
LLVM_ABI std::error_code directory_iterator_construct(DirIterState &, StringRef, bool)
LLVM_ABI std::error_code directory_iterator_destruct(DirIterState &)
LLVM_ABI std::error_code directory_iterator_increment(DirIterState &)
LLVM_ABI std::error_code readlink(const Twine &path, SmallVectorImpl< char > &output)
Read the target of a symbolic link.
LLVM_ABI bool is_regular_file(const basic_file_status &status)
Does status represent a regular file?
Definition Path.cpp:1136
LLVM_ABI bool can_execute(const Twine &Path)
Can we execute this file?
LLVM_ABI bool is_symlink_file(const basic_file_status &status)
Does status represent a symlink file?
Definition Path.cpp:1150
perms operator&(perms l, perms r)
Definition FileSystem.h:104
LLVM_ABI std::error_code closeFile(file_t &F)
Close the file object.
perms operator|(perms l, perms r)
Definition FileSystem.h:100
std::error_code openFileForReadWrite(const Twine &Name, int &ResultFD, CreationDisposition Disp, OpenFlags Flags, unsigned Mode=0666)
Opens the file with the given name in a write-only or read-write mode, returning its open file descri...
LLVM_ABI std::error_code rename(const Twine &from, const Twine &to)
Rename from to to.
LLVM_ABI Error readNativeFileToEOF(file_t FileHandle, SmallVectorImpl< char > &Buffer, ssize_t ChunkSize=DefaultReadChunkSize)
Reads from FileHandle until EOF, appending to Buffer in chunks of size ChunkSize.
Definition Path.cpp:1227
perms & operator&=(perms &l, perms r)
Definition FileSystem.h:112
LLVM_ABI ErrorOr< perms > getPermissions(const Twine &Path)
Get file permissions.
Definition Path.cpp:1189
bool can_write(const Twine &Path)
Can we write this file?
Definition FileSystem.h:483
LLVM_ABI std::error_code create_hard_link(const Twine &to, const Twine &from)
Create a hard link from from to to, or return an error.
perms operator~(perms x)
Definition FileSystem.h:116
LLVM_ABI std::error_code openFile(const Twine &Name, int &ResultFD, CreationDisposition Disp, FileAccess Access, OpenFlags Flags, unsigned Mode=0666)
Opens a file with the specified creation disposition, access mode, and flags and returns a file descr...
std::error_code resize_file_before_mapping_readwrite(int FD, uint64_t Size)
Resize FD to Size before mapping mapped_file_region::readwrite.
Definition FileSystem.h:424
LLVM_ABI std::error_code getPotentiallyUniqueFileName(const Twine &Model, SmallVectorImpl< char > &ResultPath)
Get a unique name, not currently exisiting in the filesystem.
Definition Path.cpp:966
LLVM_ABI std::error_code access(const Twine &Path, AccessMode Mode)
Can the file be accessed?
LLVM_ABI ErrorOr< space_info > disk_space(const Twine &Path)
Get disk space usage information.
LLVM_ABI bool is_other(const basic_file_status &status)
Does this status represent something that exists but is not a directory or regular file?
Definition Path.cpp:1164
LLVM_ABI std::error_code getPotentiallyUniqueTempFileName(const Twine &Prefix, StringRef Suffix, SmallVectorImpl< char > &ResultPath)
Get a unique temporary file name, not currently exisiting in the filesystem.
Definition Path.cpp:973
perms & operator|=(perms &l, perms r)
Definition FileSystem.h:108
LLVM_ABI Expected< size_t > readNativeFile(file_t FileHandle, MutableArrayRef< char > Buf)
Reads Buf.size() bytes from FileHandle into Buf.
LLVM_ABI unsigned getUmask()
Get file creation mode mask of the process.
LLVM_ABI bool exists(const basic_file_status &status)
Does file exist?
Definition Path.cpp:1107
LLVM_ABI Expected< file_t > openNativeFile(const Twine &Name, CreationDisposition Disp, FileAccess Access, OpenFlags Flags, unsigned Mode=0666)
Opens a file with the specified creation disposition, access mode, and flags and returns a platform-s...
@ OF_OpenDirectory
Allow opening a directory.
Definition FileSystem.h:811
@ OF_Delete
The returned handle can be used for deleting the file.
Definition FileSystem.h:793
@ OF_ChildInherit
When a child process is launched, this file should remain open in the child process.
Definition FileSystem.h:797
@ OF_Text
The file should be opened in text mode on platforms like z/OS that make this distinction.
Definition FileSystem.h:777
@ OF_UpdateAttributes
Open the file with sufficient access to update its metadata.
Definition FileSystem.h:806
@ OF_CRLF
The file should use a carriage linefeed '\r '.
Definition FileSystem.h:781
@ OF_UpdateAtime
Force files Atime to be updated on access.
Definition FileSystem.h:801
@ OF_TextWithCRLF
The file should be opened in text mode and use a carriage linefeed '\r '.
Definition FileSystem.h:786
@ OF_Append
The file should be opened in append mode.
Definition FileSystem.h:789
LLVM_ABI file_t getStdoutHandle()
Return an open handle to standard out.
file_type
An enumeration for the file system's view of the type.
Definition FileSystem.h:54
LLVM_ABI std::error_code create_link(const Twine &to, const Twine &from)
Create a link from from to to.
Expected< file_t > openNativeFileForWrite(const Twine &Name, CreationDisposition Disp, OpenFlags Flags, unsigned Mode=0666)
Opens the file with the given name in a write-only or read-write mode, returning its open file descri...
LLVM_ABI std::error_code create_symlink(const Twine &to, const Twine &from)
Create a symbolic link from from to to.
LLVM_ABI void expand_tilde(const Twine &path, SmallVectorImpl< char > &output)
Expands ~ expressions to the user's home directory.
LLVM_ABI std::error_code getUniqueID(const Twine Path, UniqueID &Result)
Definition Path.cpp:851
LLVM_ABI std::error_code createUniqueFile(const Twine &Model, int &ResultFD, SmallVectorImpl< char > &ResultPath, OpenFlags Flags=OF_None, unsigned Mode=all_read|all_write)
Create a uniquely named file.
Definition Path.cpp:891
LLVM_ABI std::error_code lockFile(int FD, LockKind Kind=LockKind::Exclusive)
Lock the file.
LLVM_ABI std::error_code remove(const Twine &path, bool IgnoreNonExisting=true)
Remove path.
LLVM_ABI std::error_code set_current_path(const Twine &path)
Set the current path.
LLVM_ABI std::error_code real_path(const Twine &path, SmallVectorImpl< char > &output, bool expand_tilde=false)
Collapse all .
@ CD_OpenExisting
CD_OpenExisting - When opening a file:
Definition FileSystem.h:759
@ CD_OpenAlways
CD_OpenAlways - When opening a file:
Definition FileSystem.h:764
@ CD_CreateAlways
CD_CreateAlways - When opening a file:
Definition FileSystem.h:749
@ CD_CreateNew
CD_CreateNew - When opening a file:
Definition FileSystem.h:754
LLVM_ABI Expected< size_t > readNativeFileSlice(file_t FileHandle, MutableArrayRef< char > Buf, uint64_t Offset)
Reads Buf.size() bytes from FileHandle at offset Offset into Buf.
LLVM_ABI std::error_code changeFileOwnership(int FD, uint32_t Owner, uint32_t Group)
Change ownership of a file.
Expected< file_t > openNativeFileForReadWrite(const Twine &Name, CreationDisposition Disp, OpenFlags Flags, unsigned Mode=0666)
Opens the file with the given name in a write-only or read-write mode, returning its open file descri...
LLVM_ABI std::string getMainExecutable(const char *argv0, void *MainExecAddr)
Return the path to the main executable, given the value of argv[0] from program startup and the addre...
LLVM_ABI void createUniquePath(const Twine &Model, SmallVectorImpl< char > &ResultPath, bool MakeAbsolute)
Create a potentially unique file name but does not create it.
Definition Path.cpp:862
std::error_code openFileForWrite(const Twine &Name, int &ResultFD, CreationDisposition Disp=CD_CreateAlways, OpenFlags Flags=OF_None, unsigned Mode=0666)
Opens the file with the given name in a write-only or read-write mode, returning its open file descri...
LLVM_ABI Expected< file_t > openNativeFileForRead(const Twine &Name, OpenFlags Flags=OF_None, SmallVectorImpl< char > *RealPath=nullptr)
Opens the file with the given name in a read-only mode, returning its open file descriptor.
LLVM_ABI std::error_code create_directories(const Twine &path, bool IgnoreExisting=true, perms Perms=owner_all|group_all)
Create all the non-existent directories in path.
Definition Path.cpp:993
LLVM_ABI bool status_known(const basic_file_status &s)
Is status available?
Definition Path.cpp:1111
LLVM_ABI std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD, SmallVectorImpl< char > &ResultPath, OpenFlags Flags=OF_None)
Create a file in the system temporary directory.
Definition Path.cpp:936
LLVM_ABI file_type get_file_type(const Twine &Path, bool Follow=true)
Does status represent a directory?
Definition Path.cpp:1115
LLVM_ABI std::error_code make_absolute(SmallVectorImpl< char > &path)
Make path an absolute path.
Definition Path.cpp:979
LLVM_ABI std::error_code resize_file_sparse(int FD, uint64_t Size)
Resize path to size with sparse files explicitly enabled.
LLVM_ABI std::error_code copy_file(const Twine &From, const Twine &To)
Copy the contents of From to To.
Definition Path.cpp:1042
LLVM_ABI std::error_code createUniqueDirectory(const Twine &Prefix, SmallVectorImpl< char > &ResultPath)
Definition Path.cpp:958
LLVM_ABI std::error_code tryLockFile(int FD, std::chrono::milliseconds Timeout=std::chrono::milliseconds(0), LockKind Kind=LockKind::Exclusive)
Try to locks the file during the specified time.
LLVM_ABI std::error_code current_path(SmallVectorImpl< char > &result)
Get the current path.
LockKind
An enumeration for the lock kind.
LLVM_ABI std::error_code resize_file(int FD, uint64_t Size)
Resize path to size.
LLVM_ABI file_t convertFDToNativeFile(int FD)
Converts from a Posix file descriptor number to a native file handle.
LLVM_ABI std::error_code status(const Twine &path, file_status &result, bool follow=true)
Get file status as if by POSIX stat().
LLVM_ABI std::error_code create_directory(const Twine &path, bool IgnoreExisting=true, perms Perms=owner_all|group_all)
Create the directory in path.
LLVM_ABI std::error_code is_local(const Twine &path, bool &result)
Is the file mounted on a local filesystem?
LLVM_ABI std::error_code openFileForRead(const Twine &Name, int &ResultFD, OpenFlags Flags=OF_None, SmallVectorImpl< char > *RealPath=nullptr)
Opens the file with the given name in a read-only mode, returning its open file descriptor.
LLVM_ABI std::error_code remove_directories(const Twine &path, bool IgnoreErrors=true)
Recursively delete a directory.
LLVM_ABI bool equivalent(file_status A, file_status B)
Do file_status's represent the same thing?
LLVM_ABI file_t getStderrHandle()
Return an open handle to standard error.
LLVM_ABI std::error_code setLastAccessAndModificationTime(int FD, TimePoint<> AccessTime, TimePoint<> ModificationTime)
Set the file modification and access time.
LLVM_ABI ErrorOr< MD5::MD5Result > md5_contents(int FD)
Compute an MD5 hash of a file's contents.
Definition Path.cpp:1073
LLVM_ABI file_t getStdinHandle()
Return an open handle to standard in.
LLVM_ABI std::error_code unlockFile(int FD)
Unlock the file.
std::error_code file_size(const Twine &Path, uint64_t &Result)
Get file size.
Definition FileSystem.h:696
LLVM_ABI std::error_code setPermissions(const Twine &Path, perms Permissions)
Set file permissions.
LLVM_ABI bool is_directory(const basic_file_status &status)
Does status represent a directory?
Definition Path.cpp:1122
std::chrono::time_point< std::chrono::system_clock, D > TimePoint
A time point on the system clock.
Definition Chrono.h:34
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:577
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
@ Timeout
Reached timeout while waiting for the owner to release the lock.
@ Other
Any other memory.
Definition ModRef.h:68
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
This class wraps the platform specific file handle/descriptor type to provide an unified representati...
Definition File.h:21
Keeps state for the directory_iterator.
Keeps state for the recursive_directory_iterator.
std::vector< directory_iterator > Stack
This class wraps the platform specific file handle/descriptor type to provide an unified representati...
Definition File.h:21
space_info - Self explanatory.
Definition FileSystem.h:68