| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | SectionKind.h | 36 ReadOnly, enumerator 126 return K == ReadOnly || isMergeableCString() || in isReadOnly() 185 static SectionKind getReadOnly() { return get(ReadOnly); } in getReadOnly()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | DebugObjectManagerPlugin.cpp | 111 static constexpr sys::Memory::ProtectionFlags ReadOnly = variable 172 jitTargetAddressToPointer<void *>(Alloc->getTargetMemory(ReadOnly)), in finalizeAsync() 173 Alloc->getWorkingMemory(ReadOnly).size())); in finalizeAsync() 334 SingleReadOnlySegment[ReadOnly] = in finalizeWorkingMemory() 344 MutableArrayRef<char> WorkingMem = Alloc->getWorkingMemory(ReadOnly); in finalizeWorkingMemory()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ModuleSummaryIndex.h | 169 enum Flags { HaveGV = 1, ReadOnly = 2, WriteOnly = 4 }; enumerator 199 return RefAndFlags.getInt() & ReadOnly; in isReadOnly() 207 return RefAndFlags.getInt() & (ReadOnly | WriteOnly); in getAccessSpecifier() 210 unsigned BadAccessMask = ReadOnly | WriteOnly; in isValidAccessSpecifier() 217 RefAndFlags.setInt(RefAndFlags.getInt() | ReadOnly); in setReadOnly() 567 unsigned ReadOnly : 1; 842 GVarFlags(bool ReadOnly, bool WriteOnly, bool Constant, 844 : MaybeReadOnly(ReadOnly), MaybeWriteOnly(WriteOnly),
|
| H A D | IntrinsicsWebAssembly.td | 88 [IntrInaccessibleMemOrArgMemOnly, ReadOnly<ArgIndex<0>>, 94 [IntrInaccessibleMemOrArgMemOnly, ReadOnly<ArgIndex<0>>,
|
| H A D | Intrinsics.td | 103 // ReadOnly - The specified argument pointer is not written to through the 105 class ReadOnly<AttrIndex idx> : IntrinsicProperty { 553 ReadOnly<ArgIndex<0>>, NoCapture<ArgIndex<0>>, 622 WriteOnly<ArgIndex<0>>, ReadOnly<ArgIndex<1>>, 1259 ReadOnly<ArgIndex<1>>, 1288 [IntrArgMemOnly, ReadOnly<ArgIndex<0>>, 1298 ReadOnly<ArgIndex<0>>, 1574 ReadOnly<ArgIndex<0>>]>; 1579 ReadOnly<ArgIndex<1>>]>; 1591 WriteOnly<ArgIndex<0>>, ReadOnly<ArgIndex<1>>, [all …]
|
| H A D | Function.h | 558 return doesNotAccessMemory() || hasFnAttribute(Attribute::ReadOnly); in onlyReadsMemory() 561 addFnAttr(Attribute::ReadOnly); in setOnlyReadsMemory()
|
| H A D | InstrTypes.h | 1067 if (A == Attribute::ReadOnly || A == Attribute::NoCapture) 1694 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::ReadOnly) || 1793 return doesNotAccessMemory() || hasFnAttr(Attribute::ReadOnly); 1797 addAttribute(AttributeList::FunctionIndex, Attribute::ReadOnly); 2098 case Attribute::ReadOnly:
|
| H A D | IntrinsicsHexagon.td | 148 …y, NoCapture<ArgIndex<0>>, NoCapture<ArgIndex<1>>, WriteOnly<ArgIndex<0>>, ReadOnly<ArgIndex<1>>]>;
|
| H A D | Attributes.td | 197 def ReadOnly : EnumAttr<"readonly", [FnAttr, ParamAttr]>;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | FunctionAttrs.cpp | 296 AttrsToRemove.addAttribute(Attribute::ReadOnly); in addReadAttrs() 312 F->addFnAttr(ReadsMemory ? Attribute::ReadOnly : Attribute::ReadNone); in addReadAttrs() 580 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone; in determinePointerReadAttrs() 677 assert((R == Attribute::ReadOnly || R == Attribute::ReadNone) in addReadAttr() 688 A->removeAttr(Attribute::ReadOnly); in addReadAttr() 691 R == Attribute::ReadOnly ? ++NumReadOnlyArg : ++NumReadNoneArg; in addReadAttr() 850 if (K == Attribute::ReadOnly) { in addArgumentAttrs() 851 ReadAttr = Attribute::ReadOnly; in addArgumentAttrs()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCChecker.cpp | 39 ReadOnly.insert(Hexagon::PC); in init() 40 ReadOnly.insert(Hexagon::C9_8); in init() 511 if (ReadOnly.find(Register) != ReadOnly.end()) { in checkRegistersReadOnly()
|
| H A D | HexagonMCChecker.h | 73 std::set<unsigned> ReadOnly; variable
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenIntrinsics.h | 156 ReadOnly, enumerator
|
| H A D | IntrinsicEmitter.cpp | 698 case CodeGenIntrinsic::ReadOnly: in EmitAttributes()
|
| /freebsd-13.1/stand/efi/include/ |
| H A D | efiprot.h | 93 BOOLEAN ReadOnly; member 324 BOOLEAN ReadOnly; member
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUAliasAnalysis.cpp | 167 F->hasParamAttribute(ArgNo, Attribute::ReadOnly))) { in pointsToConstantMemory()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 2185 bool HasUnwindClobber, bool ReadOnly, in UpdateAsmCallInst() argument 2202 else if (ReadOnly) in UpdateAsmCallInst() 2204 llvm::Attribute::ReadOnly); in UpdateAsmCallInst() 2295 bool ReadOnly = true, ReadNone = true; in EmitAsmStmt() local 2400 ReadOnly = ReadNone = false; in EmitAsmStmt() 2552 ReadOnly = ReadNone = false; in EmitAsmStmt() 2624 ReadOnly, ReadNone, InNoMergeAttributedStmt, S, in EmitAsmStmt() 2628 UpdateAsmCallInst(*Result, HasSideEffect, true, ReadOnly, ReadNone, in EmitAsmStmt() 2635 ReadOnly, ReadNone, InNoMergeAttributedStmt, S, in EmitAsmStmt()
|
| /freebsd-13.1/stand/efi/gptboot/ |
| H A D | proto.c | 92 if (dev->Media->ReadOnly) in drvwrite()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | AMDGPUMetadata.h | 55 ReadOnly = 1, enumerator
|
| /freebsd-13.1/contrib/llvm-project/lld/ELF/ |
| H A D | LinkerScript.h | 128 enum class ConstraintKind { NoConstraint, ReadOnly, ReadWrite }; enumerator
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | MinidumpConstants.def | 120 HANDLE_MDMP_PROTECT(0x02, ReadOnly, PAGE_READ_ONLY)
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ModuleSummaryAnalysis.cpp | 463 F.hasFnAttribute(Attribute::ReadOnly), in computeFunctionSummary() 710 F->hasFnAttribute(Attribute::ReadOnly), in buildModuleSummaryIndex()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | AMDGPUMetadata.cpp | 31 YIO.enumCase(EN, "ReadOnly", AccessQualifier::ReadOnly); in enumeration()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ModuleSummaryIndex.cpp | 449 char FlagRep[] = {FlagValue(F.ReadNone), FlagValue(F.ReadOnly), in fflagsToString()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMParallelDSP.cpp | 67 bool ReadOnly = true; member
|