Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td73 def OMP_CANCELLATION_CONSTRUCT_Parallel : ClauseVal<"parallel", 1, 1> {}
74 def OMP_CANCELLATION_CONSTRUCT_Loop : ClauseVal<"loop", 2, 1> {}
75 def OMP_CANCELLATION_CONSTRUCT_Sections : ClauseVal<"sections", 3, 1> {}
76 def OMP_CANCELLATION_CONSTRUCT_Taskgroup : ClauseVal<"taskgroup", 4, 1> {}
77 def OMP_CANCELLATION_CONSTRUCT_None : ClauseVal<"none", 5, 0> {
180 def OMP_GRAINSIZE_Strict : ClauseVal<"strict", 1, 1> {}
181 def OMP_GRAINSIZE_Unknown : ClauseVal<"unkonwn", 2, 0> { let isDefault = 1; }
238 def OMP_MEMORY_ORDER_SeqCst : ClauseVal<"seq_cst", 1, 1> {}
239 def OMP_MEMORY_ORDER_AcqRel : ClauseVal<"acq_rel", 2, 1> {}
240 def OMP_MEMORY_ORDER_Acquire : ClauseVal<"acquire", 3, 1> {}
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DDirectiveEmitter.h227 class ClauseVal : public BaseRecord {
229 explicit ClauseVal(const llvm::Record *Def) : BaseRecord(Def) {} in ClauseVal() function
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/Directive/
H A DDirectiveBase.td55 class ClauseVal<string n, int v, bit uv> {
93 list<ClauseVal> allowedClauseValues = [];
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenACC/
H A DACC.td87 def ACC_Default_none : ClauseVal<"none", 1, 1> { let isDefault = 1; }
88 def ACC_Default_present : ClauseVal<"present", 0, 1> {}
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDirectiveEmitter.cpp102 ClauseVal CVal{CV}; in GenerateEnumClauseVal()
377 ClauseVal CVal{CV}; in GenerateGetKindClauseVal()
391 ClauseVal CVal{CV}; in GenerateGetKindClauseVal()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h4229 void LLVMAddClause(LLVMValueRef LandingPad, LLVMValueRef ClauseVal);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3488 void LLVMAddClause(LLVMValueRef LandingPad, LLVMValueRef ClauseVal) { in LLVMAddClause() argument
3489 unwrap<LandingPadInst>(LandingPad)->addClause(unwrap<Constant>(ClauseVal)); in LLVMAddClause()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h2793 void addClause(Constant *ClauseVal);