Home
last modified time | relevance | path

Searched refs:NoCfCheck (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h587 unsigned NoCfCheck : 1; variable
675 bool isNoCfCheck() const { return NoCfCheck; } in isNoCfCheck()
743 ID.AddBoolean(NoCfCheck); in Profile()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DForceFunctionAttrs.cpp53 .Case("nocf_check", Attribute::NoCfCheck) in parseAttrKind()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DFunction.h605 bool doesNoCfCheck() const { return hasFnAttribute(Attribute::NoCfCheck); } in doesNoCfCheck()
H A DAttributes.td149 def NoCfCheck : EnumAttr<"nocf_check">;
H A DInstrTypes.h1843 bool doesNoCfCheck() const { return hasFnAttr(Attribute::NoCfCheck); }
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp975 case Attribute::NoCfCheck: in constructFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DAttributes.cpp437 if (hasAttribute(Attribute::NoCfCheck)) in getAsString()
H A DVerifier.cpp1661 case Attribute::NoCfCheck: in isFuncOnlyAttr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h3688 bool producesResult, bool noCallerSavedRegs, bool NoCfCheck,
3695 (NoCfCheck ? NoCfCheckMask : 0) |
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCall.cpp825 FI->NoCfCheck = info.getNoCfCheck(); in create()
2098 FuncAttrs.addAttribute(llvm::Attribute::NoCfCheck); in ConstructAttributeList()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1286 case Attribute::NoCfCheck: return 1ULL << 57; in getRawAttributeMask()
1474 return Attribute::NoCfCheck; in getAttrFromCode()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp683 case Attribute::NoCfCheck: in getAttrKindEncoding()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp1397 case lltok::kw_nocf_check: B.addAttribute(Attribute::NoCfCheck); break; in parseFnAttributeValuePairs()