Searched refs:OldValue (Results 1 – 12 of 12) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | SaveAndRestore.h | 22 SaveAndRestore(T &X) : X(X), OldValue(X) {} in SaveAndRestore() 23 SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) { in SaveAndRestore() 26 ~SaveAndRestore() { X = OldValue; } in ~SaveAndRestore() 27 T get() { return OldValue; } in get() 31 T OldValue; member
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/ |
| H A D | RAIIObjectsForParser.h | 327 bool OldValue; variable 332 OldValue(P.InMessageExpression) { in InMessageExpressionRAIIObject() 337 InMessageExpression = OldValue; in ~InMessageExpressionRAIIObject()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | LoopUnrollAndJam.cpp | 448 Value *OldValue = Phi.getIncomingValueForBlock(AftBlocksLast[It]); in UnrollAndJamLoop() local 449 assert(OldValue && "should have incoming edge from Aft[It]"); in UnrollAndJamLoop() 450 Value *NewValue = OldValue; in UnrollAndJamLoop() 451 if (Value *PrevValue = PrevItValueMap[OldValue]) in UnrollAndJamLoop() 473 Value *OldValue = Phi.getIncomingValue(b); in UnrollAndJamLoop() local 474 if (Value *LastValue = LastValueMap[OldValue]) in UnrollAndJamLoop()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | IdentifierTable.h | 423 const bool OldValue; variable 427 : II(II), OldValue(II ? II->isPoisoned() : false) { in PoisonIdentifierRAIIObject() 434 II->setIsPoisoned(OldValue); in ~PoisonIdentifierRAIIObject()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | IntrinsicInst.h | 205 void replaceVariableLocationOp(Value *OldValue, Value *NewValue); 239 for (Value *OldValue : location_ops()) { in setUndef() 240 if (!RemovedValues.insert(OldValue).second) in setUndef() 242 Value *Undef = UndefValue::get(OldValue->getType()); in setUndef() 243 replaceVariableLocationOp(OldValue, Undef); in setUndef()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | IntrinsicInst.cpp | 82 void DbgVariableIntrinsic::replaceVariableLocationOp(Value *OldValue, in replaceVariableLocationOp() argument 86 auto OldIt = find(Locations, OldValue); in replaceVariableLocationOp()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | ConstantEmitter.h | 168 bool OldValue; member
|
| H A D | CodeGenFunction.cpp | 177 auto OldValue = in ConstructorHelper() local 179 auto NewValue = OldValue & Value; in ConstructorHelper() 180 if (OldValue != NewValue) in ConstructorHelper()
|
| H A D | CGExprConstant.cpp | 1335 Abstract = saved.OldValue; in validateAndPopAbstract()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 610 const ParmVarDecl *OldValue = D->getParamDecl(0); in create_OSAtomicCompareAndSwap() local 611 QualType OldValueTy = OldValue->getType(); in create_OSAtomicCompareAndSwap() 629 M.makeLvalueToRvalue(M.makeDeclRefExpr(OldValue), OldValueTy), in create_OSAtomicCompareAndSwap()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| H A D | PredicateExpander.cpp | 167 bool OldValue = shouldNegate(); in expandPredicateSequence() local 181 setNegatePredicate(OldValue); in expandPredicateSequence()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaTemplate.cpp | 7192 llvm::APSInt OldValue = Value; in CheckTemplateArgument() local 7205 && (OldValue.isSigned() && OldValue.isNegative())) { in CheckTemplateArgument() 7207 << OldValue.toString(10) << Value.toString(10) << Param->getType() in CheckTemplateArgument() 7215 RequiredBits = OldValue.getActiveBits(); in CheckTemplateArgument() 7216 else if (OldValue.isUnsigned()) in CheckTemplateArgument() 7217 RequiredBits = OldValue.getActiveBits() + 1; in CheckTemplateArgument() 7219 RequiredBits = OldValue.getMinSignedBits(); in CheckTemplateArgument() 7222 << OldValue.toString(10) << Value.toString(10) << Param->getType() in CheckTemplateArgument()
|