|
Revision tags: llvmorg-20.1.0, llvmorg-20.1.0-rc3, llvmorg-20.1.0-rc2, llvmorg-20.1.0-rc1, llvmorg-21-init, llvmorg-19.1.7, llvmorg-19.1.6, llvmorg-19.1.5, llvmorg-19.1.4, 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, llvmorg-18.1.7, llvmorg-18.1.6, llvmorg-18.1.5, llvmorg-18.1.4, llvmorg-18.1.3, 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, llvmorg-18.1.0-rc1, llvmorg-19-init, llvmorg-17.0.6, llvmorg-17.0.5, llvmorg-17.0.4, llvmorg-17.0.3, llvmorg-17.0.2, llvmorg-17.0.1, llvmorg-17.0.0, llvmorg-17.0.0-rc4, llvmorg-17.0.0-rc3, llvmorg-17.0.0-rc2, llvmorg-17.0.0-rc1, llvmorg-18-init, llvmorg-16.0.6, llvmorg-16.0.5, llvmorg-16.0.4, llvmorg-16.0.3, llvmorg-16.0.2, llvmorg-16.0.1, llvmorg-16.0.0, llvmorg-16.0.0-rc4, llvmorg-16.0.0-rc3, llvmorg-16.0.0-rc2, llvmorg-16.0.0-rc1, llvmorg-17-init, llvmorg-15.0.7, llvmorg-15.0.6, llvmorg-15.0.5, llvmorg-15.0.4, llvmorg-15.0.3, llvmorg-15.0.2, llvmorg-15.0.1, llvmorg-15.0.0, llvmorg-15.0.0-rc3, llvmorg-15.0.0-rc2, llvmorg-15.0.0-rc1, llvmorg-16-init |
|
| #
f9f8693b |
| 06-Jul-2022 |
Michael Jones <[email protected]> |
[libc] add printf hexadecimal float conversion
This patch adds the %a/A conversions to printf, as well as the compiler flag to disable floating point handling entirely. This will allow our printf im
[libc] add printf hexadecimal float conversion
This patch adds the %a/A conversions to printf, as well as the compiler flag to disable floating point handling entirely. This will allow our printf implementation to display every type of argument allowed by printf, although some formats are still incomplete.
Reviewed By: sivachandra
Differential Revision: https://reviews.llvm.org/D129240
show more ...
|
|
Revision tags: llvmorg-14.0.6 |
|
| #
88b80139 |
| 10-Jun-2022 |
Michael Jones <[email protected]> |
[libc] add integer writing to printf
This patch adds %n to printf, as well as a compiler flag to disable it. This is due to it having serious security issues when misused.
Reviewed By: lntue
Diffe
[libc] add integer writing to printf
This patch adds %n to printf, as well as a compiler flag to disable it. This is due to it having serious security issues when misused.
Reviewed By: lntue
Differential Revision: https://reviews.llvm.org/D127517
show more ...
|
|
Revision tags: llvmorg-14.0.5, llvmorg-14.0.4 |
|
| #
6a22b185 |
| 10-May-2022 |
Michael Jones <[email protected]> |
[libc] add printf converter
This adds the main pieces of the last piece of printf, the converter. This takes the completed format section from the parser and then converts it to a string for the wri
[libc] add printf converter
This adds the main pieces of the last piece of printf, the converter. This takes the completed format section from the parser and then converts it to a string for the writer, which is why it was the last piece to be written. So far it supports chars and strings, but more pieces are coming. Additionally, it supports replacing all of the conversion functions with user supplied versions at compile time to allow for additional functionality.
Reviewed By: sivachandra
Differential Revision: https://reviews.llvm.org/D125327
show more ...
|
|
Revision tags: llvmorg-14.0.3, llvmorg-14.0.2, llvmorg-14.0.1 |
|
| #
945fa672 |
| 07-Apr-2022 |
Michael Jones <[email protected]> |
[libc][NFC] add index mode to printf parser
This patch is a followup to the previous patch which implemented the main printf parsing logic as well as sequential mode. This patch adds index mode.
Re
[libc][NFC] add index mode to printf parser
This patch is a followup to the previous patch which implemented the main printf parsing logic as well as sequential mode. This patch adds index mode.
Reviewed By: sivachandra
Differential Revision: https://reviews.llvm.org/D123424
show more ...
|
| #
4f4752ee |
| 04-Apr-2022 |
Michael Jones <[email protected]> |
[libc][NFC] implement printf parser
This patch adds the sequential mode implementation of the printf parser, as well as unit tests for it. In addition it adjusts the surrounding files to accomodate
[libc][NFC] implement printf parser
This patch adds the sequential mode implementation of the printf parser, as well as unit tests for it. In addition it adjusts the surrounding files to accomodate changes in the design found in the implementation process.
Reviewed By: sivachandra
Differential Revision: https://reviews.llvm.org/D123339
show more ...
|