Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h531 unsigned NoCfCheck : 1; variable
618 bool isNoCfCheck() const { return NoCfCheck; } in isNoCfCheck()
685 ID.AddBoolean(NoCfCheck); in Profile()
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DForceFunctionAttrs.cpp45 .Case("nocf_check", Attribute::NoCfCheck) in parseAttrKind()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DFunction.h517 bool doesNoCfCheck() const { return hasFnAttribute(Attribute::NoCfCheck); } in doesNoCfCheck()
H A DAttributes.td110 def NoCfCheck : EnumAttr<"nocf_check">;
H A DInstrTypes.h1552 bool doesNoCfCheck() const { return hasFnAttr(Attribute::NoCfCheck); }
H A DInstructions.h3776 bool doesNoCfCheck() const { return hasFnAttr(Attribute::NoCfCheck); }
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp826 case Attribute::NoCfCheck: in constructFunction()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DAttributes.cpp302 if (hasAttribute(Attribute::NoCfCheck)) in getAsString()
H A DVerifier.cpp1481 case Attribute::NoCfCheck: in isFuncOnlyAttr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h3495 bool producesResult, bool noCallerSavedRegs, bool NoCfCheck) {
3501 (NoCfCheck ? NoCfCheckMask : 0);
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCall.cpp825 FI->NoCfCheck = info.getNoCfCheck(); in create()
1899 FuncAttrs.addAttribute(llvm::Attribute::NoCfCheck); in ConstructAttributeList()
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1185 case Attribute::NoCfCheck: return 1ULL << 57; in getRawAttributeMask()
1369 return Attribute::NoCfCheck; in getAttrFromCode()
/freebsd-12.1/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp656 case Attribute::NoCfCheck: in getAttrKindEncoding()
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp1252 case lltok::kw_nocf_check: B.addAttribute(Attribute::NoCfCheck); break; in ParseFnAttributeValuePairs()