Home
last modified time | relevance | path

Searched refs:Size1 (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCrossOver.cpp19 size_t MutationDispatcher::CrossOver(const uint8_t *Data1, size_t Size1, in CrossOver() argument
22 assert(Size1 || Size2); in CrossOver()
28 size_t InSize = Size1; in CrossOver()
31 while (OutPos < MaxOutSize && (Pos1 < Size1 || Pos2 < Size2)) { in CrossOver()
44 InSize = CurrentlyUsingFirstData ? Size2 : Size1; in CrossOver()
H A DFuzzerInterface.h62 LLVMFuzzerCustomCrossOver(const uint8_t *Data1, size_t Size1,
H A DFuzzerExtFunctions.def22 (const uint8_t *Data1, size_t Size1,
H A DFuzzerMutate.h87 size_t CrossOver(const uint8_t *Data1, size_t Size1, const uint8_t *Data2,
/freebsd/lib/libefivar/
H A Duefi-dputil.c524 UINTN Size1; in AppendDevicePath() local
548 Size1 = GetDevicePathSize (FirstDevicePath); in AppendDevicePath()
550 Size = Size1 + Size2 - END_DEVICE_PATH_LENGTH; in AppendDevicePath()
555 NewDevicePath = CopyMem (NewDevicePath, FirstDevicePath, Size1); in AppendDevicePath()
560 (Size1 - END_DEVICE_PATH_LENGTH)); in AppendDevicePath()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp111 unsigned Size1 = Bytes == 16 ? 8 : llvm::bit_floor(Bytes); in EmitTargetCodeForMemset() local
112 unsigned Size2 = Bytes - Size1; in EmitTargetCodeForMemset()
113 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
118 DAG.getConstant(Size1, DL, PtrVT)); in EmitTargetCodeForMemset()
119 DstPtrInfo = DstPtrInfo.getWithOffset(Size1); in EmitTargetCodeForMemset()
122 std::min(Alignment, Align(Size1)), DstPtrInfo); in EmitTargetCodeForMemset()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLoadStoreOpt.cpp119 LocationSize Size1 = LdSt1->getMemSize(); in aliasIsKnownForLoadStore() local
131 if (PtrDiff >= 0 && Size1.hasValue() && !Size1.isScalable()) { in aliasIsKnownForLoadStore()
135 IsAlias = !((int64_t)Size1.getValue() <= PtrDiff); in aliasIsKnownForLoadStore()
275 LocationSize Size1 = MUC1.NumBytes; in instMayAlias() local
277 Size1.hasValue()) { in instMayAlias()
283 Size1.getValue().getKnownMinValue() + SrcValOffset1 - MinOffset; in instMayAlias()
287 Size1.isScalable() ? Size1 : LocationSize::precise(Overlap1); in instMayAlias()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AvoidStoreForwardingBlocks.cpp574 unsigned Size1 = 0; in breakBlockedCopies() local
589 Size1 = LdDisp2 - LdDisp1; in breakBlockedCopies()
593 buildCopies(Size1, LoadInst, LdDisp1, StoreInst, StDisp1, LMMOffset, in breakBlockedCopies()
596 buildCopies(Size2, LoadInst, LdDisp2, StoreInst, StDisp2, LMMOffset + Size1, in breakBlockedCopies()
597 SMMOffset + Size1); in breakBlockedCopies()
600 LMMOffset += Size1 + Size2; in breakBlockedCopies()
601 SMMOffset += Size1 + Size2; in breakBlockedCopies()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMHazardRecognizer.cpp262 LocationSize Size1 = MO->getSize(); in EmitInstruction() local
263 if (Size1.hasValue() && Size1.getValue() > 4) in EmitInstruction()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFExpression.h36 Size1 = 0, enumerator
50 SignedSize1 = SignBit | Size1,
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFExpression.cpp30 Descriptions[DW_OP_const1u] = Desc(Op::Dwarf2, Op::Size1); in getOpDescriptions()
43 Descriptions[DW_OP_pick] = Desc(Op::Dwarf2, Op::Size1); in getOpDescriptions()
80 Descriptions[DW_OP_deref_size] = Desc(Op::Dwarf2, Op::Size1); in getOpDescriptions()
81 Descriptions[DW_OP_xderef_size] = Desc(Op::Dwarf2, Op::Size1); in getOpDescriptions()
167 case Operation::Size1: in extract()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfileMatcher.cpp190 int32_t Size1 = AnchorList1.size(), Size2 = AnchorList2.size(), in longestCommonSequence() local
191 MaxDepth = Size1 + Size2; in longestCommonSequence()
203 int32_t X = Size1, Y = Size2; in longestCommonSequence()
249 while (X < Size1 && Y < Size2 && in longestCommonSequence()
257 if (X >= Size1 && Y >= Size2) { in longestCommonSequence()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp319 int Size1 = std::distance(InstsNoDbg.begin(), InstsNoDbg.end()); in mergeStores() local
334 if (NStores * Size1 >= MagicCompileTimeControl) in mergeStores()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp130 LocationSize Size1 = LocationSize::precise(DL.getTypeStoreSize(I1->second)); in runInternal() local
134 AliasResult AR = AA.alias(I1->first, Size1, I2->first, Size2); in runInternal()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp408 LocationSize Size1 = 0; in apply() local
409 MachineOperand *BaseOp1 = HII.getBaseAndOffset(L1, Offset1, Size1); in apply()
411 Size1.getValue() >= 32 || BaseOp0->getReg() != BaseOp1->getReg()) in apply()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp1110 Desc.Op[0] != Encoding::Size1)) in cloneDieAttrExpression()
1115 Desc.Op[0] == Encoding::Size1)) { in cloneDieAttrExpression()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h1105 SDValue getCALLSEQ_END(SDValue Chain, uint64_t Size1, uint64_t Size2,
1108 Chain, getIntPtrConstant(Size1, DL, /*isTarget=*/true),
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp1171 Desc.Op[0] != Encoding::Size1)) in cloneExpression()
1176 Desc.Op[0] == Encoding::Size1)) { in cloneExpression()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp28351 LocationSize Size1 = MUC1.NumBytes; in mayAlias() local
28354 Size0.hasValue() && Size1.hasValue() && !Size0.isScalable() && in mayAlias()
28355 !Size1.isScalable() && Size0 == Size1 && in mayAlias()
28358 SrcValOffset1 % Size1.getValue().getKnownMinValue() == 0) { in mayAlias()
28367 Size1.getValue().getKnownMinValue())) <= OffAlign0) in mayAlias()
28381 Size0.hasValue() && Size1.hasValue() && in mayAlias()
28384 (!Size1.isScalable() || SrcValOffset1 == 0)) { in mayAlias()
28390 Size1.getValue().getKnownMinValue() + SrcValOffset1 - MinOffset; in mayAlias()
28394 Size1.isScalable() ? Size1 : LocationSize::precise(Overlap1); in mayAlias()