Home
last modified time | relevance | path

Searched refs:CallerFeatureMap (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DBuiltinTargetFeatures.h38 const llvm::StringMap<bool> &CallerFeatureMap; variable
64 : CallerFeatureMap.lookup(F); in getAndFeatures()
77 CallerFeatureMap.lookup(FeatureList.substr(SubexpressionStart)); in getAndFeatures()
89 TargetFeatures(const llvm::StringMap<bool> &CallerFeatureMap) in TargetFeatures() argument
90 : CallerFeatureMap(CallerFeatureMap) {} in TargetFeatures()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp2098 llvm::StringMap<bool> CallerFeatureMap; in checkTypeSupport() local
2099 Context.getFunctionFeatureMap(CallerFeatureMap, FD); in checkTypeSupport()
2100 RISCV().checkRVVTypeSupport(Ty, Loc, D, CallerFeatureMap); in checkTypeSupport()
2105 llvm::StringMap<bool> CallerFeatureMap; in checkTypeSupport() local
2106 Context.getFunctionFeatureMap(CallerFeatureMap, FD); in checkTypeSupport()
2107 if (!Builtin::evaluateRequiredTargetFeatures("sve", CallerFeatureMap)) { in checkTypeSupport()
2108 if (!Builtin::evaluateRequiredTargetFeatures("sme", CallerFeatureMap)) in checkTypeSupport()
H A DSemaDecl.cpp8777 llvm::StringMap<bool> CallerFeatureMap; in CheckVariableDeclarationType() local
8778 Context.getFunctionFeatureMap(CallerFeatureMap, FD); in CheckVariableDeclarationType()
8780 if (!Builtin::evaluateRequiredTargetFeatures("sve", CallerFeatureMap)) { in CheckVariableDeclarationType()
8781 if (!Builtin::evaluateRequiredTargetFeatures("sme", CallerFeatureMap)) { in CheckVariableDeclarationType()
8798 llvm::StringMap<bool> CallerFeatureMap; in CheckVariableDeclarationType() local
8799 Context.getFunctionFeatureMap(CallerFeatureMap, FD); in CheckVariableDeclarationType()
8801 CallerFeatureMap); in CheckVariableDeclarationType()
H A DSemaChecking.cpp3241 llvm::StringMap<bool> CallerFeatureMap; in checkCall() local
3242 Context.getFunctionFeatureMap(CallerFeatureMap, CallerFD); in checkCall()
3243 if (!CallerFeatureMap.contains("sme")) in checkCall()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2729 llvm::StringMap<bool> CallerFeatureMap; in checkTargetFeatures() local
2730 CGM.getContext().getFunctionFeatureMap(CallerFeatureMap, FD); in checkTargetFeatures()
2739 FeatureList, CallerFeatureMap) && !IsHipStdPar) { in checkTargetFeatures()
2767 if (!CallerFeatureMap.lookup(Feature)) { in checkTargetFeatures()
2780 if (F.getValue() && (!CallerFeatureMap.lookup(F.getKey()) || in checkTargetFeatures()
2781 !CallerFeatureMap.find(F.getKey())->getValue()) && in checkTargetFeatures()