Home
last modified time | relevance | path

Searched defs:Weight (Results 1 – 25 of 43) sorted by relevance

12

/freebsd-src/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOperations.cpp100 OpDescriptor llvm::fuzzerop::selectDescriptor(unsigned Weight) { in selectDescriptor()
109 OpDescriptor llvm::fuzzerop::fnegDescriptor(unsigned Weight) { in fnegDescriptor()
116 OpDescriptor llvm::fuzzerop::binOpDescriptor(unsigned Weight, in binOpDescriptor()
148 OpDescriptor llvm::fuzzerop::cmpOpDescriptor(unsigned Weight, in cmpOpDescriptor()
165 OpDescriptor llvm::fuzzerop::splitBlockDescriptor(unsigned Weight) { in splitBlockDescriptor()
195 OpDescriptor llvm::fuzzerop::gepDescriptor(unsigned Weight) { in gepDescriptor()
241 OpDescriptor llvm::fuzzerop::extractValueDescriptor(unsigned Weight) { in extractValueDescriptor()
300 OpDescriptor llvm::fuzzerop::insertValueDescriptor(unsigned Weight) { in insertValueDescriptor()
312 OpDescriptor llvm::fuzzerop::extractElementDescriptor(unsigned Weight) { in extractElementDescriptor()
320 OpDescriptor llvm::fuzzerop::insertElementDescriptor(unsigned Weight) { in insertElementDescriptor()
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h366 struct Weight { struct
372 Weight() = default; argument
373 Weight(DistType Type, BlockNode TargetNode, uint64_t Amount) in Weight() argument
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DRandom.h60 ReservoirSampler &sample(const T &Item, uint64_t Weight) { in sample()
83 uint64_t Weight) { in makeSampler()
H A DOpDescriptor.h90 unsigned Weight; member
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DCalcSpillWeights.cpp142 float Weight = weightCalcHelper(LI); calculateSpillWeightAndHint() local
210 const float Weight; weightCalcHelper() member
259 float Weight = 1.0f; weightCalcHelper() local
[all...]
H A DRegisterPressure.cpp58 unsigned Weight = PSetI.getWeight(); in increaseSetPressure() local
72 unsigned Weight = PSetI.getWeight(); in decreaseSetPressure() local
162 unsigned Weight = PSetI.getWeight(); in increaseRegPressure() local
672 int Weight = IsDec ? -PSetI.getWeight() : PSetI.getWeight(); addPressureChange() local
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DProfiledCallGraph.h30 uint64_t Weight; member
108 uint64_t Weight; variable
/freebsd-src/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.h
H A DCodeGenRegisters.cpp
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFixedPoint.h48 FixedPointSemantics(unsigned Width, Lsb Weight, bool IsSigned, in FixedPointSemantics() argument
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DProfDataUtils.cpp112 ConstantInt *Weight = extractFromBranchWeightMD() local
H A DMDBuilder.cpp330 createIrrLoopHeaderWeight(uint64_t Weight) createIrrLoopHeaderWeight() argument
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp95 using Weight = BlockFrequencyInfoImplBase::Weight; typedef
134 BlockMass DitheringDistributer::takeMass(uint32_t Weight) { in takeMass() argument
316 addToDist(Distribution & Dist,const LoopData * OuterLoop,const BlockNode & Pred,const BlockNode & Succ,uint64_t Weight) addToDist() argument
[all...]
H A DBranchProbabilityInfo.cpp677 auto Weight = getEstimatedEdgeWeight({SrcLoopBB, DstLoopBB}); in getMaxEstimatedEdgeWeight() local
893 std::optional<uint32_t> Weight; calcEstimatedHeuristics() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DCFGMST.h143 uint64_t Weight = 2; in buildEdges() local
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp1704 int Weight; global() member
1964 int Weight; balanceSubTree() local
2029 int Weight = RootWeights[Child.getNode()]; balanceSubTree() local
2069 int Weight = getWeight(Child.getNode()); balanceSubTree() local
2118 int Weight = Mul1.Weight + Mul2.Weight; balanceSubTree() local
2255 int Weight = V0Weight + V1Weight; balanceSubTree() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegColoring.cpp68 float Weight = 0.0f; in computeWeight() local
/freebsd-src/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp95 auto &Weight = Res[FunctionID]; in FunctionWeights() local
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveInterval.h715 float Weight = 0.0; // weight of this interval variable
723 LiveInterval(unsigned Reg, float Weight) : Reg(Reg), Weight(Weight) {} in LiveInterval() argument
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.h40 unsigned Slots, Weight; variable
/freebsd-src/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp200 addRecord(NamedInstrProfRecord && I,uint64_t Weight,function_ref<void (Error)> Warn) addRecord() argument
241 addRecord(StringRef Name,uint64_t Hash,InstrProfRecord && I,uint64_t Weight,function_ref<void (Error)> Warn) addRecord() argument
H A DInstrProf.cpp750 merge(InstrProfValueSiteRecord & Input,uint64_t Weight,function_ref<void (instrprof_error)> Warn) merge() argument
784 mergeValueProfData(uint32_t ValueKind,InstrProfRecord & Src,uint64_t Weight,function_ref<void (instrprof_error)> Warn) mergeValueProfData() argument
802 merge(InstrProfRecord & Other,uint64_t Weight,function_ref<void (instrprof_error)> Warn) merge() argument
H A DSampleProf.cpp120 uint64_t Weight) { in merge() argument
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp211 uint64_t Weight = BFI.getBlockFreq(User->getParent()).getFrequency() / in getUserBonus() local
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp524 APInt Weight = P.second; // Number of paths to this operand. LinearizeExprTree() local
640 APInt Weight = It->second; LinearizeExprTree() local
[all...]

12