OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitsRecTy
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp
75
if (const
BitsRecTy
*BitsTy = dyn_cast<
BitsRecTy
>(RHS))
80
BitsRecTy
*
BitsRecTy
::get(unsigned Sz) {
81
static std::vector<
BitsRecTy
*> Shared;
84
BitsRecTy
*&Ty = Shared[Sz];
86
Ty = new(Allocator)
BitsRecTy
(Sz);
90
std::string
BitsRecTy
::getAsString() const {
94
bool
BitsRecTy
::typeIsConvertibleTo(const RecTy *RHS) const {
96
return cast<
BitsRecTy
>(RHS)->Size == Size
[
all
...]
TGParser.cpp
181
// assigning to a field of
BitsRecTy
, which must have a BitsInit
191
Init *BI = V->getCastTo(
BitsRecTy
::get(BitList.size()));
839
return
BitsRecTy
::get(Val);
1468
MHSTy =
BitsRecTy
::get(MHSbits->getNumBits());
1475
RHSTy =
BitsRecTy
::get(RHSbits->getNumBits());
2031
VTy =
BitsRecTy
::get(Vbits->getNumBits());
2197
if (
BitsRecTy
*BitsRec = dyn_cast<
BitsRecTy
>(VI->getType())) {
2901
if (!BitList.empty() && isa<
BitsRecTy
>(Type)) {
2904
Type =
BitsRecTy
::get(BitList.size())
[
all
...]
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
SearchableTableEmitter.cpp
164
} else if (
BitsRecTy
*BI = dyn_cast<
BitsRecTy
>(Field.RecType)) {
228
if (isa<
BitsRecTy
>(Field.RecType) || isa<IntRecTy>(Field.RecType)) {
372
(Index.Fields[0].Enum || isa<
BitsRecTy
>(Index.Fields[0].RecType))) {
/src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h
120
class
BitsRecTy
: public RecTy {
123
explicit
BitsRecTy
(unsigned Sz) : RecTy(BitsRecTyKind), Size(Sz) {}
130
static
BitsRecTy
*get(unsigned Sz);
498
/// '{ a, b, c }' - Represents an initializer for a
BitsRecTy
value.
505
: TypedInit(IK_BitsInit,
BitsRecTy
::get(N)), NumBits(N) {}
1117
(isa<
BitsRecTy
>(T->getType()) &&
1118
cast<
BitsRecTy
>(T->getType())->getNumBits() > B)) &&
Completed in 39 milliseconds
Indexes created Tue Feb 24 01:34:59 UTC 2026