Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/utils/TableGen/
H A DRISCVVEmitter.cpp40 std::string OverloadedName; member
505 StringRef OverloadedName = R->getValueAsString("OverloadedName"); in createRVVIntrinsics() local
576 Name, SuffixStr, OverloadedName, OverloadedSuffixStr, IRName, in createRVVIntrinsics()
591 Name, SuffixStr, OverloadedName, OverloadedSuffixStr, IRName, in createRVVIntrinsics()
603 Name, SuffixStr, OverloadedName, OverloadedSuffixStr, MaskedIRName, in createRVVIntrinsics()
617 Name, SuffixStr, OverloadedName, OverloadedSuffixStr, in createRVVIntrinsics()
638 SR.OverloadedName = OverloadedName.str(); in createRVVIntrinsics()
715 R.OverloadedName = SR.OverloadedName.c_str(); in createRVVIntrinsicRecords()
/src/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp991 OverloadedName = NewName.split("_").first.str(); in RVVIntrinsic()
993 OverloadedName = NewOverloadedName.str(); in RVVIntrinsic()
997 OverloadedName += "_" + OverloadedSuffix.str(); in RVVIntrinsic()
999 updateNamesAndPolicy(IsMasked, hasPolicy(), Name, BuiltinName, OverloadedName, in RVVIntrinsic()
1144 std::string &OverloadedName, Policy &PolicyAttrs, bool HasFRMRoundModeOp) { in updateNamesAndPolicy() argument
1149 OverloadedName += suffix; in updateNamesAndPolicy()
1203 if (Record.OverloadedName == nullptr || in operator <<()
1204 StringRef(Record.OverloadedName).empty()) in operator <<()
1207 OS << "\"" << Record.OverloadedName << "\","; in operator <<()
/src/contrib/llvm-project/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h387 std::string OverloadedName; variable
406 llvm::StringRef OverloadedName, llvm::StringRef OverloadedSuffix,
479 std::string &OverloadedName,
518 const char *OverloadedName; member
/src/contrib/llvm-project/clang/include/clang/Basic/
H A Driscv_vector.td502 OverloadedName = MName,
544 OverloadedName = MName,
1373 OverloadedName = "vmv_v" in {
1902 OverloadedName = "vfmv_v" in
1982 let OverloadedName = "vfcvt_x" in
1985 let OverloadedName = "vfcvt_xu" in
1988 let OverloadedName = "vfcvt_f" in {
1997 let OverloadedName = "vfwcvt_x" in
2000 let OverloadedName = "vfwcvt_xu" in
2006 let OverloadedName = "vfncvt_x" in
[all …]
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
448 let OverloadedName = NAME;
591 let OverloadedName = overloaded_name;
650 OverloadedName = NAME # "_" # s_p[0] in {
666 OverloadedName = NAME # "_" # s_p[0] in {
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaRISCV.cpp379 std::string OverloadedName; in InitRVVIntrinsic() local
380 if (!Record.OverloadedName) in InitRVVIntrinsic()
381 OverloadedName = StringRef(Record.Name).split("_").first.str(); in InitRVVIntrinsic()
383 OverloadedName = Record.OverloadedName; in InitRVVIntrinsic()
385 OverloadedName += "_" + OverloadedSuffixStr.str(); in InitRVVIntrinsic()
391 OverloadedName, PolicyAttrs, in InitRVVIntrinsic()
405 OverloadIntrinsics[OverloadedName]; in InitRVVIntrinsic()