History log of /llvm-project/llvm/lib/TextAPI/Utils.cpp (Results 1 – 11 of 11)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: llvmorg-21-init, llvmorg-19.1.7, llvmorg-19.1.6, llvmorg-19.1.5, llvmorg-19.1.4
# 2d48489c 15-Nov-2024 Cyndy Ishida <cyndy_ishida@apple.com>

[Clang][Darwin] Introduce `SubFrameworks` as a SDK default location (#115048)

* Have clang always append & pass System/Library/SubFrameworks when determining default sdk search paths.
* Teach clang

[Clang][Darwin] Introduce `SubFrameworks` as a SDK default location (#115048)

* Have clang always append & pass System/Library/SubFrameworks when determining default sdk search paths.
* Teach clang-installapi to traverse there for framework input.
* Teach llvm-readtapi that the library files (TBD or binary) in there should be considered private.

resolves: rdar://137457006

show more ...


Revision tags: llvmorg-19.1.3, llvmorg-19.1.2, llvmorg-19.1.1, llvmorg-19.1.0, llvmorg-19.1.0-rc4, llvmorg-19.1.0-rc3, llvmorg-19.1.0-rc2, llvmorg-19.1.0-rc1, llvmorg-20-init, llvmorg-18.1.8
# d4a01549 13-Jun-2024 Jay Foad <jay.foad@amd.com>

[llvm-project] Fix typo "seperate" (#95373)


Revision tags: llvmorg-18.1.7
# 89d09373 20-May-2024 Kazu Hirata <kazu@google.com>

[llvm] Use StringRef::contains (NFC) (#92710)


Revision tags: llvmorg-18.1.6
# 062f6fe3 10-May-2024 Cyndy Ishida <cyndy_ishida@apple.com>

[InstallAPI] Support mutually exclusive parse options (#90686)

Projects like libc use mutually exclusive macros to compile files
multiple times and then merge the result into the final library. For

[InstallAPI] Support mutually exclusive parse options (#90686)

Projects like libc use mutually exclusive macros to compile files
multiple times and then merge the result into the final library. For
installapi to accept these, we'd need to parse the same declarations in
different ways. This patch adds the basic pipelining for installapi to
create the correct TBD file.

* -Xproject allows: -fmodules, -fobjc-arc, fvisibility=hidden, prefix
headers
* -Xlabel allows: -D and -U settings
* Error on 'private' and 'public' labels -X<label>
* Xplatform allows: -iframework <path> This is to support the case where
zippered frameworks want to pass in iOSSupport search path.

show more ...


Revision tags: llvmorg-18.1.5
# 4c18681a 18-Apr-2024 Cyndy Ishida <cyndy_ishida@apple.com>

[InstallAPI] Add support for aliased exports (#88750)

Apple's ld supports alias_lists, described as
```
-alias_list filename
The specified filename contains a list of aliases. T

[InstallAPI] Add support for aliased exports (#88750)

Apple's ld supports alias_lists, described as
```
-alias_list filename
The specified filename contains a list of aliases. The symbol name and its alias are on one
line, separated by whitespace. Lines starting with # are ignored.
```
To handle this for installapi-produced TBD files, pass along the same
input and account for it in verification.

show more ...


Revision tags: llvmorg-18.1.4, llvmorg-18.1.3
# 487720fc 25-Mar-2024 Cyndy Ishida <cyndy_ishida@apple.com>

Reapply "[InstallAPI] Add --extra* and --exclude* cli options for header input (#86522)" (#86574)


# 2d7df316 25-Mar-2024 Cyndy Ishida <cyndy_ishida@apple.com>

Revert "[InstallAPI] Add --extra* and --exclude* cli options for header input (#86522)"

This reverts commit b7d8c6188986f62573b9516fe27fdd0c7df1aaf9. And
This reverts commit 2d40f179124f874aca4cf114

Revert "[InstallAPI] Add --extra* and --exclude* cli options for header input (#86522)"

This reverts commit b7d8c6188986f62573b9516fe27fdd0c7df1aaf9. And
This reverts commit 2d40f179124f874aca4cf1145fdbc42fb8fb17f3.

It caused a build failure i'll need to reproduce.
` error: could not convert ‘Rule’ from ‘llvm::Regex’ to ‘llvm::Expected<llvm::Regex>’`

show more ...


# b7d8c618 25-Mar-2024 Cyndy Ishida <cyndy_ishida@apple.com>

[TextAPI] Add missing include for Expected type


# 2d40f179 25-Mar-2024 Cyndy Ishida <cyndy_ishida@apple.com>

[InstallAPI] Add --extra* and --exclude* cli options for header input (#86522)

InstallAPI takes a json list of headers that is typically generated from
a build system like Xcode based on a project'

[InstallAPI] Add --extra* and --exclude* cli options for header input (#86522)

InstallAPI takes a json list of headers that is typically generated from
a build system like Xcode based on a project's attributes. Sometimes,
maintainers may want to alter this for tapi input. Using e.g.
`--extra-public-headers`, users can manipulate what headers will be used
for TBD file generation.

show more ...


Revision tags: llvmorg-18.1.2, llvmorg-18.1.1, llvmorg-18.1.0, llvmorg-18.1.0-rc4, llvmorg-18.1.0-rc3, llvmorg-18.1.0-rc2
# 7189219e 03-Feb-2024 Cyndy Ishida <cyndy_ishida@apple.com>

[readtapi] Add support for stubify-ing directories (#76885)

When given a directory input `llvm-readtapi` traverses through the
directory to find dylibs or tbd files to operate on. TBD files will be

[readtapi] Add support for stubify-ing directories (#76885)

When given a directory input `llvm-readtapi` traverses through the
directory to find dylibs or tbd files to operate on. TBD files will be
created with the same base file name as the dylib. Symlinks should be
created if the input is one.

This also introduces options to delete input files which are defined as
library files that existed before `readtapi -stubify` was invoked. Also
the ability to delete private libraries where private libraries are in a
predefined file system locations on darwin based platforms.

show more ...


Revision tags: llvmorg-18.1.0-rc1, llvmorg-19-init
# c6f29dbb 20-Dec-2023 Cyndy Ishida <cyndy_ishida@apple.com>

[readtapi] Setup simple stubify support (#76075)

Stubify broadly takes either tbd files or binary dylibs and turns them
into tbd files. In future patches, stubify will also allow additional
inform

[readtapi] Setup simple stubify support (#76075)

Stubify broadly takes either tbd files or binary dylibs and turns them
into tbd files. In future patches, stubify will also allow additional
information to be embedded into the final TBD output too.

Add Util APIs to TextAPI for common operations used by readtapi for now.

show more ...