clang-tools 19.0.0git
Namespaces | Functions
NarrowingConversionsCheck.cpp File Reference
#include "NarrowingConversionsCheck.h"
#include "../utils/OptionsUtils.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/Expr.h"
#include "clang/AST/Type.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "llvm/ADT/APSInt.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/SmallVector.h"
#include <cstdint>

Go to the source code of this file.

Namespaces

namespace  clang
 ===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
 
namespace  clang::tidy
 
namespace  clang::tidy::cppcoreguidelines
 

Functions

static const BuiltinType * clang::tidy::cppcoreguidelines::getBuiltinType (const Expr &E)
 
static QualType clang::tidy::cppcoreguidelines::getUnqualifiedType (const Expr &E)
 
static APValue clang::tidy::cppcoreguidelines::getConstantExprValue (const ASTContext &Ctx, const Expr &E)
 
static bool clang::tidy::cppcoreguidelines::getIntegerConstantExprValue (const ASTContext &Context, const Expr &E, llvm::APSInt &Value)
 
static bool clang::tidy::cppcoreguidelines::getFloatingConstantExprValue (const ASTContext &Context, const Expr &E, llvm::APFloat &Value)
 
static IntegerRange clang::tidy::cppcoreguidelines::createFromType (const ASTContext &Context, const BuiltinType &T)
 
static bool clang::tidy::cppcoreguidelines::isWideEnoughToHold (const ASTContext &Context, const BuiltinType &FromType, const BuiltinType &ToType)
 
static bool clang::tidy::cppcoreguidelines::isWideEnoughToHold (const ASTContext &Context, const llvm::APSInt &IntegerConstant, const BuiltinType &ToType)
 
static bool clang::tidy::cppcoreguidelines::isFloatExactlyRepresentable (const ASTContext &Context, const llvm::APFloat &FloatConstant, const QualType &DestType)
 
static llvm::SmallString< 64 > clang::tidy::cppcoreguidelines::getValueAsString (const llvm::APSInt &Value, uint64_t HexBits)
 

Variable Documentation

◆ Lower

llvm::APSInt Lower

Definition at line 238 of file NarrowingConversionsCheck.cpp.

◆ Upper

llvm::APSInt Upper

Definition at line 239 of file NarrowingConversionsCheck.cpp.