/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
toolchain/lex/helpers.cpp
30 строк
1 KB
Jon Ross-Perkins
Improve parsing large integers (#6908)
16 мар 2026, 23:00
Не верифицирован
16 мар 2026, 23:00
c5761d2
Код
Авторство
О чём код?
// 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(Diagnostics::Emitter<const char*>& emitter, llvm::StringRef text) -> bool { // Integer parsing has poor scaling characteristics for extremely large digit // amounts. We've done some performance work on this, but this limit exists to // avoid really extreme cases. // // 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 = 10000; 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