clang 20.0.0git
|
#include "llvm/ADT/ImmutableList.h"
#include "llvm/ADT/ImmutableMap.h"
#include "llvm/ADT/ImmutableSet.h"
#include "llvm/Support/Allocator.h"
#include <cstdint>
#include <type_traits>
Go to the source code of this file.
Namespaces | |
namespace | clang |
The JSON file list parser is used to communicate input to InstallAPI. | |
namespace | clang::ento |
Macros | |
#define | REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, Type) |
Declares a program state trait for type Type called Name , and introduce a type named NameTy . | |
#define | REGISTER_FACTORY_WITH_PROGRAMSTATE(Type) |
Declares a factory for objects of type Type in the program state manager. | |
#define | CLANG_ENTO_PROGRAMSTATE_MAP(Key, Value) llvm::ImmutableMap<Key, Value> |
Helper for registering a map trait. | |
#define | REGISTER_MAP_WITH_PROGRAMSTATE(Name, Key, Value) |
Declares an immutable map of type NameTy , suitable for placement into the ProgramState. | |
#define | REGISTER_MAP_FACTORY_WITH_PROGRAMSTATE(Name, Key, Value) |
Declares an immutable map type Name and registers the factory for such maps in the program state, but does not add the map itself to the program state. | |
#define | REGISTER_SET_WITH_PROGRAMSTATE(Name, Elem) REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, llvm::ImmutableSet<Elem>) |
Declares an immutable set of type NameTy , suitable for placement into the ProgramState. | |
#define | REGISTER_SET_FACTORY_WITH_PROGRAMSTATE(Name, Elem) |
Declares an immutable set type Name and registers the factory for such sets in the program state, but does not add the set itself to the program state. | |
#define | REGISTER_LIST_WITH_PROGRAMSTATE(Name, Elem) REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, llvm::ImmutableList<Elem>) |
Declares an immutable list type NameTy , suitable for placement into the ProgramState. | |
#define | REGISTER_LIST_FACTORY_WITH_PROGRAMSTATE(Name, Elem) |
Declares an immutable list of type Name and registers the factory for such lists in the program state, but does not add the list itself to the program state. | |
Helper for registering a map trait.
If the map type were written directly in the invocation of REGISTER_TRAIT_WITH_PROGRAMSTATE, the comma in the template arguments would be treated as a macro argument separator, which is wrong. This allows the user to specify a map type in a way that the preprocessor can deal with.
Definition at line 73 of file ProgramStateTrait.h.
#define REGISTER_FACTORY_WITH_PROGRAMSTATE | ( | Type | ) |
Declares a factory for objects of type Type
in the program state manager.
The type must provide a ::Factory sub-class. Commonly used for ImmutableMap, ImmutableSet, ImmutableList. The macro should not be used inside namespaces.
Definition at line 55 of file ProgramStateTrait.h.
#define REGISTER_LIST_FACTORY_WITH_PROGRAMSTATE | ( | Name, | |
Elem | |||
) |
Declares an immutable list of type Name
and registers the factory for such lists in the program state, but does not add the list itself to the program state.
Useful for managing lifetime of lists that are used as elements of other program state data structures.
Definition at line 142 of file ProgramStateTrait.h.
#define REGISTER_LIST_WITH_PROGRAMSTATE | ( | Name, | |
Elem | |||
) | REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, llvm::ImmutableList<Elem>) |
Declares an immutable list type NameTy
, suitable for placement into the ProgramState.
This is implementing using llvm::ImmutableList.
The macro should not be used inside namespaces, or for traits that must be accessible from more than one translation unit.
Definition at line 135 of file ProgramStateTrait.h.
#define REGISTER_MAP_FACTORY_WITH_PROGRAMSTATE | ( | Name, | |
Key, | |||
Value | |||
) |
Declares an immutable map type Name
and registers the factory for such maps in the program state, but does not add the map itself to the program state.
Useful for managing lifetime of maps that are used as elements of other program state data structures.
Definition at line 95 of file ProgramStateTrait.h.
#define REGISTER_MAP_WITH_PROGRAMSTATE | ( | Name, | |
Key, | |||
Value | |||
) |
Declares an immutable map of type NameTy
, suitable for placement into the ProgramState.
This is implementing using llvm::ImmutableMap.
The macro should not be used inside namespaces, or for traits that must be accessible from more than one translation unit.
Definition at line 87 of file ProgramStateTrait.h.
#define REGISTER_SET_FACTORY_WITH_PROGRAMSTATE | ( | Name, | |
Elem | |||
) |
Declares an immutable set type Name
and registers the factory for such sets in the program state, but does not add the set itself to the program state.
Useful for managing lifetime of sets that are used as elements of other program state data structures.
Definition at line 119 of file ProgramStateTrait.h.
#define REGISTER_SET_WITH_PROGRAMSTATE | ( | Name, | |
Elem | |||
) | REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, llvm::ImmutableSet<Elem>) |
Declares an immutable set of type NameTy
, suitable for placement into the ProgramState.
This is implementing using llvm::ImmutableSet.
The macro should not be used inside namespaces, or for traits that must be accessible from more than one translation unit.
Definition at line 112 of file ProgramStateTrait.h.
#define REGISTER_TRAIT_WITH_PROGRAMSTATE | ( | Name, | |
Type | |||
) |
Declares a program state trait for type Type
called Name
, and introduce a type named NameTy
.
The macro should not be used inside namespaces.
Definition at line 34 of file ProgramStateTrait.h.