HomeSort by: relevance | last modified time | path
    Searched refs:CheckType (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 144 // If we have a CheckType/CheckChildType/Record node followed by a
152 Matcher *CheckType = MatcherPtr.release();
153 Matcher *CheckOpcode = CheckType->takeNext();
158 CheckOpcode->setNext(CheckType);
159 CheckType->setNext(Tail);
370 Matcher::CheckType));
377 // If the CheckType isn't at the start of the list, see if we can move
407 // If all the options are CheckType's, we can form the SwitchType, woot.
412 Matcher* M = FindNodeWithKind(NewOptionsToMatch[i], Matcher::CheckType);
DAGISelMatcher.h 64 CheckType, // Fail if not correct type.
128 case CheckType:
170 // to them. For example, we'll pass in a CheckType node as an argument to
502 : Matcher(CheckType), Type(type), ResNo(resno) {}
508 return N->getKind() == CheckType;
522 /// every child does a CheckType, but is much faster.
DAGISelMatcherEmitter.cpp 576 case Matcher::CheckType:
1049 case Matcher::CheckType: return "OPC_CheckType"; break;
GlobalISelEmitter.cpp 1829 StringRef CheckType = Insts.size() == 1 ?
1831 Table << MatchTable::Opcode(CheckType) << MatchTable::Comment("MI")
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopAccessAnalysis.h 689 bool CheckType = true);
708 ScalarEvolution &SE, bool CheckType = true);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
MIPatternMatch.h 507 struct CheckType {
509 CheckType(const LLT Ty) : Ty(Ty) {}
516 inline CheckType m_SpecificType(LLT Ty) { return Ty; }
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp 1544 static void ProfileIsAOpInit(FoldingSetNodeID &ID, RecTy *CheckType,
1546 ID.AddPointer(CheckType);
1550 IsAOpInit *IsAOpInit::get(RecTy *CheckType, Init *Expr) {
1554 ProfileIsAOpInit(ID, CheckType, Expr);
1560 IsAOpInit *I = new (Allocator) IsAOpInit(CheckType, Expr);
1566 ProfileIsAOpInit(ID, CheckType, Expr);
1572 if (TI->getType()->typeIsConvertibleTo(CheckType))
1575 if (isa<RecordRecTy>(CheckType)) {
1579 if (!CheckType->typeIsConvertibleTo(TI->getType()) || isa<DefInit>(Expr))
1592 return get(CheckType, NewExpr)->Fold()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 1129 bool StrictCheck, bool CheckType) {
1136 if (CheckType && PtrA->getType() != PtrB->getType())
1236 ScalarEvolution &SE, bool CheckType) {
1242 getPointersDiff(PtrA, PtrB, DL, SE, /*StrictCheck=*/true, CheckType);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
Sema.cpp 1819 auto CheckType = [&](QualType Ty) {
1848 CheckType(Ty);
1852 CheckType(ParamTy);
1853 CheckType(FPTy->getReturnType());
1856 CheckType(FNPTy->getReturnType());
SemaDeclCXX.cpp 5783 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
5873 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
5892 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
5912 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
5916 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 1041 RecTy *CheckType;
1044 IsAOpInit(RecTy *CheckType, Init *Expr)
1045 : TypedInit(IK_IsAOpInit, IntRecTy::get()), CheckType(CheckType),
1054 static IsAOpInit *get(RecTy *CheckType, Init *Expr);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 2569 CheckType(const unsigned char *MatcherTable, unsigned &MatcherIndex, SDValue N,
2584 return ::CheckType(MatcherTable, MatcherIndex, N.getOperand(ChildNo), TLI,
2707 Result = !::CheckType(Table, Index, N, SDISel.TLI,
2712 Result = !::CheckType(Table, Index, N.getValue(Res), SDISel.TLI,
3138 if (!::CheckType(MatcherTable, MatcherIndex, N, TLI,
3145 if (!::CheckType(MatcherTable, MatcherIndex, N.getValue(Res), TLI,

Completed in 48 milliseconds