Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
H A 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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A 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()
H A DObjCARCOpts.cpp982 Value *NewValue = UndefValue::get(CI->getType()); in OptimizeIndividualCallImpl() local
986 << *CI << "\nNew = " << *NewValue << "\n"); in OptimizeIndividualCallImpl()
987 CI->replaceAllUsesWith(NewValue); in OptimizeIndividualCallImpl()
1003 Value *NewValue = UndefValue::get(CI->getType()); in OptimizeIndividualCallImpl() local
1007 << *CI << "\nNew = " << *NewValue << "\n"); in OptimizeIndividualCallImpl()
1009 CI->replaceAllUsesWith(NewValue); in OptimizeIndividualCallImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A 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 …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A 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 …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp243 DWARFYAML::FormValue NewValue; in dumpDebugInfo() local
244 NewValue.Value = 0xDEADBEEFDEADBEEF; in dumpDebugInfo()
257 NewValue.Value = Val.getValue(); in dumpDebugInfo()
267 NewValue.Value = Val.getValue(); in dumpDebugInfo()
277 std::back_inserter(NewValue.BlockData)); in dumpDebugInfo()
279 NewValue.Value = NewValue.BlockData.size(); in dumpDebugInfo()
291 NewValue.Value = Val.getValue(); in dumpDebugInfo()
295 NewValue.CStr = Val.getValue(); in dumpDebugInfo()
300 NewValue.Value = Val.getValue(); in dumpDebugInfo()
301 NewEntry.Values.push_back(NewValue); in dumpDebugInfo()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A 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()
H A DStructurizeCFG.cpp664 if (auto NewValue = SimplifyInstruction(Phi, Q)) { in simplifyAffectedPhis() local
665 Phi->replaceAllUsesWith(NewValue); in simplifyAffectedPhis()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A 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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DSaveAndRestore.h23 SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) { in SaveAndRestore()
24 X = NewValue; in SaveAndRestore()
H A DEndian.h258 void operator=(value_type NewValue) {
259 endian::write<value_type, endian, alignment>(Ptr, NewValue);
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DPlistSupport.h32 unsigned NewValue = V.size(); in AddFID() local
33 FIDs[FID] = NewValue; in AddFID()
35 return NewValue; in AddFID()
H A DIdentifierTable.h426 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue) in PoisonIdentifierRAIIObject() argument
429 II->setIsPoisoned(NewValue); in PoisonIdentifierRAIIObject()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/AggressiveInstCombine/
H A 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()
H A DAggressiveInstCombineInternal.h69 Value *NewValue = nullptr; member
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExternalASTSource.h427 void set(T NewValue) { in set()
429 LazyVal->LastValue = NewValue; in set()
432 Value = NewValue; in set()
436 void setNotUpdated(T NewValue) { Value = NewValue; } in setNotUpdated()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp363 void VPBasicBlock::dropAllReferences(VPValue *NewValue) { in dropAllReferences() argument
366 Def->replaceAllUsesWith(NewValue); in dropAllReferences()
369 R.setOperand(I, NewValue); in dropAllReferences()
437 void VPRegionBlock::dropAllReferences(VPValue *NewValue) { in dropAllReferences() argument
441 Block->dropAllReferences(NewValue); in dropAllReferences()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombiner.h444 void replaceUse(Use &U, Value *NewValue) { in replaceUse() argument
446 U = NewValue; in replaceUse()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLoopUnrollAndJam.cpp450 Value *NewValue = OldValue; in UnrollAndJamLoop() local
452 NewValue = PrevValue; in UnrollAndJamLoop()
456 Phi.setIncomingValue(0, NewValue); in UnrollAndJamLoop()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheckImpl.h308 void setValue(ExpressionValue NewValue,
310 Value = NewValue;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp1033 DbgVariableValue NewValue(DbgValue); in addDefsFromCopies() local
1047 NewValue = NewValue.changeLocNo(LocNo, NewLocNo); in addDefsFromCopies()
1056 I.insert(KilledAt, KilledAt.getNextSlot(), NewValue); in addDefsFromCopies()
1057 NewDefs.push_back(std::make_pair(KilledAt, NewValue)); in addDefsFromCopies()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h422 void replaceUse(Use &U, Value *NewValue) { in replaceUse() argument
424 U = NewValue; in replaceUse()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Linker/
H A DIRMover.cpp1519 Value *NewValue = Mapper.mapValue(GV); in run() local
1520 if (NewValue) { in run()
1521 auto *NewGV = dyn_cast<GlobalVariable>(NewValue->stripPointerCasts()); in run()

12