| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | ASTVector.h | 186 size_type NumInputs = std::distance(in_start, in_end); in append() local 188 if (NumInputs == 0) in append() 192 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append() 193 this->grow(C, this->size()+NumInputs); in append() 199 this->setEnd(this->end() + NumInputs); in append() 203 void append(const ASTContext &C, size_type NumInputs, const T &Elt) { in append() argument 205 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append() 206 this->grow(C, this->size()+NumInputs); in append() 209 std::uninitialized_fill_n(this->end(), NumInputs, Elt); in append() 210 this->setEnd(this->end() + NumInputs); in append()
|
| H A D | Stmt.h | 2535 unsigned NumInputs; variable 2543 NumOutputs(numoutputs), NumInputs(numinputs), in AsmStmt() 2591 unsigned getNumInputs() const { return NumInputs; } in getNumInputs() 2621 return &Exprs[0] + NumOutputs + NumInputs; in end_inputs() 2631 return &Exprs[0] + NumOutputs + NumInputs; in end_inputs() 2670 return child_range(&Exprs[0], &Exprs[0] + NumOutputs + NumInputs); in children() 2822 unsigned NumInputs, 2905 assert(i < NumInputs); in getInputConstraint() 2919 return llvm::makeArrayRef(Constraints, NumInputs + NumOutputs); in getAllConstraints() 2928 NumInputs + NumOutputs); in getAllExprs() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | InlineAsm.cpp | 252 unsigned NumOutputs = 0, NumInputs = 0, NumClobbers = 0; in Verify() local 258 if ((NumInputs-NumIndirect) != 0 || NumClobbers != 0) in Verify() 268 ++NumInputs; in Verify() 290 if (Ty->getNumParams() != NumInputs) return false; in Verify()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | SmallVector.h | 395 size_type NumInputs = std::distance(in_start, in_end); in append() local 397 if (NumInputs > this->capacity() - this->size()) in append() 398 this->grow(this->size()+NumInputs); in append() 402 this->set_size(this->size() + NumInputs); in append() 406 void append(size_type NumInputs, const T &Elt) { in append() argument 408 if (NumInputs > this->capacity() - this->size()) in append() 409 this->grow(this->size()+NumInputs); in append() 412 std::uninitialized_fill_n(this->end(), NumInputs, Elt); in append() 413 this->set_size(this->size() + NumInputs); in append()
|
| H A D | SmallString.h | 79 void append(size_t NumInputs, char Elt) { in append() argument 80 SmallVectorImpl<char>::append(NumInputs, Elt); in append()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaStmtAsm.cpp | 242 unsigned NumInputs, IdentifierInfo **Names, in ActOnGCCAsmStmt() argument 261 Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, Names, in ActOnGCCAsmStmt() 340 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) { in ActOnGCCAsmStmt() 454 NumInputs, Names, Constraints, Exprs.data(), in ActOnGCCAsmStmt() 841 unsigned NumOutputs, unsigned NumInputs, in ActOnMSAsmStmt() argument 846 bool IsSimple = (NumOutputs != 0 || NumInputs != 0); in ActOnMSAsmStmt() 850 /*IsVolatile*/ true, AsmToks, NumOutputs, NumInputs, in ActOnMSAsmStmt()
|
| H A D | TreeTransform.h | 406 bool TransformExprs(Expr *const *Inputs, unsigned NumInputs, bool IsCall, 554 unsigned NumInputs, 557 return TransformTemplateArguments(Inputs, Inputs + NumInputs, Outputs, 1356 unsigned NumInputs, IdentifierInfo **Names, in RebuildGCCAsmStmt() argument 1361 NumInputs, Names, Constraints, Exprs, in RebuildGCCAsmStmt() 1372 unsigned NumOutputs, unsigned NumInputs, in RebuildMSAsmStmt() argument 1378 NumOutputs, NumInputs, in RebuildMSAsmStmt() 3426 unsigned NumInputs, in TransformExprs() argument 3430 for (unsigned I = 0; I != NumInputs; ++I) { in TransformExprs()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseStmtAsm.cpp | 627 unsigned NumInputs; in ParseMicrosoftAsmStatement() local 633 NumInputs, OpExprs, Constraints, Clobbers, in ParseMicrosoftAsmStatement() 647 unsigned NumExprs = NumOutputs + NumInputs; in ParseMicrosoftAsmStatement() 666 NumOutputs, NumInputs, ConstraintRefs, in ParseMicrosoftAsmStatement() 789 unsigned NumInputs = Names.size() - NumOutputs; in ParseAsmStatement() local 814 AsmLoc, false, isVolatile, NumOutputs, NumInputs, Names.data(), in ParseAsmStatement()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUMachineCFGStructurizer.cpp | 1355 unsigned NumInputs = getPHINumInputs(PHI); in getPHIRegionIndices() local 1356 for (unsigned i = 0; i < NumInputs; ++i) { in getPHIRegionIndices() 1367 unsigned NumInputs = getPHINumInputs(PHI); in getPHIRegionIndices() local 1368 for (unsigned i = 0; i < NumInputs; ++i) { in getPHIRegionIndices() 1379 unsigned NumInputs = getPHINumInputs(PHI); in getPHINonRegionIndices() local 1380 for (unsigned i = 0; i < NumInputs; ++i) { in getPHINonRegionIndices() 1462 unsigned NumInputs = getPHINumInputs(PHI); in shrinkPHI() local 1464 for (unsigned i = 0; i < NumInputs; ++i) { in shrinkPHI() 1519 unsigned NumInputs = getPHINumInputs(PHI); in replacePHI() local 1520 for (unsigned i = 0; i < NumInputs; ++i) { in replacePHI() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Stmt.cpp | 466 unsigned NumInputs, in setOutputsAndInputsAndClobbers() argument 470 this->NumInputs = NumInputs; in setOutputsAndInputsAndClobbers() 473 unsigned NumExprs = NumOutputs + NumInputs; in setOutputsAndInputsAndClobbers() 742 unsigned NumExprs = NumOutputs + NumInputs; in GCCAsmStmt() 782 assert(exprs.size() == NumOutputs + NumInputs); in initialize()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MC/MCParser/ |
| H A D | MCAsmParser.h | 181 unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool>> &OpDecls,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 364 S->NumInputs = Record.readInt(); in VisitAsmStmt() 377 unsigned NumInputs = S->getNumInputs(); in VisitGCCAsmStmt() local 384 for (unsigned I = 0, N = NumOutputs + NumInputs; I != N; ++I) { in VisitGCCAsmStmt() 397 Exprs.data(), NumOutputs, NumInputs, in VisitGCCAsmStmt() 429 unsigned NumOperands = S->NumOutputs + S->NumInputs; in VisitMSAsmStmt()
|
| H A D | ASTReader.cpp | 2361 unsigned NumInputs = 0; in ReadControlBlock() local 2396 N = NumInputs; in ReadControlBlock() 2409 unsigned N = Listener->needsSystemInputFileVisitation() ? NumInputs in ReadControlBlock() 2661 NumInputs = Record[0]; in ReadControlBlock() 2665 F.InputFilesLoaded.resize(NumInputs); in ReadControlBlock() 9207 unsigned NumInputs = MF.InputFilesLoaded.size(); in visitInputFiles() local 9208 assert(NumUserInputs <= NumInputs); in visitInputFiles() 9209 unsigned N = IncludeSystem ? NumInputs : NumUserInputs; in visitInputFiles() 9220 unsigned NumInputs = MF.InputFilesLoaded.size(); in visitTopLevelModuleMaps() local 9221 for (unsigned I = 0; I < NumInputs; ++I) { in visitTopLevelModuleMaps()
|
| /freebsd-12.1/contrib/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 239 unsigned &NumOutputs, unsigned &NumInputs, 5624 unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool>> &OpDecls, in parseMSInlineAsm() argument 5717 NumInputs = InputDecls.size(); in parseMSInlineAsm() 5730 if (NumOutputs || NumInputs) { in parseMSInlineAsm() 5731 unsigned NumExprs = NumOutputs + NumInputs; in parseMSInlineAsm() 5738 for (unsigned i = 0, j = NumOutputs; i < NumInputs; ++i, ++j) { in parseMSInlineAsm()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 3867 unsigned NumInputs, IdentifierInfo **Names, 3885 unsigned NumOutputs, unsigned NumInputs,
|