Home
last modified time | relevance | path

Searched refs:OverloadedName (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Driscv_vector.td366 OverloadedName = MName,
383 OverloadedName = MName,
933 OverloadedName = "vmv_v" in {
1249 OverloadedName = "vfmv_v" in {
1259 let OverloadedName = "vfcvt_rtz_xu" in {
1264 let OverloadedName = "vfcvt_rtz_x" in {
1272 let OverloadedName = "vfwcvt_rtz_xu" in {
1277 let OverloadedName = "vfwcvt_rtz_x" in {
1282 let OverloadedName = "vfwcvt_f" in {
1290 let OverloadedName = "vfwcvt_f" in {
[all …]
H A Driscv_andes_vector.td75 OverloadedName = NAME in
86 OverloadedName = NAME in
100 OverloadedName = NAME in {
168 OverloadedName = NAME in {
H A Driscv_sifive_vector.td33 let OverloadedName = name;
97 let OverloadedName = NAME,
105 let OverloadedName = NAME,
113 let OverloadedName = NAME,
H A Driscv_vector_common.td156 // If empty, default OverloadedName is sub string of `Name` which end of first
159 string OverloadedName = "";
161 // If not empty, each OverloadedName will have this appended after an
453 let OverloadedName = NAME;
627 let OverloadedName = overloaded_name;
698 OverloadedName = NAME # "_" # s_p[0] in {
714 OverloadedName = NAME # "_" # s_p[0] in {
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DRISCVVEmitter.cpp39 std::string OverloadedName; member
626 StringRef OverloadedName = R->getValueAsString("OverloadedName"); in createRVVIntrinsics() local
697 Name, SuffixStr, OverloadedName, OverloadedSuffixStr, IRName, in createRVVIntrinsics()
712 Name, SuffixStr, OverloadedName, OverloadedSuffixStr, IRName, in createRVVIntrinsics()
724 Name, SuffixStr, OverloadedName, OverloadedSuffixStr, MaskedIRName, in createRVVIntrinsics()
738 Name, SuffixStr, OverloadedName, OverloadedSuffixStr, in createRVVIntrinsics()
759 SR.OverloadedName = OverloadedName.str(); in createRVVIntrinsics()
808 R.OverloadedName = SR.OverloadedName.c_str(); in createRVVIntrinsicRecords()
/freebsd/contrib/llvm-project/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h389 std::string OverloadedName; variable
408 llvm::StringRef OverloadedName, llvm::StringRef OverloadedSuffix,
433 llvm::StringRef getOverloadedName() const { return OverloadedName; } in getOverloadedName()
482 std::string &OverloadedName,
494 const char *OverloadedName; member
/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp988 OverloadedName = NewName.split("_").first.str(); in RVVIntrinsic()
990 OverloadedName = NewOverloadedName.str(); in RVVIntrinsic()
994 OverloadedName += "_" + OverloadedSuffix.str(); in RVVIntrinsic()
996 updateNamesAndPolicy(IsMasked, hasPolicy(), Name, BuiltinName, OverloadedName, in RVVIntrinsic()
1140 std::string &OverloadedName, Policy &PolicyAttrs, bool HasFRMRoundModeOp) { in updateNamesAndPolicy() argument
1145 OverloadedName += suffix; in updateNamesAndPolicy()
1215 if (Record.OverloadedName == nullptr || in operator <<()
1216 StringRef(Record.OverloadedName).empty()) in operator <<()
1219 OS << "/*OverloadedName=*/\"" << Record.OverloadedName << "\", "; in operator <<()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaRISCV.cpp369 std::string OverloadedName; in InitRVVIntrinsic() local
370 if (!Record.OverloadedName) in InitRVVIntrinsic()
371 OverloadedName = StringRef(Record.Name).split("_").first.str(); in InitRVVIntrinsic()
373 OverloadedName = Record.OverloadedName; in InitRVVIntrinsic()
375 OverloadedName += "_" + OverloadedSuffixStr.str(); in InitRVVIntrinsic()
381 OverloadedName, PolicyAttrs, in InitRVVIntrinsic()
395 OverloadIntrinsics[OverloadedName]; in InitRVVIntrinsic()