| /freebsd/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | record_section_tracker.h | 29 void add(span<RecordElement> Sec) { New.push_back(std::move(Sec)); } in add() 32 bool hasNewSections() const { return !New.empty(); } in hasNewSections() 35 size_t numNewSections() const { return New.size(); } in numNewSections() 42 for (auto &Sec : New) in processNewSections() 57 for (size_t I = 0; I != New.size(); ++I) { in processNewSections() 58 if (auto Err = ProcessSection(New[I])) { in processNewSections() 60 Processed.push_back(New[J]); in processNewSections() 61 New.erase(New.begin(), New.begin() + I); in processNewSections() 72 New = std::move(Processed); in reset() 77 if (removeIfPresent(New, R)) in removeIfPresent() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | Mutations.cpp | 22 static void addAfter(syntax::Node *Anchor, syntax::Node *New, NodeRole Role) { in addAfter() argument 25 assert(New->Parent == nullptr); in addAfter() 26 assert(New->NextSibling == nullptr); in addAfter() 27 assert(New->PreviousSibling == nullptr); in addAfter() 28 assert(New->isDetached()); in addAfter() 31 New->setRole(Role); in addAfter() 34 Anchor->getNextSibling(), New); in addAfter() 40 static void replace(syntax::Node *Old, syntax::Node *New) { in replace() argument 44 assert(New->Parent == nullptr); in replace() 45 assert(New->NextSibling == nullptr); in replace() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | ConstantMerge.cpp | 104 static CanMerge makeMergeable(GlobalVariable *Old, GlobalVariable *New) { in makeMergeable() argument 105 if (!Old->hasGlobalUnnamedAddr() && !New->hasGlobalUnnamedAddr()) in makeMergeable() 109 assert(!hasMetadataOtherThanDebugLoc(New)); in makeMergeable() 111 New->setUnnamedAddr(GlobalValue::UnnamedAddr::None); in makeMergeable() 115 static void replace(Module &M, GlobalVariable *Old, GlobalVariable *New) { in replace() argument 116 Constant *NewConstant = New; in replace() 119 << New->getName() << "\n"); in replace() 122 if (Old->getAlign() || New->getAlign()) in replace() 123 New->setAlignment(std::max(getAlign(Old), getAlign(New))); in replace() 125 copyDebugLocMetadata(Old, New); in replace() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | InterpBlock.cpp | 69 void Block::replacePointer(Pointer *Old, Pointer *New) { in replacePointer() argument 71 assert(New); in replacePointer() 72 assert(Old != New); in replacePointer() 82 Old->Prev->Next = New; in replacePointer() 84 Old->Next->Prev = New; in replacePointer() 85 New->Prev = Old->Prev; in replacePointer() 86 New->Next = Old->Next; in replacePointer() 88 Pointers = New; in replacePointer() 91 New->PointeeStorage.BS.Pointee = this; in replacePointer() 94 assert(hasPointer(New)); in replacePointer()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | CloneModule.cpp | 59 std::unique_ptr<Module> New = in CloneModule() local 61 New->setSourceFileName(M.getSourceFileName()); in CloneModule() 62 New->setDataLayout(M.getDataLayout()); in CloneModule() 63 New->setTargetTriple(M.getTargetTriple()); in CloneModule() 64 New->setModuleInlineAsm(M.getModuleInlineAsm()); in CloneModule() 72 *New, I.getValueType(), I.isConstant(), I.getLinkage(), in CloneModule() 83 I.getAddressSpace(), I.getName(), New.get()); in CloneModule() 99 I.getName(), New.get()); in CloneModule() 101 GV = new GlobalVariable(*New, I.getValueType(), false, in CloneModule() 113 I.getLinkage(), I.getName(), New.get()); in CloneModule() [all …]
|
| H A D | LoopUnrollAndJam.cpp | 372 BasicBlock *New = CloneBasicBlock(*BB, VMap, "." + Twine(It)); in UnrollAndJamLoop() local 373 Header->getParent()->insert(Header->getParent()->end(), New); in UnrollAndJamLoop() 376 addClonedBlockToLoopInfo(*BB, New, LI, NewLoops); in UnrollAndJamLoop() 380 ForeBlocksFirst.push_back(New); in UnrollAndJamLoop() 382 ForeBlocksLast.push_back(New); in UnrollAndJamLoop() 385 SubLoopBlocksFirst.push_back(New); in UnrollAndJamLoop() 387 SubLoopBlocksLast.push_back(New); in UnrollAndJamLoop() 390 AftBlocksFirst.push_back(New); in UnrollAndJamLoop() 392 AftBlocksLast.push_back(New); in UnrollAndJamLoop() 399 PrevItValueMap[New] = (It == 1 ? *BB : Last); in UnrollAndJamLoop() [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | wrappers_cpp.cpp | 39 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::New); in operator new() 50 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::New); in operator new() 61 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::New, in operator delete[]() 74 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::New, in operator delete[]() 89 Allocator.deallocate(ptr, scudo::Chunk::Origin::New); in operator delete() 98 Allocator.deallocate(ptr, scudo::Chunk::Origin::New); in operator delete() 107 Allocator.deallocate(ptr, scudo::Chunk::Origin::New, size); 116 Allocator.deallocate(ptr, scudo::Chunk::Origin::New, 0, 128 Allocator.deallocate(ptr, scudo::Chunk::Origin::New, 0, 140 Allocator.deallocate(ptr, scudo::Chunk::Origin::New, siz [all...] |
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 1488 const FunctionDecl *New) { in AllowOverloadingOfFunction() argument 1489 if (Context.getLangOpts().CPlusPlus || New->hasAttr<OverloadableAttr>()) in AllowOverloadingOfFunction() 1613 bool Sema::CheckRedeclarationModuleOwnership(NamedDecl *New, NamedDecl *Old) { in CheckRedeclarationModuleOwnership() argument 1621 if (New->getFriendObjectKind() && in CheckRedeclarationModuleOwnership() 1622 Old->getOwningModuleForLinkage() != New->getOwningModuleForLinkage()) { in CheckRedeclarationModuleOwnership() 1623 New->setLocalOwningModule(Old->getOwningModule()); in CheckRedeclarationModuleOwnership() 1624 makeMergedDefinitionVisible(New); in CheckRedeclarationModuleOwnership() 1628 Module *NewM = New->getOwningModule(); in CheckRedeclarationModuleOwnership() 1658 Diag(New->getLocation(), diag::err_mismatched_owning_module) in CheckRedeclarationModuleOwnership() 1659 << New in CheckRedeclarationModuleOwnership() [all …]
|
| H A D | SemaExceptionSpec.cpp | 267 const FunctionProtoType *New, SourceLocation NewLoc, 292 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { in CheckEquivalentExceptionSpec() argument 299 OverloadedOperatorKind OO = New->getDeclName().getCXXOverloadedOperator(); in CheckEquivalentExceptionSpec() 314 if (exceptionSpecNotKnownYet(Old) || exceptionSpecNotKnownYet(New)) { in CheckEquivalentExceptionSpec() 315 DelayedEquivalentExceptionSpecChecks.push_back({New, Old}); in CheckEquivalentExceptionSpec() 324 New->getType()->getAs<FunctionProtoType>(), New->getLocation(), in CheckEquivalentExceptionSpec() 332 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) { in CheckEquivalentExceptionSpec() 333 Diag(New->getLocation(), diag::ext_implicit_exception_spec_mismatch) in CheckEquivalentExceptionSpec() 346 const auto *NewProto = New->getType()->castAs<FunctionProtoType>(); in CheckEquivalentExceptionSpec() 361 New->setType(Context.getFunctionType( in CheckEquivalentExceptionSpec() [all …]
|
| H A D | SemaTemplateInstantiateDecl.cpp | 93 const AlignedAttr *Aligned, Decl *New, bool IsPackExpansion) { in instantiateDependentAlignedAttr() argument 100 S.AddAlignedAttr(New, *Aligned, Result.getAs<Expr>(), IsPackExpansion); in instantiateDependentAlignedAttr() 108 S.AddAlignedAttr(New, *Aligned, Result, IsPackExpansion); in instantiateDependentAlignedAttr() 115 const AlignedAttr *Aligned, Decl *New) { in instantiateDependentAlignedAttr() argument 117 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false); in instantiateDependentAlignedAttr() 142 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, true); in instantiateDependentAlignedAttr() 146 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false); in instantiateDependentAlignedAttr() 153 const AssumeAlignedAttr *Aligned, Decl *New) { in instantiateDependentAssumeAlignedAttr() argument 171 S.AddAssumeAlignedAttr(New, *Aligned, E, OE); in instantiateDependentAssumeAlignedAttr() 176 const AlignValueAttr *Aligned, Decl *New) { in instantiateDependentAlignValueAttr() argument [all …]
|
| /freebsd/contrib/libfido2/ |
| H A D | NEWS | 7 ** New API calls: 17 ** New API calls: 28 ** New API calls: 35 ** New API calls: 45 ** New API calls: 69 ** New API calls: 79 ** New API calls: 96 ** New API calls: 115 ** New API calls: 131 ** New dependency on zlib. [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Value.cpp | 514 void Value::doRAUW(Value *New, ReplaceMetadataUses ReplaceMetaUses) { in doRAUW() argument 516 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!"); in doRAUW() 517 assert(!contains(New, this) && in doRAUW() 519 assert(New->getType() == getType() && in doRAUW() 524 ValueHandleBase::ValueIsRAUWd(this, New); in doRAUW() 526 ValueAsMetadata::handleRAUW(this, New); in doRAUW() 534 C->handleOperandChange(this, New); in doRAUW() 539 U.set(New); in doRAUW() 543 BB->replaceSuccessorsPhiUsesWith(cast<BasicBlock>(New)); in doRAUW() 546 void Value::replaceAllUsesWith(Value *New) { in replaceAllUsesWith() argument [all …]
|
| H A D | BasicBlock.cpp | 564 BasicBlock *New = BasicBlock::Create(getContext(), BBName, getParent(), in splitBasicBlock() local 574 New->splice(New->end(), this, I, end()); in splitBasicBlock() 577 BranchInst *BI = BranchInst::Create(New, this); in splitBasicBlock() 585 New->replaceSuccessorsPhiUsesWith(this, New); in splitBasicBlock() 586 return New; in splitBasicBlock() 598 BasicBlock *New = BasicBlock::Create(getContext(), BBName, getParent(), this); in splitBasicBlockBefore() local 606 New->splice(New->end(), this, begin(), I); in splitBasicBlockBefore() 618 TI->replaceSuccessorWith(this, New); in splitBasicBlockBefore() 619 this->replacePhiUsesWith(Pred, New); in splitBasicBlockBefore() 622 BranchInst *BI = BranchInst::Create(this, New); in splitBasicBlockBefore() [all …]
|
| /freebsd/crypto/krb5/src/lib/kadm5/ |
| H A D | chpass_util_strings.et | 8 "New passwords do not match - password not changed.\n" 10 error_code CHPASS_UTIL_NEW_PASSWORD_PROMPT, "New password" 11 error_code CHPASS_UTIL_NEW_PASSWORD_AGAIN_PROMPT, "New password (again)" 19 "New password was found in a dictionary of possible passwords and\n\ 26 "New password is too short.\n\ 31 "New password does not have enough character classes.\n\ 50 "New password was used previously. Please choose a different password."
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyRegColoring.cpp | 306 Register New = SortedIntervals[Color]->reg(); in runOnMachineFunction() local 307 SlotMapping[I] = New; in runOnMachineFunction() 308 Changed |= Old != New; in runOnMachineFunction() 312 if (Old != New && MFI.isFrameBaseVirtual() && MFI.getFrameBaseVreg() == Old) in runOnMachineFunction() 313 MFI.setFrameBaseVreg(New); in runOnMachineFunction() 315 << printReg(New) << "\n"); in runOnMachineFunction() 326 unsigned New = SlotMapping[I]; in runOnMachineFunction() local 327 if (Old != New) in runOnMachineFunction() 328 MRI->replaceRegWith(Old, New); in runOnMachineFunction()
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ |
| H A D | MultilibBuilder.cpp | 132 const MultilibBuilder &New) { in compose() argument 134 llvm::sys::path::append(GCCSuffix, "/", Base.gccSuffix(), New.gccSuffix()); in compose() 136 llvm::sys::path::append(OSSuffix, "/", Base.osSuffix(), New.osSuffix()); in compose() 139 New.includeSuffix()); in compose() 146 llvm::append_range(Flags, New.flags()); in compose() 158 for (const auto &New : MultilibSegments) { in Either() local 160 MultilibBuilder MO = compose(Base, New); in Either()
|
| /freebsd/contrib/one-true-awk/ |
| H A D | ChangeLog | 36 * testdir/T.int-expr: New file. 68 * parse.c (node5, op5): New functions. 69 * proto.h (node5, op5): New declarations. 71 (gensub): New function. 83 * b.c (fnematch): New function for implementing the feature. 147 * REGRESS: New file, from Brian. 152 * awkgram.y (UPLUS): New token. In the grammar, call op1() 158 bugs-fixed/unary-plus.ok: New files. 170 [CONVC, CONVO]: New flag macros. 173 bugs-fixed/string-conv.ok: New files. [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | UnresolvedSet.h | 102 bool replace(const NamedDecl* Old, NamedDecl *New) { in replace() argument 105 return (I->setDecl(New), true); in replace() 111 void replace(iterator I, NamedDecl *New) { I.I->setDecl(New); } in replace() argument 113 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) { in replace() argument 114 I.I->set(New, AS); in replace()
|
| /freebsd/contrib/nvi/regex/ |
| H A D | WHATSNEW | 3 New in alpha3.4: The complex bug alluded to below has been fixed (in a 11 New in alpha3.3: The definition of word boundaries has been altered 23 New in alpha3.2: Assorted bits of cleanup and portability improvement 35 New in alpha3.1: Basically nothing, this release is just a bookkeeping 38 New in alpha3.0: Performance is no better, alas, but some fixes have been 51 New in alpha2.3: Split change list out of README, and moved flags notes 56 New in alpha2.2: Out-of-date manpages updated. Regerror() acquires two 66 New in alpha2.1: Lots of little stuff, cleanup and fixes. The one big 74 New in alpha2: Backslash-anything is an ordinary character, not an 82 New in alpha+3: full prototyping for internal routines, using a little [all …]
|
| /freebsd/lib/libc/regex/ |
| H A D | WHATSNEW | 2 New in alpha3.4: The complex bug alluded to below has been fixed (in a 10 New in alpha3.3: The definition of word boundaries has been altered 22 New in alpha3.2: Assorted bits of cleanup and portability improvement 34 New in alpha3.1: Basically nothing, this release is just a bookkeeping 37 New in alpha3.0: Performance is no better, alas, but some fixes have been 50 New in alpha2.3: Split change list out of README, and moved flags notes 55 New in alpha2.2: Out-of-date manpages updated. Regerror() acquires two 65 New in alpha2.1: Lots of little stuff, cleanup and fixes. The one big 73 New in alpha2: Backslash-anything is an ordinary character, not an 81 New in alpha+3: full prototyping for internal routines, using a little [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/bugpoint/ |
| H A D | ExtractFunction.cpp | 120 std::unique_ptr<Module> New = runPassesOn(Clone.get(), Passes); in deleteInstructionFromProgram() local 121 if (!New) { in deleteInstructionFromProgram() 125 return New; in deleteInstructionFromProgram() 142 std::unique_ptr<Module> New = runPassesOn(M.get(), CleanupPasses); in performFinalCleanups() local 143 if (!New) { in performFinalCleanups() 147 return New; in performFinalCleanups() 319 std::unique_ptr<Module> New = CloneModule(*M, NewVMap); in SplitFunctionsOutOfModule() local 333 for (Function &I : *New) in SplitFunctionsOutOfModule() 360 SplitStaticCtorDtor("llvm.global_ctors", M, New.get(), NewVMap); in SplitFunctionsOutOfModule() 361 SplitStaticCtorDtor("llvm.global_dtors", M, New.get(), NewVMap); in SplitFunctionsOutOfModule() [all …]
|
| /freebsd/contrib/lutok/ |
| H A D | NEWS | 15 * Issue 5: New methods added to the state class: open_all. 43 * New global constants: registry_index. 45 * New methods added to the state class: get_global_table. 55 * New global constants: globals_index. 57 * New methods added to the state class: get_metafield, get_metatable,
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LiveRangeShrink.cpp | 77 static MachineInstr *FindDominatedInstruction(MachineInstr &New, in FindDominatedInstruction() argument 80 auto NewIter = M.find(&New); in FindDominatedInstruction() 84 return &New; in FindDominatedInstruction() 88 return OrderOld < OrderNew ? &New : Old; in FindDominatedInstruction() 93 if (I == &New) in FindDominatedInstruction() 94 return &New; in FindDominatedInstruction()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | ilist.h | 165 iterator insert(iterator where, pointer New) { 166 this->addNodeToList(New); // Notify traits that we added a node... 167 return base_list_type::insert(where, *New); 170 iterator insert(iterator where, const_reference New) { 171 return this->insert(where, new value_type(New)); 174 iterator insertAfter(iterator where, pointer New) { 176 return insert(begin(), New); 178 return insert(++where, New);
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | TypeBasedAliasAnalysis.cpp | 826 AAMDNodes New = *this; in adjustForAccess() local 827 MDNode *M = New.TBAAStruct; in adjustForAccess() 828 if (!New.TBAA && M && M->getNumOperands() >= 3 && M->getOperand(0) && in adjustForAccess() 835 New.TBAA = cast<MDNode>(M->getOperand(2)); in adjustForAccess() 837 New.TBAAStruct = nullptr; in adjustForAccess() 838 return New; in adjustForAccess() 843 AAMDNodes New = shift(Offset); in adjustForAccess() local 845 return New; in adjustForAccess() 848 return New; in adjustForAccess() 850 return New.adjustForAccess(Size.getKnownMinValue()); in adjustForAccess() [all …]
|