OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitsRecTy
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/TableGen/
Record.cpp
117
if (isa<BitRecTy>(Ty) || isa<
BitsRecTy
>(Ty) || isa<IntRecTy>(Ty))
125
if(const
BitsRecTy
*BitsTy = dyn_cast<
BitsRecTy
>(RHS))
130
BitsRecTy
*
BitsRecTy
::get(unsigned Sz) {
131
static std::vector<
BitsRecTy
*> Shared;
134
BitsRecTy
*&Ty = Shared[Sz];
136
Ty = new
BitsRecTy
(Sz);
140
std::string
BitsRecTy
::getAsString() const {
144
Init *
BitsRecTy
::convertValue(UnsetInit *UI)
[
all
...]
TGParser.cpp
101
// assigning to a field of
BitsRecTy
, which must have a BitsInit
111
Init *BI = V->convertInitializerTo(
BitsRecTy
::get(BitList.size()));
703
return
BitsRecTy
::get(Val);
1048
MHSTy =
BitsRecTy
::get(MHSbits->getNumBits());
[
all
...]
/external/llvm/include/llvm/TableGen/
Record.h
33
class
BitsRecTy
;
178
///
BitsRecTy
- 'bits<n>' - Represent a fixed number of bits
180
class
BitsRecTy
: public RecTy {
182
explicit
BitsRecTy
(unsigned Sz) : RecTy(BitsRecTyKind), Size(Sz) {}
188
static
BitsRecTy
*get(unsigned Sz);
648
/// BitsInit - { a, b, c } - Represents an initializer for a
BitsRecTy
value.
[
all
...]
Completed in 74 milliseconds