| /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/ |
| GIMatchDagOperands.cpp | 69 std::unique_ptr<GIMatchDagOperandList> NewValue = 71 OperandLists.InsertNode(NewValue.get(), InsertPoint); 72 OperandListsOwner.push_back(std::move(NewValue)); 89 std::unique_ptr<GIMatchDagOperandList> NewValue = 92 NewValue->add(I.Operands[i].Name, i, i < I.Operands.NumDefs); 93 OperandLists.InsertNode(NewValue.get(), InsertPoint); 94 OperandListsOwner.push_back(std::move(NewValue)); 110 std::unique_ptr<GIMatchDagOperandList> NewValue = 112 NewValue->add("$", 0, true); 113 NewValue->add("mi", 1, false) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| SaveAndRestore.h | 23 SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) { 24 X = NewValue;
|
| Endian.h | 220 void operator=(value_type newValue) { 222 (void*)Value.buffer, newValue); 225 packed_endian_specific_integral &operator+=(value_type newValue) { 226 *this = *this + newValue; 230 packed_endian_specific_integral &operator-=(value_type newValue) { 231 *this = *this - newValue; 235 packed_endian_specific_integral &operator|=(value_type newValue) { 236 *this = *this | newValue; 240 packed_endian_specific_integral &operator&=(value_type newValue) { 241 *this = *this & newValue; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/ |
| PtrState.h | 121 void SetKnownSafe(const bool NewValue) { RRI.KnownSafe = NewValue; } 125 void SetTailCallRelease(const bool NewValue) { 126 RRI.IsTailCallRelease = NewValue; 135 void SetReleaseMetadata(MDNode *NewValue) { RRI.ReleaseMetadata = NewValue; } 139 void SetCFGHazardAfflicted(const bool NewValue) { 140 RRI.CFGHazardAfflicted = NewValue;
|
| ObjCARCOpts.cpp | 982 Value *NewValue = UndefValue::get(CI->getType()); 986 << *CI << "\nNew = " << *NewValue << "\n"); 987 CI->replaceAllUsesWith(NewValue); 1003 Value *NewValue = UndefValue::get(CI->getType()); 1007 << *CI << "\nNew = " << *NewValue << "\n"); 1009 CI->replaceAllUsesWith(NewValue);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| LowerConstantIntrinsics.cpp | 55 Value *NewValue, 59 replaceAndRecursivelySimplify(II, NewValue, nullptr, nullptr, nullptr, 128 Value *NewValue; 133 NewValue = lowerIsConstantIntrinsic(II); 137 NewValue = lowerObjectSizeCall(II, DL, TLI, true); 142 II, NewValue, DTU.hasValue() ? DTU.getPointer() : nullptr);
|
| StructurizeCFG.cpp | 664 if (auto NewValue = SimplifyInstruction(Phi, Q)) { 665 Phi->replaceAllUsesWith(NewValue);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXGenericToNVVM.cpp | 165 Value *NewValue = C; 175 NewValue = Builder.CreateAddrSpaceCast( 183 NewValue = remapConstantVectorOrConstantAggregate(M, F, C, Builder); 188 NewValue = remapConstantExpr(M, F, cast<ConstantExpr>(C), Builder); 191 ConstantToValueMap[C] = NewValue; 192 return NewValue; 218 Value *NewValue = UndefValue::get(C->getType()); 222 NewValue = Builder.CreateInsertElement(NewValue, NewOperands[i], Idx); 226 NewValue [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Parse/ |
| RAIIObjectsForParser.h | 370 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) 371 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue), 372 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue), 373 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue), 374 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue), 375 Ident__exception_code(Self.Ident__exception_code, NewValue), 376 Ident__exception_info(Self.Ident__exception_info, NewValue), 377 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue), 378 Ident___exception_code(Self.Ident___exception_code, NewValue), 379 Ident___exception_info(Self.Ident___exception_info, NewValue) { [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| PlistSupport.h | 32 unsigned NewValue = V.size(); 33 FIDs[FID] = NewValue; 35 return NewValue;
|
| IdentifierTable.h | 426 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue) 429 II->setIsPoisoned(NewValue);
|
| /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/ |
| VariantValue.cpp | 343 void VariantValue::setBoolean(bool NewValue) { 346 Value.Boolean = NewValue; 358 void VariantValue::setDouble(double NewValue) { 361 Value.Double = NewValue; 373 void VariantValue::setUnsigned(unsigned NewValue) { 376 Value.Unsigned = NewValue; 388 void VariantValue::setString(StringRef NewValue) { 391 Value.String = new std::string(NewValue); 401 void VariantValue::setNodeKind(ASTNodeKind NewValue) { 404 Value.NodeKind = new ASTNodeKind(NewValue); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/AggressiveInstCombine/ |
| AggressiveInstCombineInternal.h | 69 Value *NewValue = nullptr;
|
| TruncInstCombine.cpp | 306 assert(Entry.NewValue); 307 return Entry.NewValue; 316 assert(!NodeInfo.NewValue && "Instruction has been evaluated"); 331 NodeInfo.NewValue = I->getOperand(0); 376 NodeInfo.NewValue = Res;
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| IntrinsicInst.cpp | 83 Value *NewValue) { 84 assert(NewValue && "Values must be non-null"); 89 Value *NewOperand = isa<MetadataAsValue>(NewValue) 90 ? NewValue 92 getContext(), ValueAsMetadata::get(NewValue)); 96 ValueAsMetadata *NewOperand = getAsMetadata(NewValue); 103 Value *NewValue) { 106 Value *NewOperand = isa<MetadataAsValue>(NewValue) 107 ? NewValue 109 getContext(), ValueAsMetadata::get(NewValue)); [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| dwarf2yaml.cpp | 243 DWARFYAML::FormValue NewValue; 244 NewValue.Value = 0xDEADBEEFDEADBEEF; 257 NewValue.Value = Val.getValue(); 267 NewValue.Value = Val.getValue(); 277 std::back_inserter(NewValue.BlockData)); 279 NewValue.Value = NewValue.BlockData.size(); 291 NewValue.Value = Val.getValue(); 295 NewValue.CStr = Val.getValue(); 300 NewValue.Value = Val.getValue() [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| ExternalASTSource.h | 427 void set(T NewValue) { 429 LazyVal->LastValue = NewValue; 432 Value = NewValue; 436 void setNotUpdated(T NewValue) { Value = NewValue; }
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/InstCombine/ |
| InstCombiner.h | 444 void replaceUse(Use &U, Value *NewValue) { 446 U = NewValue;
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| VPlan.cpp | 363 void VPBasicBlock::dropAllReferences(VPValue *NewValue) { 366 Def->replaceAllUsesWith(NewValue); 369 R.setOperand(I, NewValue); 437 void VPRegionBlock::dropAllReferences(VPValue *NewValue) { 441 Block->dropAllReferences(NewValue);
|
| /src/external/apache2/llvm/dist/llvm/lib/FileCheck/ |
| FileCheckImpl.h | 305 /// Sets value of this numeric variable to \p NewValue, and sets the input 308 void setValue(ExpressionValue NewValue, 310 Value = NewValue;
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| BodyFarm.cpp | 600 // *theValue = newValue; 613 const ParmVarDecl *NewValue = D->getParamDecl(1); 614 QualType NewValueTy = NewValue->getType(); 644 M.makeLvalueToRvalue(M.makeDeclRefExpr(NewValue), NewValueTy),
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| LoopUnrollAndJam.cpp | 450 Value *NewValue = OldValue; 452 NewValue = PrevValue; 456 Phi.setIncomingValue(0, NewValue);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| LiveDebugVariables.cpp | 1033 DbgVariableValue NewValue(DbgValue); 1047 NewValue = NewValue.changeLocNo(LocNo, NewLocNo); 1056 I.insert(KilledAt, KilledAt.getNextSlot(), NewValue); 1057 NewDefs.push_back(std::make_pair(KilledAt, NewValue));
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| IntrinsicInst.h | 205 void replaceVariableLocationOp(Value *OldValue, Value *NewValue); 206 void replaceVariableLocationOp(unsigned OpIdx, Value *NewValue);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| InstCombineInternal.h | 422 void replaceUse(Use &U, Value *NewValue) { 424 U = NewValue;
|