Home
last modified time | relevance | path

Searched refs:AccessSize (Results 1 – 24 of 24) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
HDHexagonMCELFStreamer.cpp90 unsigned AccessSize) { in HexagonMCEmitCommonSymbol() argument
104 ((AccessSize == 0) || (Size == 0) || (Size > GPSize)) in HexagonMCEmitCommonSymbol()
106 : sbss[(Log2_64(AccessSize))]; in HexagonMCEmitCommonSymbol()
127 if ((AccessSize) && (Size <= GPSize)) { in HexagonMCEmitCommonSymbol()
129 (AccessSize <= GPSize) in HexagonMCEmitCommonSymbol()
130 ? ELF::SHN_HEXAGON_SCOMMON + (Log2_64(AccessSize) + 1) in HexagonMCEmitCommonSymbol()
142 unsigned AccessSize) { in HexagonMCEmitLocalCommonSymbol() argument
147 HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, AccessSize); in HexagonMCEmitLocalCommonSymbol()
HDHexagonMCELFStreamer.h37 unsigned AccessSize);
39 unsigned ByteAlignment, unsigned AccessSize);
HDHexagonMCTargetDesc.cpp191 unsigned AccessSize) override { in EmitCommonSymbolSorted() argument
195 AccessSize); in EmitCommonSymbolSorted()
200 unsigned AccessSize) override { in EmitLocalCommonSymbolSorted() argument
204 Symbol, Size, ByteAlignment, AccessSize); in EmitLocalCommonSymbolSorted()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDLoads.cpp153 APInt AccessSize(DL.getPointerTypeSizeInBits(V->getType()), in isDereferenceableAndAlignedPointer() local
155 return isDereferenceableAndAlignedPointer(V, Alignment, AccessSize, DL, CtxI, in isDereferenceableAndAlignedPointer()
234 const APInt AccessSize = TC * EltSize; in isDereferenceableAndAlignedInLoop() local
247 return isDereferenceableAndAlignedPointer(Base, Alignment, AccessSize, DL, in isDereferenceableAndAlignedInLoop()
425 auto AccessSize = LocationSize::precise(DL.getTypeStoreSize(AccessTy)); in FindAvailablePtrLoadStore() local
456 if (AA && !isModSet(AA->getModRefInfo(SI, StrippedPtr, AccessSize))) in FindAvailablePtrLoadStore()
468 if (AA && !isModSet(AA->getModRefInfo(Inst, StrippedPtr, AccessSize))) in FindAvailablePtrLoadStore()
HDStackSafetyAnalysis.cpp214 uint64_t AccessSize);
249 uint64_t AccessSize) { in getAccessRange() argument
258 ConstantRange SizeRange = getRange(0, AccessSize); in getAccessRange()
HDTypeBasedAliasAnalysis.cpp552 uint64_t AccessSize = UINT64_MAX; in createAccessTag() local
554 ConstantAsMetadata::get(ConstantInt::get(Int64, AccessSize)); in createAccessTag()
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
HDaslrestype2.c234 Descriptor->GenericReg.AccessSize = (UINT8) InitializerOp->Asl.Value.Integer; in RsDoGeneralRegisterDescriptor()
236 CurrentByteOffset + ASL_RESDESC_OFFSET (GenericReg.AccessSize)); in RsDoGeneralRegisterDescriptor()
243 if (Descriptor->GenericReg.AccessSize > AML_FIELD_ACCESS_QWORD) in RsDoGeneralRegisterDescriptor()
/freebsd-11-stable/sys/contrib/dev/acpica/components/disassembler/
HDdmresrcl.c1042 if (Resource->GenericReg.AccessSize) in AcpiDmGenericRegisterDescriptor()
1045 Resource->GenericReg.AccessSize, "Access Size"); in AcpiDmGenericRegisterDescriptor()
/freebsd-11-stable/sys/contrib/edk2/Include/IndustryStandard/
HDAcpi30.h73 UINT8 AccessSize; member
HDAcpi40.h31 UINT8 AccessSize; member
HDAcpi51.h33 UINT8 AccessSize; member
HDAcpi50.h152 UINT8 AccessSize; member
HDAcpi60.h32 UINT8 AccessSize; member
/freebsd-11-stable/sys/contrib/dev/acpica/include/
HDamlresrc.h514 UINT8 AccessSize; /* ACPI 3.0, was previously Reserved */ member
HDacrestyp.h550 UINT8 AccessSize; member
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDSafeStack.cpp231 bool SafeStack::IsAccessSafe(Value *Addr, uint64_t AccessSize, in IsAccessSafe() argument
239 ConstantRange(APInt(BitWidth, 0), APInt(BitWidth, AccessSize)); in IsAccessSafe()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
HDHexagonInstrInfo.h431 unsigned &AccessSize) const;
HDHexagonLoopIdiomRecognition.cpp1976 LocationSize AccessSize = LocationSize::unknown(); in mayLoopAccessLocation() local
1981 AccessSize = LocationSize::precise((BECst->getValue()->getZExtValue() + 1) * in mayLoopAccessLocation()
1988 MemoryLocation StoreLoc(Ptr, AccessSize); in mayLoopAccessLocation()
HDHexagonInstrInfo.cpp2946 unsigned AccessSize = 0; in getMemOperandWithOffset() local
2947 BaseOp = getBaseAndOffset(LdSt, Offset, AccessSize); in getMemOperandWithOffset()
3159 unsigned &AccessSize) const { in getBaseAndOffset()
3166 AccessSize = getMemAccessSize(MI); in getBaseAndOffset()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
HDLoopIdiomRecognize.cpp806 LocationSize AccessSize = LocationSize::unknown(); in mayLoopAccessLocation() local
811 AccessSize = LocationSize::precise((BECst->getValue()->getZExtValue() + 1) * in mayLoopAccessLocation()
818 MemoryLocation StoreLoc(Ptr, AccessSize); in mayLoopAccessLocation()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
HDNVPTXISelLowering.cpp235 unsigned Idx, uint32_t AccessSize, const SmallVectorImpl<EVT> &ValueVTs, in CanMergeParamLoadStoresStartingAt() argument
237 assert(isPowerOf2_32(AccessSize) && "must be a power of 2!"); in CanMergeParamLoadStoresStartingAt()
240 if (AccessSize > ParamAlignment) in CanMergeParamLoadStoresStartingAt()
243 if (Offsets[Idx] & (AccessSize - 1)) in CanMergeParamLoadStoresStartingAt()
250 if (EltSize >= AccessSize) in CanMergeParamLoadStoresStartingAt()
253 unsigned NumElts = AccessSize / EltSize; in CanMergeParamLoadStoresStartingAt()
255 if (AccessSize != EltSize * NumElts) in CanMergeParamLoadStoresStartingAt()
310 for (unsigned AccessSize : {16, 8, 4, 2}) { in VectorizePTXValueVTs()
312 I, AccessSize, ValueVTs, Offsets, ParamAlignment); in VectorizePTXValueVTs()
/freebsd-11-stable/sys/contrib/dev/acpica/components/resources/
HDrsdumpinfo.c339 …{ACPI_RSD_UINT8, ACPI_RSD_OFFSET (GenericReg.AccessSize), "Access Size", …
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
HDMemorySanitizer.cpp797 unsigned AccessSize = 1 << AccessSizeIndex; in createUserspaceApi() local
798 std::string FunctionName = "__msan_maybe_warning_" + itostr(AccessSize); in createUserspaceApi()
800 FunctionName, IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8), in createUserspaceApi()
803 FunctionName = "__msan_maybe_store_origin_" + itostr(AccessSize); in createUserspaceApi()
805 FunctionName, IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8), in createUserspaceApi()
/freebsd-11-stable/sys/contrib/dev/acpica/
HDchanges.txt795 address space when the AccessSize of the GAS register is greater than a
5991 Disassembler: Decode the AccessSize within a Generic Address Structure
9860 limited in size to the AccessSize (width) of the IndexField itself. (BZ
10995 Implemented disassembler support for the ACPI 3.0 AccessSize field within
12360 AccessSize.