Home
last modified time | relevance | path

Searched refs:Part (Results 1 – 25 of 1167) sorted by relevance

12345678910>>...47

/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Dutmath.c171 UINT64_STRUCT Part; member
215 ACPI_MUL_64_BY_32 (0, MultiplicandOvl.Part.Hi, Multiplier, in AcpiUtShortMultiply()
216 Product.Part.Hi, Carry32); in AcpiUtShortMultiply()
218 ACPI_MUL_64_BY_32 (0, MultiplicandOvl.Part.Lo, Multiplier, in AcpiUtShortMultiply()
219 Product.Part.Lo, Carry32); in AcpiUtShortMultiply()
221 Product.Part.Hi += Carry32; in AcpiUtShortMultiply()
262 OperandOvl.Part.Hi = OperandOvl.Part.Lo; in AcpiUtShortShiftLeft()
263 OperandOvl.Part.Lo = 0; in AcpiUtShortShiftLeft()
266 ACPI_SHIFT_LEFT_64_BY_32 (OperandOvl.Part.Hi, in AcpiUtShortShiftLeft()
267 OperandOvl.Part.Lo, Count); in AcpiUtShortShiftLeft()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp382 Value *VPInstruction::generatePerPart(VPTransformState &State, unsigned Part) { in generatePerPart() argument
387 Value *A = State.get(getOperand(0), Part, OnlyFirstLaneUsed); in generatePerPart()
388 Value *B = State.get(getOperand(1), Part, OnlyFirstLaneUsed); in generatePerPart()
398 Value *A = State.get(getOperand(0), Part); in generatePerPart()
403 Value *A = State.get(getOperand(0), Part, OnlyFirstLaneUsed); in generatePerPart()
404 Value *B = State.get(getOperand(1), Part, OnlyFirstLaneUsed); in generatePerPart()
408 Value *Cond = State.get(getOperand(0), Part); in generatePerPart()
409 Value *Op1 = State.get(getOperand(1), Part); in generatePerPart()
410 Value *Op2 = State.get(getOperand(2), Part); in generatePerPart()
415 Value *VIVElem0 = State.get(getOperand(0), VPIteration(Part, 0)); in generatePerPart()
[all …]
H A DVPlan.cpp233 .PerPartScalars[Def][Instance.Part][Instance.Lane.mapToCacheIndex(VF)]; in get()
237 hasScalarValue(Def, {Instance.Part, VPLane::getFirstLane()})) { in get()
238 return Data.PerPartScalars[Def][Instance.Part][0]; in get()
241 assert(hasVectorValue(Def, Instance.Part)); in get()
242 auto *VecPart = Data.PerPartOutput[Def][Instance.Part]; in get()
254 Value *VPTransformState::get(VPValue *Def, unsigned Part, bool NeedsScalar) { in get() argument
256 assert((VF.isScalar() || Def->isLiveIn() || hasVectorValue(Def, Part) || in get()
258 (hasScalarValue(Def, VPIteration(Part, 0)) && in get()
259 Data.PerPartScalars[Def][Part].size() == 1)) && in get()
262 return get(Def, VPIteration(Part, 0)); in get()
[all …]
H A DVPlan.h240 unsigned Part; member
244 VPIteration(unsigned Part, unsigned Lane,
246 : Part(Part), Lane(Lane, Kind) {} in Part() function
248 VPIteration(unsigned Part, const VPLane &Lane) : Part(Part), Lane(Lane) {} in VPIteration()
250 bool isFirstIteration() const { return Part == 0 && Lane.isFirstLane(); } in isFirstIteration()
284 Value *get(VPValue *Def, unsigned Part, bool IsScalar = false);
289 bool hasVectorValue(VPValue *Def, unsigned Part) { in hasVectorValue()
291 return I != Data.PerPartOutput.end() && Part < I->second.size() && in hasVectorValue()
292 I->second[Part]; in hasVectorValue()
300 return Instance.Part < I->second.size() && in hasScalarValue()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DDXContainer.cpp63 Error DXContainer::parseDXILHeader(StringRef Part) { in parseDXILHeader() argument
66 const char *Current = Part.begin(); in parseDXILHeader()
68 if (Error Err = readStruct(Part, Current, Header)) in parseDXILHeader()
75 Error DXContainer::parseShaderFeatureFlags(StringRef Part) { in parseShaderFeatureFlags() argument
79 if (Error Err = readInteger(Part, Part.begin(), FlagValue)) in parseShaderFeatureFlags()
85 Error DXContainer::parseHash(StringRef Part) { in parseHash() argument
89 if (Error Err = readStruct(Part, Part.begin(), ReadHash)) in parseHash()
95 Error DXContainer::parsePSVInfo(StringRef Part) { in parsePSVInfo() argument
98 PSVInfo = DirectX::PSVRuntimeInfo(Part); in parsePSVInfo()
104 Error DirectX::Signature::initialize(StringRef Part) { in initialize() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVVPISelLowering.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
207 for (PackElem Part : {PackElem::Hi, PackElem::Lo}) { in splitPackedLoadStore()
210 auto SplitTM = CDAG.getTargetSplitMask(PackedMask, PackedAVL, Part); in splitPackedLoadStore()
213 if (Part == PackElem::Hi) in splitPackedLoadStore()
225 CDAG.getUnpack(SplitDataVT, PackData, Part, SplitTM.AVL); in splitPackedLoadStore()
230 // Push (ptr + ElemBytes * <Part>, 2 * ElemBytes) in splitPackedLoadStore()
233 OpVec.push_back(CDAG.getSplitPtrOffset(PackPtr, PackStride, Part)); in splitPackedLoadStore()
242 PartOps[(int)Part] = CDAG.getNode(VVPOC, MVT::Other, OpVec); in splitPackedLoadStore()
245 PartOps[(int)Part] = in splitPackedLoadStore()
365 for (PackElem Part in splitVectorOp()
[all...]
H A DVECustomDAG.cpp480 SDValue VECustomDAG::getUnpack(EVT DestVT, SDValue Vec, PackElem Part, in getUnpack() argument
486 (Part == PackElem::Lo) ? VEISD::VEC_UNPACK_LO : VEISD::VEC_UNPACK_HI; in getUnpack()
499 PackElem Part) const { in getTargetSplitMask()
503 if (Part == PackElem::Hi) in getTargetSplitMask()
516 NewMask = getUnpack(MVT::v256i1, RawMask, Part, NewAVL); in getTargetSplitMask()
522 PackElem Part) const { in getSplitPtrOffset()
525 if (Part == PackElem::Hi) in getSplitPtrOffset()
H A DVECustomDAG.h190 SDValue getUnpack(EVT DestVT, SDValue Vec, PackElem Part, SDValue AVL) const;
208 PackElem Part) const;
212 PackElem Part) const;
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDXContainerYAML.h151 struct Part { struct
152 Part() = default;
153 Part(std::string N, uint32_t S) : Name(N), Size(S) {} in Part() function
165 std::vector<Part> Parts; argument
171 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DXContainerYAML::Part)
213 template <> struct MappingTraits<DXContainerYAML::Part> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
214 static void mapping(IO &IO, DXContainerYAML::Part &Version); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dpath.cpp141 static PathPartKind ClassifyPathPart(string_view_t Part) { in ClassifyPathPart() argument
142 if (Part.empty()) in ClassifyPathPart()
144 if (Part == PATHSTR(".")) in ClassifyPathPart()
146 if (Part == PATHSTR("..")) in ClassifyPathPart()
148 if (Part == PATHSTR("/")) in ClassifyPathPart()
151 if (Part == PATHSTR("\\")) in ClassifyPathPart()
183 auto Part = *PP; in lexically_normal() local
184 PathPartKind Kind = ClassifyPathPart(Part); in lexically_normal()
189 AddPart(Kind, Part); in lexically_normal()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/
H A DM68kBaseInfo.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
88 uint16_t Part = (Val >> (i * 16)) & 0xFFFF; in swapWord() local
89 Part = support::endian::byte_swap(Part, llvm::endianness::big); in swapWord()
90 NewVal |= (Part << (i * 16)); in swapWord()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DDXContainer.h271 Error initialize(StringRef Part);
296 Error parseDXILHeader(StringRef Part);
297 Error parseShaderFeatureFlags(StringRef Part);
298 Error parseHash(StringRef Part);
299 Error parsePSVInfo(StringRef Part);
300 Error parseSignature(StringRef Part, DirectX::Signature &Array);
311 dxbc::PartHeader Part; member
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp713 for (unsigned Part = 0; Part < NumParts; ++Part) { in determineAssignments() local
715 if (Part == 0) { in determineAssignments()
719 if (Part == NumParts - 1) in determineAssignments()
725 Args[i].Flags[Part], CCInfo)) { in determineAssignments()
814 for (unsigned Part = 0; Part < NumParts; ++Part) in handleAssignments() local
815 Args[i].Regs[Part] = MRI.createGenericVirtualRegister(NewLLT); in handleAssignments()
832 for (unsigned Part = 0; Part < NumParts; ++Part) { in handleAssignments() local
833 assert((VA.getLocInfo() != CCValAssign::Indirect || Part == 0) && in handleAssignments()
836 Register ArgReg = Args[i].Regs[Part]; in handleAssignments()
838 unsigned Idx = BigEndianPartOrdering ? NumParts - 1 - Part : Part; in handleAssignments()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDistribute.cpp459 for (auto &Part : llvm::drop_begin(llvm::reverse(PartitionContainer))) { in cloneLoops() local
460 NewLoop = Part.cloneLoopWithPreheader(TopPH, Pred, Index, LI, DT); in cloneLoops()
462 Part.getVMap()[ExitBlock] = TopPH; in cloneLoops()
463 Part.remapInstructions(); in cloneLoops()
464 setNewLoopID(OrigLoopID, &Part); in cloneLoops()
590 void setNewLoopID(MDNode *OrigLoopID, InstPartition *Part) { in setNewLoopID() argument
594 Part->hasDepCycle() ? LLVMLoopDistributeFollowupSequential in setNewLoopID()
597 Loop *NewLoop = Part->getDistributedLoop(); in setNewLoopID()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp344 const ArgPart &Part = Pair.second; in doPromotion() local
350 Part.Ty, nullptr, Arg.getName() + "." + Twine(Offset) + ".allc"); in doPromotion()
537 ArgPart &Part = Pair.first->second; in findArgParts() local
550 if (Part.Ty != Ty) { in findArgParts()
552 << "accessed as both " << *Part.Ty << " and " << *Ty in findArgParts()
564 (OffsetNotSeenBefore || Part.Alignment < I->getAlign())) { in findArgParts()
577 Part.Alignment = std::max(Part.Alignment, I->getAlign()); in findArgParts()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSplitDouble.cpp101 bool isProfitable(const USet &Part, LoopRegMap &IRM) const;
117 bool splitPartition(const USet &Part);
137 const USet &Part, const TargetRegisterInfo &TRI) { in dump_partition() argument
139 for (auto I : Part) in dump_partition()
419 bool HexagonSplitDoubleRegs::isProfitable(const USet &Part, LoopRegMap &IRM) in isProfitable() argument
424 for (unsigned DR : Part) { in isProfitable()
441 if (Op.isReg() && Part.count(Op.getReg())) in isProfitable()
1121 bool HexagonSplitDoubleRegs::splitPartition(const USet &Part) { in splitPartition() argument
1128 dump_partition(dbgs(), Part, *TRI); dbgs() << '\n'); in splitPartition()
1133 for (unsigned DR : Part) { in splitPartition()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DHost.cpp172 StringRef Part; in getHostCPUNameForARM() local
179 Part = Lines[I].substr(8).ltrim("\t :"); in getHostCPUNameForARM()
194 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
262 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
273 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
279 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
288 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
296 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
314 unsigned Variant = 0, Part = 0; in getHostCPUNameForARM() local
326 I.ltrim("\t :").getAsInteger(0, Part); in getHostCPUNameForARM()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSplitModule.cpp571 for (const auto &[Idx, Part] : enumerate(Partitions)) { in doPartitioning()
573 for (auto *Fn : Part) in doPartitioning()
586 for (const auto &Part : Partitions) in doPartitioning() local
587 AllFunctions.insert(Part.begin(), Part.end()); in doPartitioning()
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcstdarg.inc4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
H A Dcsetjmp.inc4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcstdarg.inc4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
/freebsd/contrib/llvm-project/libcxx/include/
H A D__pstl_algorithm
H A D__pstl_memory
H A D__pstl_numeric
H A D__pstl_config_site.in

12345678910>>...47