Searched refs:T1 (Results 51 - 75 of 101) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsRegisterInfo.cpp229 Reserved.set(Mips::T1);
H A DMips16ISelLowering.cpp340 #define T1 P "1", P "2", 0, 0, P "5", P "6", 0, 0, P "9", P "10" macro
341 #define T P "0" , T1
344 {nullptr, T1 };
H A DMips16InstrInfo.cpp382 // we use T1 for the second register, if we need to save something away.
409 SecondRegSavedTo = Mips::T1;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h284 template <typename T1, typename T2>
286 T1 *I, T1 *E, T2 *Dest,
287 typename std::enable_if<std::is_same<typename std::remove_const<T1>::type,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp508 /// the resulting T1 is unwrapped sufficiently that it is never an array type,
511 /// as (effectively) required by [expr.const.cast]p7 replacing T1's qualifiers
514 unwrapCastAwayConstnessLevel(ASTContext &Context, QualType &T1, QualType &T2) { argument
537 // case, so there is no corresponding "reference to" in T1 to remove.) This
541 } else if (Context.UnwrapSimilarTypes(T1, T2)) {
545 int T1Class = Classify(T1);
553 T1 = Unwrap(T1);
559 // We've unwrapped at least one level. If the resulting T1 is a (possibly
561 // T2 is considered to correspond to T1
[all...]
H A DSemaOverload.cpp4016 QualType T1 = SCS1.getToType(2);
4018 T1 = S.Context.getCanonicalType(T1);
4021 QualType UnqualT1 = S.Context.getUnqualifiedArrayType(T1, T1Quals);
4035 if (isa<ArrayType>(T1) && T1Quals)
4036 T1 = S.Context.getQualifiedType(UnqualT1, T1Quals);
4039 if (T2.isMoreQualifiedThan(T1))
4041 if (T1.isMoreQualifiedThan(T2))
4101 // yield similar types T1 and T2 (C++ 4.4), respectively, and the
4102 // cv-qualification signature of type T1 i
[all...]
H A DSemaInit.cpp4174 QualType cv1T1, QualType T1,
4207 QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
4223 T1, Sequence))
4231 TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1,
4461 QualType T1 = cv1T1.getUnqualifiedType();
4465 assert(!S.CompareReferenceRelationship(Initializer->getBeginLoc(), T1, T2) &&
4481 if (AllowRValues && (T1RecordType = T1->getAs<RecordType>()) &&
4482 S.isCompleteType(Kind.getLocation(), T1)) {
4573 cv3T3 = T1;
4591 S.CompareReferenceRelationship(DeclLoc, T1, cv3T
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dexception.S286 SAVE_REG(t1, T1, sp) ;\
347 RESTORE_REG(t1, T1, sp) ;\
447 SAVE_U_PCB_REG(t1, T1, k1)
541 RESTORE_U_PCB_REG(t1, T1, k1)
706 SAVE_U_PCB_REG(t1, T1, k1)
825 RESTORE_U_PCB_REG(t1, T1, k1)
H A Dswtch.S110 RESTORE_U_PCB_REG(t1, T1, k1)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp361 if (auto *T1 = dyn_cast<TagDecl>(D1))
363 if (T1->getFirstDecl() == T2->getFirstDecl())
H A DASTContext.cpp5392 bool ASTContext::UnwrapSimilarArrayTypes(QualType &T1, QualType &T2) { argument
5395 auto *AT1 = getAsArrayType(T1);
5412 T1 = AT1->getElementType();
5420 /// If T1 and T2 are both pointer types of the same kind, or both array types
5421 /// with the same bound, unwraps layers from T1 and T2 until a pointer type is
5422 /// unwrapped. Top-level qualifiers on T1 and T2 are ignored.
5430 bool ASTContext::UnwrapSimilarTypes(QualType &T1, QualType &T2) { argument
5431 UnwrapSimilarArrayTypes(T1, T2);
5433 const auto *T1PtrType = T1->getAs<PointerType>();
5436 T1
5466 hasSimilarType(QualType T1, QualType T2) argument
5478 hasCvrSimilarType(QualType T1, QualType T2) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1122 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, argument
1124 tok::TokenKind TokArray[] = {T1, T2};
1127 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3, argument
1129 tok::TokenKind TokArray[] = {T1, T2, T3};
1494 bool ConsumeAndStoreUntil(tok::TokenKind T1, argument
1498 return ConsumeAndStoreUntil(T1, T1, Toks, StopAtSemi, ConsumeFinalToken);
1500 bool ConsumeAndStoreUntil(tok::TokenKind T1, tok::TokenKind T2,
/freebsd-11-stable/crypto/openssl/crypto/
H A Dsparccpuid.S253 ! UltraSPARC T1 24
262 ! It would be possible to detect specifically US-T1 by instrumenting
263 ! fmul8ulx16, which is emulated on T1 and as such accounts for quite
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DScaledNumber.h746 #define SCALED_NUMBER_COMPARE_TO_TYPE(op, T1, T2) \
748 bool operator op(const ScaledNumber<DigitsT> &L, T1 R) { \
752 bool operator op(T1 L, const ScaledNumber<DigitsT> &R) { \
H A DVirtualFileSystem.h508 template <typename T1, typename T2>
509 YAMLVFSEntry(T1 &&VPath, T2 &&RPath)
510 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)) {}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp242 static RecordRecTy *resolveRecordTypes(RecordRecTy *T1, RecordRecTy *T2) {
246 Stack.insert(Stack.end(), T1->classes_begin(), T1->classes_end());
262 RecTy *llvm::resolveTypes(RecTy *T1, RecTy *T2) {
263 if (T1 == T2)
264 return T1;
266 if (RecordRecTy *RecTy1 = dyn_cast<RecordRecTy>(T1)) {
271 if (T1->typeIsConvertibleTo(T2))
273 if (T2->typeIsConvertibleTo(T1))
274 return T1;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp1312 // T1 = V6_vaslw T0, 16
1313 // T2 = V6_vmpyiewuh_acc T1, Vs, Vt
1316 SDValue T1 = getInstr(Hexagon::V6_vaslw, dl, ResTy, {T0, S16}, DAG); local
1318 {T1, Vs, Vt}, DAG);
1384 SDValue T1 = getInstr(Hexagon::V6_vmpyiewuh_acc, dl, ResTy, local
1387 SDValue S2 = getInstr(Hexagon::V6_vasrw, dl, ResTy, {T1, S16}, DAG);
1414 SDValue T1 = getInstr(Hexagon::V6_vlsrw, dl, ResTy, {LoVec(T0), S16}, DAG); local
1426 SDValue T4 = DAG.getNode(ISD::ADD, dl, ResTy, {T1, LoVec(T3)});
H A DHexagonISelLowering.cpp2039 SDValue T1 = DAG.getNode(ISD::BSWAP, dl, MVT::i32, T0); local
2040 return DAG.getBitcast(VecTy, T1);
2066 SDValue T1 = DAG.getNode(ISD::BSWAP, dl, MVT::i64, T0); local
2067 return DAG.getBitcast(VecTy, T1);
2250 SDValue T1 = DAG.getNode(ISD::SHL, dl, MVT::i32, {Vs[3], S8}); local
2252 SDValue B1 = DAG.getNode(ISD::OR, dl, MVT::i32, {Vs[2], T1});
2373 SDValue T1 = DAG.getNode(ISD::SRL, dl, MVT::i64, T0, S0); local
2377 T1 = DAG.getTargetExtractSubreg(Hexagon::isub_lo, dl, MVT::i32, T1);
2378 T1
[all...]
H A DHexagonISelDAGToDAG.cpp1039 // T0 needs to match: (add T1 T2):
1042 // T0 matched: (add T1 T2)
1043 SDValue T1 = T0.getOperand(0); local
1045 // T1 needs to match: (shl y c)
1046 if (T1.getOpcode() != ISD::SHL)
1048 SDValue C = T1.getOperand(1);
1069 SDValue NewAdd = DAG.getNode(ISD::ADD, DL, VT, T1.getOperand(0), D);
1101 // T0 must match: (and T1 Mask)
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_termios.c303 undefined_flag2(c_oflag,V,TDLY,V,T0,V,T1);
403 undefined_flag2(c_oflag,V,TDLY,V,T0,V,T1);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp706 /// Returns true if token 'T1' or 'T2' was found.
708 bool Parser::ConsumeAndStoreUntil(tok::TokenKind T1, tok::TokenKind T2, argument
716 if (Tok.is(T1) || Tok.is(T2)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp178 template <typename T1, typename... Ts>
179 void CheckFailed(const Twine &Message, const T1 &V1, const Ts &...Vs) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1079 template <typename T1, typename... Ts> struct TypeList<T1, Ts...> {
1081 using head = T1;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DRetainSummaryManager.h728 template <class T1, class T2, class... Others>
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DRetainSummaryManager.cpp108 template <class T1, class T2, class... Others>
111 if (auto Out = hasAnyEnabledAttrOf<T1>(D, QT))

Completed in 262 milliseconds

12345