Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/
HDCGFunctionInfo.h514 unsigned NoCfCheck : 1; variable
600 bool isNoCfCheck() const { return NoCfCheck; } in isNoCfCheck()
667 ID.AddBoolean(NoCfCheck); in Profile()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
HDForceFunctionAttrs.cpp46 .Case("nocf_check", Attribute::NoCfCheck) in parseAttrKind()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDFunction.h541 bool doesNoCfCheck() const { return hasFnAttribute(Attribute::NoCfCheck); } in doesNoCfCheck()
HDAttributes.td116 def NoCfCheck : EnumAttr<"nocf_check">;
HDInstrTypes.h1716 bool doesNoCfCheck() const { return hasFnAttr(Attribute::NoCfCheck); }
HDInstructions.h3837 bool doesNoCfCheck() const { return hasFnAttr(Attribute::NoCfCheck); }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
HDCodeExtractor.cpp917 case Attribute::NoCfCheck: in constructFunction()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
HDAttributes.cpp341 if (hasAttribute(Attribute::NoCfCheck)) in getAsString()
HDVerifier.cpp1508 case Attribute::NoCfCheck: in isFuncOnlyAttr()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDType.h3562 bool producesResult, bool noCallerSavedRegs, bool NoCfCheck) {
3568 (NoCfCheck ? NoCfCheckMask : 0);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGCall.cpp821 FI->NoCfCheck = info.getNoCfCheck(); in create()
1917 FuncAttrs.addAttribute(llvm::Attribute::NoCfCheck); in ConstructAttributeList()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
HDBitcodeReader.cpp1273 case Attribute::NoCfCheck: return 1ULL << 57; in getRawAttributeMask()
1481 return Attribute::NoCfCheck; in getAttrFromCode()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
HDBitcodeWriter.cpp665 case Attribute::NoCfCheck: in getAttrKindEncoding()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
HDLLParser.cpp1292 case lltok::kw_nocf_check: B.addAttribute(Attribute::NoCfCheck); break; in ParseFnAttributeValuePairs()