Home
last modified time | relevance | path

Searched refs:VMI (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPContext.cpp197 isVariantApplicableInContextHelper(const VariantMatchInfo &VMI, in isVariantApplicableInContextHelper() argument
209 if (VMI.RequiredTraits.test( in isVariantApplicableInContextHelper()
212 if (VMI.RequiredTraits.test( in isVariantApplicableInContextHelper()
248 for (unsigned Bit : VMI.RequiredTraits.set_bits()) { in isVariantApplicableInContextHelper()
267 IsActiveTrait = llvm::all_of(VMI.ISATraits, [&](StringRef RawString) { in isVariantApplicableInContextHelper()
271 IsActiveTrait = llvm::all_of(VMI.ISATraits, [&](StringRef RawString) { in isVariantApplicableInContextHelper()
283 for (TraitProperty Property : VMI.ConstructTraits) { in isVariantApplicableInContextHelper()
308 assert(isSubset<TraitProperty>(VMI.ConstructTraits, Ctx.ConstructTraits) && in isVariantApplicableInContextHelper()
323 const VariantMatchInfo &VMI, const OMPContext &Ctx, in isVariantApplicableInContext() argument
326 VMI, Ctx, /* ConstructMatches */ nullptr, DeviceOrImplementationSetOnly); in isVariantApplicableInContext()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRemoveRedundantDebugValues.cpp97 auto VMI = VariableMap.find(Var); in reduceDbgValsForwardScan() local
104 if (MI.isDebugValueList() && VMI != VariableMap.end()) { in reduceDbgValsForwardScan()
105 VariableMap.erase(VMI); in reduceDbgValsForwardScan()
112 if (VMI != VariableMap.end()) in reduceDbgValsForwardScan()
113 VariableMap.erase(VMI); in reduceDbgValsForwardScan()
118 if (VMI == VariableMap.end() || in reduceDbgValsForwardScan()
119 VMI->second.first->getReg() != Loc.getReg() || in reduceDbgValsForwardScan()
120 VMI->second.second != MI.getDebugExpression()) { in reduceDbgValsForwardScan()
H A DAssignmentTrackingAnalysis.cpp2588 auto [VMI, Inserted] = VariableMap.try_emplace(Key); in removeRedundantDbgLocsUsingForwardScan()
2592 if (Inserted || VMI->second.first != Loc.Values || in removeRedundantDbgLocsUsingForwardScan()
2593 VMI->second.second != Loc.Expr) { in removeRedundantDbgLocsUsingForwardScan()
2594 VMI->second = {Loc.Values, Loc.Expr}; in removeRedundantDbgLocsUsingForwardScan()
/freebsd/sys/contrib/device-tree/Bindings/crypto/
H A Dfsl-dcp.txt6 - interrupts : Should contain MXS DCP interrupt numbers, VMI IRQ and DCP IRQ
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPContext.h193 isVariantApplicableInContext(const VariantMatchInfo &VMI, const OMPContext &Ctx,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp454 auto [VMI, Inserted] = VariableMap.try_emplace(Key); in DbgVariableRecordsRemoveRedundantDbgInstrsUsingForwardScan()
463 if (Inserted || VMI->second.first != Values || in DbgVariableRecordsRemoveRedundantDbgInstrsUsingForwardScan()
464 VMI->second.second != DVR.getExpression()) { in DbgVariableRecordsRemoveRedundantDbgInstrsUsingForwardScan()
466 VMI->second = {Values, DVR.getExpression()}; in DbgVariableRecordsRemoveRedundantDbgInstrsUsingForwardScan()
468 VMI->second = {Values, nullptr}; in DbgVariableRecordsRemoveRedundantDbgInstrsUsingForwardScan()
H A DInlineFunction.cpp1182 for (ValueToValueMapTy::iterator VMI = VMap.begin(), VMIE = VMap.end(); in AddAliasScopeMetadata() local
1183 VMI != VMIE; ++VMI) { in AddAliasScopeMetadata()
1184 if (const Instruction *I = dyn_cast<Instruction>(VMI->first)) { in AddAliasScopeMetadata()
1185 if (!VMI->second) in AddAliasScopeMetadata()
1188 Instruction *NI = dyn_cast<Instruction>(VMI->second); in AddAliasScopeMetadata()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp2769 VariantMatchInfo &VMI) const { in getAsVariantMatchInfo()
2784 VMI.addTrait(CondVal->isZero() ? TraitProperty::user_condition_false in getAsVariantMatchInfo()
2788 VMI.addTrait(TraitProperty::user_condition_false, "<condition>"); in getAsVariantMatchInfo()
2798 VMI.addTrait(TraitProperty::user_condition_false, in getAsVariantMatchInfo()
2803 VMI.addTrait(Set.Kind, Property.Kind, Property.RawString, ScorePtr); in getAsVariantMatchInfo()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp563 VariantMatchInfo VMI; in ParseOpenMPDeclareBeginVariantDirective() local
564 TI.getAsVariantMatchInfo(ASTCtx, VMI); in ParseOpenMPDeclareBeginVariantDirective()
578 if (isVariantApplicableInContext(VMI, OMPCtx, in ParseOpenMPDeclareBeginVariantDirective()
2625 VariantMatchInfo VMI; in ParseOpenMPDeclarativeOrExecutableDirective() local
2626 TI.getAsVariantMatchInfo(ASTContext, VMI); in ParseOpenMPDeclarativeOrExecutableDirective()
2628 VMIs.push_back(VMI); in ParseOpenMPDeclarativeOrExecutableDirective()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp271 const auto &VMI = GUIDToValueIdMap.find(ValGUID); in getValueId() local
274 assert(VMI != GUIDToValueIdMap.end() && in getValueId()
276 return VMI->second; in getValueId()
627 auto VMI = GUIDToValueIdMap.find(ValGUID); in getValueId() local
628 if (VMI == GUIDToValueIdMap.end()) in getValueId()
630 return VMI->second; in getValueId()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp189 const auto &VMI = GUIDToValueIdMap.find(ValGUID); in getValueId() local
192 assert(VMI != GUIDToValueIdMap.end() && in getValueId()
194 return VMI->second; in getValueId()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1657 auto VMI = FuncInfo.ValueMap.find(V); in handleDebugValue() local
1658 if (VMI != FuncInfo.ValueMap.end()) { in handleDebugValue()
1659 Register Reg = VMI->second; in handleDebugValue()
2308 DenseMap<const Value *, Register>::iterator VMI = FuncInfo.ValueMap.find(V); in CopyToExportRegsIfNeeded() local
2309 if (VMI != FuncInfo.ValueMap.end()) { in CopyToExportRegsIfNeeded()
2312 CopyValueToVirtualRegister(V, VMI->second); in CopyToExportRegsIfNeeded()
6255 VMI = FuncInfo.ValueMap.find(V); in EmitFuncArgumentDbgValue() local
6256 if (VMI != FuncInfo.ValueMap.end()) { in EmitFuncArgumentDbgValue()
6258 RegsForValue RFV(V->getContext(), TLI, DAG.getDataLayout(), VMI->second, in EmitFuncArgumentDbgValue()
6265 Op = MachineOperand::CreateReg(VMI->second, false); in EmitFuncArgumentDbgValue()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp7178 VariantMatchInfo VMI; in ActOnOpenMPCall() local
7180 TI.getAsVariantMatchInfo(Context, VMI); in ActOnOpenMPCall()
7181 if (!isVariantApplicableInContext(VMI, OMPCtx, in ActOnOpenMPCall()
7185 VMIs.push_back(VMI); in ActOnOpenMPCall()
7572 VariantMatchInfo VMI; in ActOnOpenMPDeclareVariantDirective() local
7573 TI.getAsVariantMatchInfo(getASTContext(), VMI); in ActOnOpenMPDeclareVariantDirective()
7575 VMI.ConstructTraits, in ActOnOpenMPDeclareVariantDirective()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h9541 llvm::omp::VariantMatchInfo &VMI) const;