OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UnOpInit
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/TableGen/
TGParser.cpp
778
UnOpInit
::UnaryOp Code;
785
Code =
UnOpInit
::CAST;
797
Code =
UnOpInit
::HEAD;
801
Code =
UnOpInit
::TAIL;
805
Code =
UnOpInit
::EMPTY;
818
if (Code ==
UnOpInit
::HEAD ||
819
Code ==
UnOpInit
::TAIL ||
820
Code ==
UnOpInit
::EMPTY) {
837
if (Code ==
UnOpInit
::HEAD || Code ==
UnOpInit
::TAIL)
[
all
...]
Record.cpp
606
UnOpInit
*
UnOpInit
::get(UnaryOp opc, Init *lhs, RecTy *Type) {
608
static DenseMap<Key, std::unique_ptr<
UnOpInit
>> ThePool;
612
std::unique_ptr<
UnOpInit
> &I = ThePool[TheKey];
613
if (!I) I.reset(new
UnOpInit
(opc, lhs, Type));
617
Init *
UnOpInit
::Fold(Record *CurRec, MultiClass *CurMultiClass) const {
712
return const_cast<
UnOpInit
*>(this);
715
Init *
UnOpInit
::resolveReferences(Record &R, const RecordVal *RV) const {
719
return (
UnOpInit
::get(getOpcode(), lhs, getType()))->Fold(&R, nullptr);
723
std::string
UnOpInit
::getAsString() const
[
all
...]
/external/llvm/include/llvm/TableGen/
Record.h
676
///
UnOpInit
- !op (X) - Transform an init.
678
class
UnOpInit
: public OpInit {
686
UnOpInit
(UnaryOp opc, Init *lhs, RecTy *Type)
689
UnOpInit
(const
UnOpInit
&Other) = delete;
690
UnOpInit
&operator=(const
UnOpInit
&Other) = delete;
696
static
UnOpInit
*get(UnaryOp opc, Init *lhs, RecTy *Type);
702
return
UnOpInit
::get(getOpcode(), *Operands.begin(), getType());
[
all
...]
Completed in 44 milliseconds