Home
last modified time | relevance | path

Searched refs:Known (Results 1 – 25 of 314) sorted by relevance

12345678910>>...13

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp68 KnownBits Known; in getKnownBits() local
69 computeKnownBitsImpl(R, Known, DemandedElts); in getKnownBits()
71 return Known; in getKnownBits()
87 dumpResult(const MachineInstr &MI, const KnownBits &Known, unsigned Depth) { in dumpResult() argument
90 << (Known.Zero | Known.One).toString(16, false) << "\n" in dumpResult()
91 << "[" << Depth << "] Zero: 0x" << Known.Zero.toString(16, false) in dumpResult()
93 << "[" << Depth << "] One: 0x" << Known.One.toString(16, false) in dumpResult()
99 KnownBits &Known, in computeKnownBitsMin() argument
103 computeKnownBitsImpl(Src1, Known, DemandedElts, Depth); in computeKnownBitsMin()
106 if (Known.isUnknown()) in computeKnownBitsMin()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DKnownBits.cpp38 APInt Known = std::move(LHSKnownUnion) & RHSKnownUnion & CarryKnownUnion; in computeForAddCarry() local
40 assert((PossibleSumZero & Known) == (PossibleSumOne & Known) && in computeForAddCarry()
45 KnownOut.Zero = ~std::move(PossibleSumZero) & Known; in computeForAddCarry()
46 KnownOut.One = std::move(PossibleSumOne) & Known; in computeForAddCarry()
169 KnownBits Known(BitWidth); in shl() local
174 Known = LHS; in shl()
175 Known.Zero <<= Shift; in shl()
176 Known.One <<= Shift; in shl()
178 Known.Zero.setLowBits(Shift); in shl()
179 return Known; in shl()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp57 KnownBits Known(BitWidth); in SimplifyDemandedInstructionBits() local
60 Value *V = SimplifyDemandedUseBits(&Inst, DemandedMask, Known, in SimplifyDemandedInstructionBits()
73 KnownBits &Known, unsigned Depth) { in SimplifyDemandedBits() argument
75 Value *NewVal = SimplifyDemandedUseBits(U.get(), DemandedMask, Known, in SimplifyDemandedBits()
109 KnownBits &Known, in SimplifyDemandedUseBits() argument
118 Known.getBitWidth() == BitWidth && in SimplifyDemandedUseBits()
122 computeKnownBits(V, Known, Depth, CxtI); in SimplifyDemandedUseBits()
126 Known.resetAll(); in SimplifyDemandedUseBits()
138 computeKnownBits(V, Known, Depth, CxtI); in SimplifyDemandedUseBits()
146 return SimplifyMultipleUseDemandedBits(I, DemandedMask, Known, Depth, CxtI); in SimplifyDemandedUseBits()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DValueTracking.cpp195 KnownBits &Known, unsigned Depth, const Query &Q);
197 static void computeKnownBits(const Value *V, KnownBits &Known, unsigned Depth, in computeKnownBits() argument
202 Known.resetAll(); in computeKnownBits()
209 computeKnownBits(V, DemandedElts, Known, Depth, Q); in computeKnownBits()
212 void llvm::computeKnownBits(const Value *V, KnownBits &Known, in computeKnownBits() argument
217 ::computeKnownBits(V, Known, Depth, in computeKnownBits()
222 KnownBits &Known, const DataLayout &DL, in computeKnownBits() argument
226 ::computeKnownBits(V, DemandedElts, Known, Depth, in computeKnownBits()
320 KnownBits Known = in isKnownNonNegative() local
322 return Known.isNonNegative(); in isKnownNonNegative()
[all …]
H A DDemandedBits.cpp88 const APInt &AOut, APInt &AB, KnownBits &Known, KnownBits &Known2, in determineLiveOperandBits() argument
105 Known = KnownBits(BitWidth); in determineLiveOperandBits()
106 computeKnownBits(V1, Known, DL, 0, &AC, UserI, &DT); in determineLiveOperandBits()
138 std::min(BitWidth, Known.countMaxLeadingZeros()+1)); in determineLiveOperandBits()
148 std::min(BitWidth, Known.countMaxTrailingZeros()+1)); in determineLiveOperandBits()
189 AB = determineLiveOperandBitsAdd(OperandNo, AOut, Known, Known2); in determineLiveOperandBits()
197 AB = determineLiveOperandBitsSub(OperandNo, AOut, Known, Known2); in determineLiveOperandBits()
268 AB &= ~(Known.Zero & ~Known2.Zero); in determineLiveOperandBits()
281 AB &= ~(Known.One & ~Known2.One); in determineLiveOperandBits()
395 KnownBits Known, Known2; in performAnalysis() local
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/
H A DEVP_MD-SHA2.pod25 Known names are "SHA2-224", "SHA-224" and "SHA224".
29 Known names are "SHA2-256", "SHA-256" and "SHA256".
33 Known names are "SHA2-384", "SHA-384" and "SHA384".
37 Known names are "SHA2-512", "SHA-512" and "SHA512".
49 Known names are "SHA2-512/224", "SHA-512/224" and "SHA512-224".
53 Known names are "SHA2-512/256", "SHA-512/256" and "SHA512-256".
H A DEVP_MD-SHAKE.pod26 Known names are "KECCAK-KMAC-128" and "KECCAK-KMAC128". This is used
33 Known names are "KECCAK-KMAC-256" and "KECCAK-KMAC256". This is used
40 Known names are "SHAKE-128" and "SHAKE128".
44 Known names are "SHAKE-256" and "SHAKE256".
H A DEVP_MD-BLAKE2.pod20 Known names are "BLAKE2S-256" and "BLAKE2s256".
24 Known names are "BLAKE2B-512" and "BLAKE2b512".
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DFunctionLoweringInfo.h158 KnownBits Known = 1; member
237 const KnownBits &Known) { in AddLiveOutRegInfo() argument
239 if (NumSignBits == 1 && Known.isUnknown()) in AddLiveOutRegInfo()
245 LOI.Known.One = Known.One; in AddLiveOutRegInfo()
246 LOI.Known.Zero = Known.Zero; in AddLiveOutRegInfo()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DLayoutOverrideSource.cpp166 llvm::StringMap<Layout>::iterator Known = Layouts.find(Record->getName()); in layoutRecordType() local
167 if (Known == Layouts.end()) in layoutRecordType()
175 if (NumFields >= Known->second.FieldOffsets.size()) in layoutRecordType()
178 FieldOffsets[*F] = Known->second.FieldOffsets[NumFields]; in layoutRecordType()
182 if (NumFields != Known->second.FieldOffsets.size()) in layoutRecordType()
185 Size = Known->second.Size; in layoutRecordType()
186 Alignment = Known->second.Align; in layoutRecordType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp425 if (BitWidth > LOI->Known.getBitWidth()) { in GetLiveOutRegInfo()
427 LOI->Known = LOI->Known.anyext(BitWidth); in GetLiveOutRegInfo()
460 DestLOI.Known = KnownBits(BitWidth); in ComputePHILiveOutRegInfo()
467 DestLOI.Known = KnownBits::makeConstant(Val); in ComputePHILiveOutRegInfo()
484 assert(DestLOI.Known.Zero.getBitWidth() == BitWidth && in ComputePHILiveOutRegInfo()
485 DestLOI.Known.One.getBitWidth() == BitWidth && in ComputePHILiveOutRegInfo()
492 DestLOI.Known = KnownBits(BitWidth); in ComputePHILiveOutRegInfo()
499 DestLOI.Known.Zero &= ~Val; in ComputePHILiveOutRegInfo()
500 DestLOI.Known.One &= Val; in ComputePHILiveOutRegInfo()
517 DestLOI.Known = KnownBits::commonBits(DestLOI.Known, SrcLOI->Known); in ComputePHILiveOutRegInfo()
H A DSelectionDAG.cpp2757 KnownBits Known(BitWidth); // Don't know anything. in computeKnownBits() local
2762 return Known; in computeKnownBits()
2774 return Known; // Limit search depth. in computeKnownBits()
2783 return Known; // No demanded elts, better to assume we don't know anything. in computeKnownBits()
2789 Known.Zero.setAllBits(); Known.One.setAllBits(); in computeKnownBits()
2805 Known = KnownBits::commonBits(Known, Known2); in computeKnownBits()
2808 if (Known.isUnknown()) in computeKnownBits()
2816 Known.Zero.setAllBits(); Known.One.setAllBits(); in computeKnownBits()
2827 Known.resetAll(); in computeKnownBits()
2842 Known = KnownBits::commonBits(Known, Known2); in computeKnownBits()
[all …]
H A DTargetLowering.cpp606 KnownBits Known; in SimplifyDemandedBits() local
608 bool Simplified = SimplifyDemandedBits(Op, DemandedBits, Known, TLO); in SimplifyDemandedBits()
617 KnownBits &Known, in SimplifyDemandedBits() argument
628 Known = KnownBits(DemandedBits.getBitWidth()); in SimplifyDemandedBits()
635 return SimplifyDemandedBits(Op, DemandedBits, DemandedElts, Known, TLO, Depth, in SimplifyDemandedBits()
901 const APInt &OriginalDemandedElts, KnownBits &Known, TargetLoweringOpt &TLO, in SimplifyDemandedBits() argument
908 Known = KnownBits(BitWidth); in SimplifyDemandedBits()
932 Known = KnownBits::makeConstant(cast<ConstantSDNode>(Op)->getAPIntValue()); in SimplifyDemandedBits()
938 Known = KnownBits::makeConstant( in SimplifyDemandedBits()
949 Known = TLO.DAG.computeKnownBits(Op, DemandedElts, Depth); in SimplifyDemandedBits()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h1829 bool isAtFixpoint() const override { return Assumed == Known; }
1833 Known = Assumed;
1839 Assumed = Known;
1844 base_t getKnown() const { return Known; }
1898 base_t Known = getWorstState();
1913 return (this->Known & BitsEncoding) == BitsEncoding;
1925 this->Known |= Bits;
1936 this->Known = (this->Known & ~BitsEncoding);
1943 this->Assumed = (this->Assumed & BitsEncoding) | this->Known;
1953 this->Known |= KnownValue;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelKnownBits.h38 void computeKnownBitsMin(Register Src0, Register Src1, KnownBits &Known,
57 virtual void computeKnownBitsImpl(Register R, KnownBits &Known,
86 static void computeKnownBitsForAlignment(KnownBits &Known, in computeKnownBitsForAlignment() argument
89 Known.Zero.setLowBits(Log2(Alignment)); in computeKnownBitsForAlignment()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/GlobalISel/
H A DKnownBits.rst1 Known Bits Analysis
4 The Known Bits Analysis pass makes information about the known values of bits
59 To use Known Bits Analysis in a pass, first include the header and register the
92 KnownBits Known = KB->getKnownBits(MI->getOperand(0).getReg());
93 if (Known.Zeros & 1) {
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp297 llvm::DenseMap<ModuleFile *, unsigned>::iterator Known in getModuleDependencies() local
299 if (Known == ModulesByFile.end()) in getModuleDependencies()
304 ArrayRef<unsigned> StoredDependencies = Modules[Known->second].Dependencies; in getModuleDependencies()
322 IdentifierIndexTable::iterator Known = Table.find(Name); in lookupIdentifier() local
323 if (Known == Table.end()) { in lookupIdentifier()
327 SmallVector<unsigned, 2> ModuleIDs = *Known; in lookupIdentifier()
340 llvm::StringMap<unsigned>::iterator Known = UnresolvedModules.find(Name); in loadedModuleFile() local
341 if (Known == UnresolvedModules.end()) { in loadedModuleFile()
346 ModuleInfo &Info = Modules[Known->second]; in loadedModuleFile()
354 ModulesByFile[File] = Known->second; in loadedModuleFile()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/csky/
H A Dcsky_genopt.sh46 Known CSKY CPUs (for use with the -mcpu= options):
62 Known CSKY architectures (for use with the -march= option):
81 Known CSKY FPUs (for use with the -mfpu= option):
/netbsd-src/external/gpl3/gcc/dist/gcc/config/csky/
H A Dcsky_genopt.sh46 Known CSKY CPUs (for use with the -mcpu= options):
62 Known CSKY architectures (for use with the -march= option):
81 Known CSKY FPUs (for use with the -mfpu= option):
/netbsd-src/external/gpl3/gcc/dist/gcc/config/m68k/
H A Dgenopt.sh46 Known M68K CPUs (for use with the -mcpu= option):
62 Known M68K microarchitectures (for use with the -mtune= option):
78 Known M68K ISAs (for use with the -march= option):
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/m68k/
H A Dgenopt.sh46 Known M68K CPUs (for use with the -mcpu= option):
62 Known M68K microarchitectures (for use with the -mtune= option):
78 Known M68K ISAs (for use with the -march= option):
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/m4/
H A Dexponentl.m487 AC_EGREP_CPP([Known], [
89 Known
92 AC_EGREP_CPP([Known], [
94 Known
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp406 KnownBits Known = DAG.computeKnownBits(Value); in isWordAligned() local
407 return Known.countMinTrailingZeros() >= 2; in isWordAligned()
1605 KnownBits Known; in PerformDAGCombine() local
1610 TLI.SimplifyDemandedBits(OutVal, DemandedMask, Known, TLO)) in PerformDAGCombine()
1621 KnownBits Known; in PerformDAGCombine() local
1626 TLI.SimplifyDemandedBits(Time, DemandedMask, Known, TLO)) in PerformDAGCombine()
1659 KnownBits Known = DAG.computeKnownBits(N2); in PerformDAGCombine() local
1660 if ((Known.Zero & Mask) == Mask) { in PerformDAGCombine()
1681 KnownBits Known = DAG.computeKnownBits(N2); in PerformDAGCombine() local
1682 if ((Known.Zero & Mask) == Mask) { in PerformDAGCombine()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DModuleMap.cpp399 HeadersMap::iterator Known = Headers.find(File); in findKnownHeader() local
401 Known == Headers.end() && ModuleMap::isBuiltinHeader(File)) { in findKnownHeader()
405 return Known; in findKnownHeader()
492 HeadersMap::iterator Known = findKnownHeader(File); in diagnoseHeaderInclusion() local
493 if (Known != Headers.end()) { in diagnoseHeaderInclusion()
494 for (const KnownHeader &Header : Known->second) { in diagnoseHeaderInclusion()
580 HeadersMap::iterator Known = findKnownHeader(File); in findModuleForHeader() local
581 if (Known != Headers.end()) { in findModuleForHeader()
584 for (KnownHeader &H : Known->second) { in findModuleForHeader()
671 HeadersMap::iterator Known = findKnownHeader(File); in findAllModulesForHeader() local
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/mips/
H A Dgenopt.sh45 Known MIPS CPUs (for use with the -march= and -mtune= options):
49 Known MIPS ISA levels (for use with the -mips option):

12345678910>>...13