Home
last modified time | relevance | path

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

12

/external/llvm/lib/Transforms/ObjCARC/
DPtrState.h120 void SetKnownSafe(const bool NewValue) { RRI.KnownSafe = NewValue; } in SetKnownSafe() argument
124 void SetTailCallRelease(const bool NewValue) { in SetTailCallRelease() argument
125 RRI.IsTailCallRelease = NewValue; in SetTailCallRelease()
134 void SetReleaseMetadata(MDNode *NewValue) { RRI.ReleaseMetadata = NewValue; } in SetReleaseMetadata() argument
138 void SetCFGHazardAfflicted(const bool NewValue) { in SetCFGHazardAfflicted() argument
139 RRI.CFGHazardAfflicted = NewValue; in SetCFGHazardAfflicted()
DObjCARCOpts.cpp723 llvm::Value *NewValue = UndefValue::get(CI->getType()); in OptimizeIndividualCalls() local
725 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n"); in OptimizeIndividualCalls()
726 CI->replaceAllUsesWith(NewValue); in OptimizeIndividualCalls()
743 llvm::Value *NewValue = UndefValue::get(CI->getType()); in OptimizeIndividualCalls() local
745 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n"); in OptimizeIndividualCalls()
747 CI->replaceAllUsesWith(NewValue); in OptimizeIndividualCalls()
/external/llvm/lib/Target/NVPTX/
DNVPTXGenericToNVVM.cpp216 Value *NewValue = C; in remapConstant() local
228 NewValue = getOrInsertCVTA(M, F, I->second, Builder); in remapConstant()
234 NewValue = remapConstantVectorOrConstantAggregate(M, F, C, Builder); in remapConstant()
239 NewValue = remapConstantExpr(M, F, cast<ConstantExpr>(C), Builder); in remapConstant()
242 ConstantToValueMap[C] = NewValue; in remapConstant()
243 return NewValue; in remapConstant()
269 Value *NewValue = UndefValue::get(C->getType()); in remapConstantVectorOrConstantAggregate() local
273 NewValue = Builder.CreateInsertElement(NewValue, NewOperands[i], Idx); in remapConstantVectorOrConstantAggregate()
277 NewValue = in remapConstantVectorOrConstantAggregate()
278 Builder.CreateInsertValue(NewValue, NewOperands[i], makeArrayRef(i)); in remapConstantVectorOrConstantAggregate()
[all …]
/external/clang/lib/Parse/
DRAIIObjectsForParser.h350 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) in PoisonSEHIdentifiersRAIIObject() argument
351 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue), in PoisonSEHIdentifiersRAIIObject()
352 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue), in PoisonSEHIdentifiersRAIIObject()
353 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue), in PoisonSEHIdentifiersRAIIObject()
354 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject()
355 Ident__exception_code(Self.Ident__exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject()
356 Ident__exception_info(Self.Ident__exception_info, NewValue), in PoisonSEHIdentifiersRAIIObject()
357 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject()
358 Ident___exception_code(Self.Ident___exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject()
359 Ident___exception_info(Self.Ident___exception_info, NewValue) { in PoisonSEHIdentifiersRAIIObject()
/external/clang/test/Analysis/
Dobjc-properties.m53 - (void) setY:(MyClass*) NewValue {
54 _Y = NewValue; // no-warning
57 - (void) setZ:(MyClass*) NewValue {
58 _Z = NewValue; // no-warning
/external/clang/lib/ASTMatchers/Dynamic/
DVariantValue.cpp307 void VariantValue::setUnsigned(unsigned NewValue) { in setUnsigned() argument
310 Value.Unsigned = NewValue; in setUnsigned()
322 void VariantValue::setString(StringRef NewValue) { in setString() argument
325 Value.String = new std::string(NewValue); in setString()
337 void VariantValue::setMatcher(const VariantMatcher &NewValue) { in setMatcher() argument
340 Value.Matcher = new VariantMatcher(NewValue); in setMatcher()
/external/llvm/include/llvm/Support/
DSaveAndRestore.h24 SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) { in SaveAndRestore()
25 X = NewValue; in SaveAndRestore()
DEndian.h222 void operator=(value_type NewValue) {
223 endian::write<value_type, endian, alignment>(Ptr, NewValue);
/external/clang/include/clang/AST/
DExternalASTSource.h422 void set(T NewValue) { in set()
424 LazyVal->LastValue = NewValue; in set()
427 Value = NewValue; in set()
431 void setNotUpdated(T NewValue) { Value = NewValue; } in setNotUpdated()
/external/clang/unittests/Tooling/
DRecursiveASTVisitorTestExprVisitor.cpp116 void setShouldVisitImplicitCode(bool NewValue) { in setShouldVisitImplicitCode() argument
117 ShouldVisitImplicitCode = NewValue; in setShouldVisitImplicitCode()
/external/swiftshader/third_party/subzero/src/
DIceClFlags.h160 void setGenerateUnitTestMessages(bool NewValue) {
161 GenerateUnitTestMessages = NewValue;
DIceUtils.h164 BoolFlagSaver(bool &F, bool NewValue) : OldValue(F), Flag(F) { F = NewValue; } in BoolFlagSaver() argument
DIceLoopAnalyzer.cpp75 void setOnStack(bool NewValue = true) { OnStack = NewValue; } in setOnStack() argument
DIceAssembler.h77 void setPosition(intptr_t NewValue) { Position = NewValue; } in setPosition() argument
DIceTargetLoweringX8632.h50 void _mov_sp(Operand *NewValue);
DIceTargetLoweringX8664.h53 void _mov_sp(Operand *NewValue);
DIceTargetLoweringX8632.cpp161 void TargetX8632::_mov_sp(Operand *NewValue) { in _mov_sp() argument
163 _redefined(_mov(esp, NewValue)); in _mov_sp()
DIceGlobalInits.h423 void setIsConstant(bool NewValue) { IsConstant = NewValue; } in setIsConstant() argument
DIceTargetLoweringX8664.cpp185 void TargetX8664::_mov_sp(Operand *NewValue) { in _mov_sp() argument
186 assert(NewValue->getType() == IceType_i32); in _mov_sp()
195 _redefined(_mov(esp, NewValue)); in _mov_sp()
DIceTargetLoweringX86Base.h716 void _mov_sp(Operand *NewValue) { in _mov_sp() argument
717 dispatchToConcrete(&Traits::ConcreteTarget::_mov_sp, std::move(NewValue)); in _mov_sp()
/external/clang/lib/Analysis/
DBodyFarm.cpp299 const ParmVarDecl *NewValue = D->getParamDecl(1); in create_OSAtomicCompareAndSwap() local
300 QualType NewValueTy = NewValue->getType(); in create_OSAtomicCompareAndSwap()
330 M.makeLvalueToRvalue(M.makeDeclRefExpr(NewValue), NewValueTy), in create_OSAtomicCompareAndSwap()
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitcodeParser.h149 void SetStartBit(uint64_t NewValue) { in SetStartBit() argument
150 StartBit = NewValue; in SetStartBit()
/external/spirv-llvm/lib/SPIRV/
DOCL20ToSPIRV.cpp1205 Value * NewValue = new LoadInst(BV, "", CI); in transWorkItemBuiltinsToVariables() local
1206 DEBUG(dbgs() << "Transform: " << *CI << " => " << *NewValue << '\n'); in transWorkItemBuiltinsToVariables()
1208 NewValue = ExtractElementInst::Create(NewValue, in transWorkItemBuiltinsToVariables()
1211 DEBUG(dbgs() << *NewValue << '\n'); in transWorkItemBuiltinsToVariables()
1213 NewValue->takeName(CI); in transWorkItemBuiltinsToVariables()
1214 CI->replaceAllUsesWith(NewValue); in transWorkItemBuiltinsToVariables()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DEndian.h221 void operator=(value_type NewValue) {
222 endian::write<value_type, endian, alignment>(Ptr, NewValue);
/external/clang/include/clang/Basic/
DIdentifierTable.h375 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue) in PoisonIdentifierRAIIObject() argument
378 II->setIsPoisoned(NewValue); in PoisonIdentifierRAIIObject()

12