Home
last modified time | relevance | path

Searched refs:NewValue (Results 1 – 25 of 38) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
DGIMatchDagOperands.cpp69 std::unique_ptr<GIMatchDagOperandList> NewValue = in makeEmptyOperandList() local
71 OperandLists.InsertNode(NewValue.get(), InsertPoint); in makeEmptyOperandList()
72 OperandListsOwner.push_back(std::move(NewValue)); in makeEmptyOperandList()
89 std::unique_ptr<GIMatchDagOperandList> NewValue = in makeOperandList() local
92 NewValue->add(I.Operands[i].Name, i, i < I.Operands.NumDefs); in makeOperandList()
93 OperandLists.InsertNode(NewValue.get(), InsertPoint); in makeOperandList()
94 OperandListsOwner.push_back(std::move(NewValue)); in makeOperandList()
110 std::unique_ptr<GIMatchDagOperandList> NewValue = in makeMIPredicateOperandList() local
112 NewValue->add("$", 0, true); in makeMIPredicateOperandList()
113 NewValue->add("mi", 1, false); in makeMIPredicateOperandList()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
DPtrState.h121 void SetKnownSafe(const bool NewValue) { RRI.KnownSafe = NewValue; } in SetKnownSafe() argument
125 void SetTailCallRelease(const bool NewValue) { in SetTailCallRelease() argument
126 RRI.IsTailCallRelease = NewValue; in SetTailCallRelease()
135 void SetReleaseMetadata(MDNode *NewValue) { RRI.ReleaseMetadata = NewValue; } in SetReleaseMetadata() argument
139 void SetCFGHazardAfflicted(const bool NewValue) { in SetCFGHazardAfflicted() argument
140 RRI.CFGHazardAfflicted = NewValue; in SetCFGHazardAfflicted()
DObjCARCOpts.cpp985 Value *NewValue = UndefValue::get(CI->getType()); in OptimizeIndividualCallImpl() local
989 << *CI << "\nNew = " << *NewValue << "\n"); in OptimizeIndividualCallImpl()
990 CI->replaceAllUsesWith(NewValue); in OptimizeIndividualCallImpl()
1006 Value *NewValue = UndefValue::get(CI->getType()); in OptimizeIndividualCallImpl() local
1010 << *CI << "\nNew = " << *NewValue << "\n"); in OptimizeIndividualCallImpl()
1012 CI->replaceAllUsesWith(NewValue); in OptimizeIndividualCallImpl()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
DNVPTXGenericToNVVM.cpp165 Value *NewValue = C; in remapConstant() local
175 NewValue = Builder.CreateAddrSpaceCast( in remapConstant()
183 NewValue = remapConstantVectorOrConstantAggregate(M, F, C, Builder); in remapConstant()
188 NewValue = remapConstantExpr(M, F, cast<ConstantExpr>(C), Builder); in remapConstant()
191 ConstantToValueMap[C] = NewValue; in remapConstant()
192 return NewValue; in remapConstant()
218 Value *NewValue = UndefValue::get(C->getType()); in remapConstantVectorOrConstantAggregate() local
222 NewValue = Builder.CreateInsertElement(NewValue, NewOperands[i], Idx); in remapConstantVectorOrConstantAggregate()
226 NewValue = in remapConstantVectorOrConstantAggregate()
227 Builder.CreateInsertValue(NewValue, NewOperands[i], makeArrayRef(i)); in remapConstantVectorOrConstantAggregate()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
DVariantValue.cpp343 void VariantValue::setBoolean(bool NewValue) { in setBoolean() argument
346 Value.Boolean = NewValue; in setBoolean()
358 void VariantValue::setDouble(double NewValue) { in setDouble() argument
361 Value.Double = NewValue; in setDouble()
373 void VariantValue::setUnsigned(unsigned NewValue) { in setUnsigned() argument
376 Value.Unsigned = NewValue; in setUnsigned()
388 void VariantValue::setString(StringRef NewValue) { in setString() argument
391 Value.String = new std::string(NewValue); in setString()
401 void VariantValue::setNodeKind(ASTNodeKind NewValue) { in setNodeKind() argument
404 Value.NodeKind = new ASTNodeKind(NewValue); in setNodeKind()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Parse/
DRAIIObjectsForParser.h370 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) in PoisonSEHIdentifiersRAIIObject() argument
371 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue), in PoisonSEHIdentifiersRAIIObject()
372 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue), in PoisonSEHIdentifiersRAIIObject()
373 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue), in PoisonSEHIdentifiersRAIIObject()
374 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject()
375 Ident__exception_code(Self.Ident__exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject()
376 Ident__exception_info(Self.Ident__exception_info, NewValue), in PoisonSEHIdentifiersRAIIObject()
377 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject()
378 Ident___exception_code(Self.Ident___exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject()
379 Ident___exception_info(Self.Ident___exception_info, NewValue) { in PoisonSEHIdentifiersRAIIObject()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLowerConstantIntrinsics.cpp55 Value *NewValue, in replaceConditionalBranchesOnConstant() argument
59 replaceAndRecursivelySimplify(II, NewValue, nullptr, nullptr, nullptr, in replaceConditionalBranchesOnConstant()
128 Value *NewValue; in lowerConstantIntrinsics() local
133 NewValue = lowerIsConstantIntrinsic(II); in lowerConstantIntrinsics()
137 NewValue = lowerObjectSizeCall(II, DL, TLI, true); in lowerConstantIntrinsics()
142 II, NewValue, DTU.hasValue() ? DTU.getPointer() : nullptr); in lowerConstantIntrinsics()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DIntrinsicInst.cpp83 Value *NewValue) { in replaceVariableLocationOp() argument
84 assert(NewValue && "Values must be non-null"); in replaceVariableLocationOp()
89 Value *NewOperand = isa<MetadataAsValue>(NewValue) in replaceVariableLocationOp()
90 ? NewValue in replaceVariableLocationOp()
92 getContext(), ValueAsMetadata::get(NewValue)); in replaceVariableLocationOp()
96 ValueAsMetadata *NewOperand = getAsMetadata(NewValue); in replaceVariableLocationOp()
103 Value *NewValue) { in replaceVariableLocationOp() argument
106 Value *NewOperand = isa<MetadataAsValue>(NewValue) in replaceVariableLocationOp()
107 ? NewValue in replaceVariableLocationOp()
109 getContext(), ValueAsMetadata::get(NewValue)); in replaceVariableLocationOp()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DSaveAndRestore.h23 SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) { in SaveAndRestore()
24 X = NewValue; in SaveAndRestore()
DEndian.h258 void operator=(value_type NewValue) {
259 endian::write<value_type, endian, alignment>(Ptr, NewValue);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DPlistSupport.h32 unsigned NewValue = V.size(); in AddFID() local
33 FIDs[FID] = NewValue; in AddFID()
35 return NewValue; in AddFID()
DIdentifierTable.h426 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue) in PoisonIdentifierRAIIObject() argument
429 II->setIsPoisoned(NewValue); in PoisonIdentifierRAIIObject()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
DTruncInstCombine.cpp306 assert(Entry.NewValue); in getReducedOperand()
307 return Entry.NewValue; in getReducedOperand()
316 assert(!NodeInfo.NewValue && "Instruction has been evaluated"); in ReduceExpressionDag()
331 NodeInfo.NewValue = I->getOperand(0); in ReduceExpressionDag()
376 NodeInfo.NewValue = Res; in ReduceExpressionDag()
DAggressiveInstCombineInternal.h69 Value *NewValue = nullptr; member
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DExternalASTSource.h425 void set(T NewValue) { in set()
427 LazyVal->LastValue = NewValue; in set()
430 Value = NewValue; in set()
434 void setNotUpdated(T NewValue) { Value = NewValue; } in setNotUpdated()
/freebsd-12-stable/sys/dev/mps/
Dmps_sas_lsi.c401 le32toh(event_data->NewValue), in mpssas_fw_work()
408 le32toh(event_data->NewValue), in mpssas_fw_work()
415 le32toh(event_data->NewValue), in mpssas_fw_work()
419 state = le32toh(event_data->NewValue); in mpssas_fw_work()
468 le32toh(event_data->NewValue), in mpssas_fw_work()
478 le32toh(event_data->NewValue), event_data->PhysDiskNum, in mpssas_fw_work()
487 le32toh(event_data->NewValue), event_data->PhysDiskNum, in mpssas_fw_work()
490 switch (event_data->NewValue) { in mpssas_fw_work()
/freebsd-12-stable/sys/dev/mpr/
Dmpr_sas_lsi.c477 le32toh(event_data->NewValue), in mprsas_fw_work()
484 le32toh(event_data->NewValue), in mprsas_fw_work()
491 le32toh(event_data->NewValue), in mprsas_fw_work()
495 state = le32toh(event_data->NewValue); in mprsas_fw_work()
550 le32toh(event_data->NewValue), in mprsas_fw_work()
561 le32toh(event_data->NewValue), in mprsas_fw_work()
572 le32toh(event_data->NewValue), in mprsas_fw_work()
577 switch (event_data->NewValue) { in mprsas_fw_work()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/
DInstCombiner.h444 void replaceUse(Use &U, Value *NewValue) { in replaceUse() argument
446 U = NewValue; in replaceUse()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
DBodyFarm.cpp613 const ParmVarDecl *NewValue = D->getParamDecl(1); in create_OSAtomicCompareAndSwap() local
614 QualType NewValueTy = NewValue->getType(); in create_OSAtomicCompareAndSwap()
644 M.makeLvalueToRvalue(M.makeDeclRefExpr(NewValue), NewValueTy), in create_OSAtomicCompareAndSwap()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DLoopUnrollAndJam.cpp450 Value *NewValue = OldValue; in UnrollAndJamLoop() local
452 NewValue = PrevValue; in UnrollAndJamLoop()
456 Phi.setIncomingValue(0, NewValue); in UnrollAndJamLoop()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
DVPlan.cpp363 void VPBasicBlock::dropAllReferences(VPValue *NewValue) { in dropAllReferences() argument
366 Def->replaceAllUsesWith(NewValue); in dropAllReferences()
369 R.setOperand(I, NewValue); in dropAllReferences()
441 void VPRegionBlock::dropAllReferences(VPValue *NewValue) { in dropAllReferences() argument
445 Block->dropAllReferences(NewValue); in dropAllReferences()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/FileCheck/
DFileCheckImpl.h308 void setValue(ExpressionValue NewValue,
310 Value = NewValue;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DLiveDebugVariables.cpp1078 DbgVariableValue NewValue(DbgValue); in addDefsFromCopies() local
1092 NewValue = NewValue.changeLocNo(LocNo, NewLocNo); in addDefsFromCopies()
1101 I.insert(KilledAt, KilledAt.getNextSlot(), NewValue); in addDefsFromCopies()
1102 NewDefs.push_back(std::make_pair(KilledAt, NewValue)); in addDefsFromCopies()
/freebsd-12-stable/sys/dev/mps/mpi/
Dmpi2_ioc.h632 U32 NewValue; /* 0x04 */ member
654 U32 NewValue; /* 0x0C */ member
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineInternal.h425 void replaceUse(Use &U, Value *NewValue) { in replaceUse() argument
427 U = NewValue; in replaceUse()

12