HomeSort by: relevance | last modified time | path
    Searched refs:OldValue (Results 1 - 12 of 12) sorted by relevancy

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

Completed in 44 milliseconds