Searched refs:IsQuad (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetBuiltins.h100 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { argument
103 if (IsQuad)
/freebsd-10.3-release/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp202 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { argument
205 if (IsQuad)
1008 const bool &IsQuad,
1016 if ((Count == 3 || Count == 4) && IsQuad) {
1043 if (IsQuad && !HasLanePostfix) {
1095 const bool &IsQuad) {
1097 && IsQuad;
1098 const bool IsVMull = NameRef.count("mull") && !IsQuad;
1105 const bool &IsQuad,
1121 NormedProto += IsQuad
1006 GenerateRegisterCheckPatternForLoadStores(const StringRef &NameRef, const std::string& OutTypeCode, const bool &IsQuad, const bool &HasDupPostfix, const bool &HasLanePostfix, const size_t Count, std::string &RegisterSuffix) argument
1093 IsSpecialLaneMultiply(const StringRef &NameRef, const bool &HasLanePostfix, const bool &IsQuad) argument
1102 NormalizeProtoForRegisterPatternCreation(const std::string &Name, const std::string &Proto, const bool &HasNPostfix, const bool &IsQuad, const bool &HasLanePostfix, const bool &HasDupPostfix, std::string &NormedProto) argument
1187 GenerateRegisterCheckPattern(const std::string &Name, const std::string &Proto, const std::string &OutTypeCode, const bool &HasNPostfix, const bool &IsQuad, const bool &HasLanePostfix, const bool &HasDupPostfix, const size_t &TBNumber, std::string &RegisterSuffix) argument
1297 bool IsQuad = false; local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp331 int IsQuad = Type.isQuad(); local
335 return shift ? 7 : (8 << IsQuad) - 1;
338 return shift ? 15 : (4 << IsQuad) - 1;
340 return shift ? 31 : (2 << IsQuad) - 1;
343 return shift ? 63 : (1 << IsQuad) - 1;
346 return (4 << IsQuad) - 1;
349 return (2 << IsQuad) - 1;
352 return (1 << IsQuad) - 1;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp1613 int IsQuad = TypeFlags.isQuad(); local
1617 return llvm::VectorType::get(CGF->Int8Ty, V1Ty ? 1 : (8 << IsQuad));
1621 return llvm::VectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad));
1623 return llvm::VectorType::get(CGF->Int32Ty, V1Ty ? 1 : (2 << IsQuad));
1626 return llvm::VectorType::get(CGF->Int64Ty, V1Ty ? 1 : (1 << IsQuad));
1628 return llvm::VectorType::get(CGF->FloatTy, V1Ty ? 1 : (2 << IsQuad));
1630 return llvm::VectorType::get(CGF->DoubleTy, V1Ty ? 1 : (1 << IsQuad));

Completed in 273 milliseconds