| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| D | HexagonBitTracker.cpp | 187 CellMapType &Outputs) const { in evaluate() 213 return evaluateLoad(MI, Inputs, Outputs); in evaluate() 232 if (evaluateFormalCopy(MI, Inputs, Outputs)) in evaluate() 258 auto rr0 = [this,Reg] (const BT::RegisterCell &Val, CellMapType &Outputs) in evaluate() 260 putCell(Reg[0], Val, Outputs); in evaluate() 323 return rr0(eIMM(im(1), W0), Outputs); in evaluate() 325 return rr0(RegisterCell(W0).fill(0, W0, BT::BitValue::Zero), Outputs); in evaluate() 327 return rr0(RegisterCell(W0).fill(0, W0, BT::BitValue::One), Outputs); in evaluate() 335 return rr0(RC, Outputs); in evaluate() 343 return rr0(rc(1), Outputs); in evaluate() [all …]
|
| D | HexagonConstPropagation.cpp | 314 CellMap &Outputs) = 0; 688 CellMap Outputs; in visitNonBranch() local 689 bool Eval = MCE.evaluate(MI, Cells, Outputs); in visitNonBranch() 693 for (auto &I : Outputs) in visitNonBranch() 717 if (!Outputs.has(DefR.Reg)) in visitNonBranch() 720 Changed = RC.meet(Outputs.get(DefR.Reg)); in visitNonBranch() 1852 CellMap &Outputs) override; 1871 CellMap &Outputs); 1876 CellMap &Outputs); 1878 CellMap &Outputs); [all …]
|
| D | HexagonBitTracker.h | 35 CellMapType &Outputs) const override; 53 CellMapType &Outputs) const; 55 CellMapType &Outputs) const;
|
| D | BitTracker.cpp | 721 CellMapType &Outputs) const { in evaluate() 737 putCell(RD, Res, Outputs); in evaluate() 754 putCell(RD, Res, Outputs); in evaluate()
|
| D | BitTracker.h | 472 CellMapType &Outputs) const;
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ |
| D | Tool.cpp | 21 const InputInfoList &Outputs, in ConstructJobMultipleOutputs() argument 25 assert(Outputs.size() == 1 && "Expected only one output by default!"); in ConstructJobMultipleOutputs() 26 ConstructJob(C, JA, Outputs.front(), Inputs, TCArgs, LinkingOutput); in ConstructJobMultipleOutputs()
|
| D | Job.cpp | 41 ArrayRef<InputInfo> Inputs, ArrayRef<InputInfo> Outputs) in Command() argument 47 for (const auto &II : Outputs) in Command() 364 ArrayRef<InputInfo> Inputs, ArrayRef<InputInfo> Outputs) in CC1Command() argument 366 Outputs) { in CC1Command() 422 ArrayRef<InputInfo> Outputs) in ForceSuccessCommand() argument 424 Inputs, Outputs) {} in ForceSuccessCommand()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| D | IROutliner.cpp | 581 SetVector<Value *> &ArgInputs, SetVector<Value *> &Outputs) { in getCodeExtractorArguments() argument 614 CE->findInputsOutputs(PremappedInputs, Outputs, SinkCands); in getCodeExtractorArguments() 721 ArrayRef<Value *> Outputs) { in findExtractedOutputToOverallOutputMapping() argument 739 for (Value *Output : Outputs) { in findExtractedOutputToOverallOutputMapping() 786 SetVector<Value *> ArgInputs, Outputs; in findAddInputsOutputs() local 789 Outputs); in findAddInputsOutputs() 800 findExtractedOutputToOverallOutputMapping(Region, Outputs.getArrayRef()); in findAddInputsOutputs() 1517 ArrayRef<Value *> Outputs, in updateOutputMapping() argument 1536 if (OutputMappings.find(Outputs[OutputIdx.getValue()]) == in updateOutputMapping() 1539 << *Outputs[OutputIdx.getValue()] << "\n"); in updateOutputMapping() [all …]
|
| D | HotColdSplitting.cpp | 360 SetVector<Value *> Inputs, Outputs, Sinks; in extractColdRegion() local 361 CE.findInputsOutputs(Inputs, Outputs, Sinks); in extractColdRegion() 364 getOutliningPenalty(Region, Inputs.size(), Outputs.size()); in extractColdRegion()
|
| D | PartialInlining.cpp | 1159 SetVector<Value *> Inputs, Outputs, Sinks; in doMultiRegionFunctionOutlining() local 1170 CE.findInputsOutputs(Inputs, Outputs, Sinks); in doMultiRegionFunctionOutlining() 1174 dbgs() << "outputs: " << Outputs.size() << "\n"; in doMultiRegionFunctionOutlining() 1177 for (Value *output : Outputs) in doMultiRegionFunctionOutlining() 1182 if (Outputs.size() > 0 && !ForceLiveExit) in doMultiRegionFunctionOutlining()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Driver/ |
| D | Job.h | 169 ArrayRef<InputInfo> Outputs = None); 232 ArrayRef<InputInfo> Inputs, ArrayRef<InputInfo> Outputs = None); 251 ArrayRef<InputInfo> Outputs = None);
|
| D | Tool.h | 87 const InputInfoList &Outputs,
|
| /freebsd-12-stable/crypto/openssl/doc/man1/ |
| D | x509.pod | 181 Outputs the certificate's SubjectPublicKeyInfo block in PEM format. 190 Outputs the certificate serial number. 194 Outputs the "hash" of the certificate subject name. This is used in OpenSSL to 200 Outputs the "hash" of the certificate issuer name. 204 Outputs the OCSP hash values for the subject name and public key. 212 Outputs the "hash" of the certificate subject name using the older algorithm 217 Outputs the "hash" of the certificate issuer name using the older algorithm 222 Outputs the subject name. 226 Outputs the issuer name. 237 Outputs the email address(es) if any. [all …]
|
| D | crl.pod | 79 Outputs the "hash" of the CRL issuer name using the older algorithm
|
| D | req.pod | 117 Outputs the public key.
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| D | CodeExtractor.h | 166 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs,
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| D | IROutliner.h | 241 ArrayRef<Value *> Outputs, LoadInst *LI);
|
| /freebsd-12-stable/share/examples/BSD_daemon/ |
| D | README | 61 An example of how to use the stuff above. Outputs a simple
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| D | Clang.h | 149 const InputInfoList &Outputs,
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | MIRPrinter.cpp | 294 std::array<std::string *, 3> Outputs{{&Object.DebugVar.Value, in printStackObjectDbgInfo() local 301 raw_string_ostream StrOS(*Outputs[i]); in printStackObjectDbgInfo()
|
| /freebsd-12-stable/sys/gnu/dts/arm/ |
| D | dm814x-clocks.dtsi | 6 * "2.6.11 Connected Outputs of DPLLJ". Only clkout is
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| D | OMPIRBuilder.cpp | 742 SetVector<Value *> Inputs, Outputs, SinkingCands, HoistingCands; in createParallel() local 744 Extractor.findInputsOutputs(Inputs, Outputs, SinkingCands); in createParallel() 823 for (Value *Output : Outputs) in createParallel() 826 assert(Outputs.empty() && in createParallel()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| D | CodeExtractor.cpp | 646 void CodeExtractor::findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs, in findInputsOutputs() argument 660 Outputs.insert(&II); in findInputsOutputs()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | TreeTransform.h | 439 SmallVectorImpl<Expr *> &Outputs, 598 TemplateArgumentListInfo &Outputs, 600 return TransformTemplateArguments(Inputs, Inputs + NumInputs, Outputs, 621 TemplateArgumentListInfo &Outputs, 3921 SmallVectorImpl<Expr *> &Outputs, in TransformExprs() argument 3969 Outputs.push_back(Out.get()); in TransformExprs() 3992 Outputs.push_back(Out.get()); in TransformExprs() 4009 Outputs.push_back(Out.get()); in TransformExprs() 4024 Outputs.push_back(Result.get()); in TransformExprs() 4495 InputIterator First, InputIterator Last, TemplateArgumentListInfo &Outputs, in TransformTemplateArguments() argument [all …]
|
| D | SemaTemplateInstantiate.cpp | 3498 SmallVectorImpl<Expr *> &Outputs) { in SubstExprs() argument 3506 IsCall, Outputs); in SubstExprs()
|