mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This is a primarily automated change:
- Search & replace for capitalization
-
`(CARBON_DIAGNOSTIC\((?:\n\s+)?\w+,(?:\n\s+)?\s\w+,(?:\n\s+)?\s")([A-Z])`
- `$1\L$2`
- Search & replace for period
-
`(CARBON_DIAGNOSTIC\((?:\n\s+)?\w+,(?:\n\s+)?\s\w+,(?:\n\s+)?\s"(?:[^)]|\n)+)\.("[,)])`
- `$1$2`
- Limited search & replace for `ERROR: ` -> `error: ` in streamed things
- Leaving a TODO for command_line because there's more cleanup that can
be done there
- Modify diagnostic_consumer.cpp
- ERROR -> error
- WARNING -> warning
---------
Co-authored-by: Richard Smith <richard@metafoo.co.uk>
33 lines
1.2 KiB
C++
33 lines
1.2 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#include "toolchain/lex/helpers.h"
|
|
|
|
namespace Carbon::Lex {
|
|
|
|
auto CanLexInt(DiagnosticEmitter<const char*>& emitter, llvm::StringRef text)
|
|
-> bool {
|
|
// llvm::getAsInteger is used for parsing, but it's quadratic and visibly slow
|
|
// on large integer values. This limit exists to avoid hitting those limits.
|
|
// Per https://github.com/carbon-language/carbon-lang/issues/980, it may be
|
|
// feasible to optimize integer parsing in order to address performance if
|
|
// this limit becomes an issue.
|
|
//
|
|
// 2^128 would be 39 decimal digits or 128 binary. In either case, this limit
|
|
// is far above the threshold for normal ints.
|
|
constexpr size_t DigitLimit = 1000;
|
|
if (text.size() > DigitLimit) {
|
|
CARBON_DIAGNOSTIC(
|
|
TooManyDigits, Error,
|
|
"found a sequence of {0} digits, which is greater than the "
|
|
"limit of {1}",
|
|
size_t, size_t);
|
|
emitter.Emit(text.begin(), TooManyDigits, text.size(), DigitLimit);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} // namespace Carbon::Lex
|