| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | ValueMap.h | 85 class ValueMap { 103 explicit ValueMap(unsigned NumInitBuckets = 64) 105 explicit ValueMap(const ExtraData &Data, unsigned NumInitBuckets = 64) 109 ValueMap(const ValueMap &) = delete; 110 ValueMap(ValueMap &&) = delete; 111 ValueMap &operator=(const ValueMap &) = delete; 112 ValueMap &operator=(ValueMap &&) = delete; 234 return ValueMapCVH(key, const_cast<ValueMap*>(this)); in Wrap() 242 friend class ValueMap<KeyT, ValueT, Config>; 245 using ValueMapT = ValueMap<KeyT, ValueT, Config>;
|
| H A D | ValueSymbolTable.h | 51 using ValueMap = StringMap<Value*>; 54 using iterator = ValueMap::iterator; 57 using const_iterator = ValueMap::const_iterator; 130 ValueMap vmap; ///< The map that holds the symbol table.
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | FunctionLoweringInfo.h | 78 DenseMap<const Value *, Register> ValueMap; variable 196 return ValueMap.count(V); in isExportedInst() 209 Register &R = ValueMap[V]; in InitializeRegForValue() 257 DenseMap<const Value*, Register>::const_iterator It = ValueMap.find(PN); in InvalidatePHILiveOutRegInfo() 258 if (It == ValueMap.end()) in InvalidatePHILiveOutRegInfo()
|
| H A D | PseudoSourceValue.h | 162 ValueMap<const GlobalValue *,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | LoopRotationUtils.cpp | 105 ValueToValueMapTy &ValueMap, in RewriteUsesOfClonedInstructions() argument 123 Value *OrigPreHeaderVal = ValueMap.lookup(OrigHeaderVal); in RewriteUsesOfClonedInstructions() 379 ValueToValueMapTy ValueMap, ValueMapMSSA; in rotateLoop() local 384 InsertNewValueIntoMap(ValueMap, PN, in rotateLoop() 440 RemapInstruction(C, ValueMap, in rotateLoop() 457 InsertNewValueIntoMap(ValueMap, Inst, V); in rotateLoop() 463 InsertNewValueIntoMap(ValueMap, Inst, C); in rotateLoop() 531 cast<Instruction>(ValueMap[*NoAliasDeclInstructions.begin()]); in rotateLoop() 566 RewriteUsesOfClonedInstructions(OrigHeader, OrigPreheader, ValueMap, in rotateLoop()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | FunctionLoweringInfo.cpp | 293 unsigned PHIReg = ValueMap[&PN]; in set() 358 ValueMap.clear(); in clear() 451 Register DestReg = ValueMap[PN]; in ComputePHILiveOutRegInfo() 469 assert(ValueMap.count(V) && "V should have been placed in ValueMap when its" in ComputePHILiveOutRegInfo() 471 Register SrcReg = ValueMap[V]; in ComputePHILiveOutRegInfo() 504 assert(ValueMap.count(V) && "V should have been placed in ValueMap when " in ComputePHILiveOutRegInfo() 506 Register SrcReg = ValueMap[V]; in ComputePHILiveOutRegInfo() 555 for (auto &P : ValueMap) { in getValueFromVirtualReg()
|
| H A D | FastISel.cpp | 154 FuncInfo.ValueMap[&*I] = VI->second; in lowerArguments() 359 DenseMap<const Value *, Register>::iterator I = FuncInfo.ValueMap.find(V); in lookUpRegForValue() 360 if (I != FuncInfo.ValueMap.end()) in lookUpRegForValue() 371 Register &AssignedReg = FuncInfo.ValueMap[I]; in updateValueMap() 1660 DenseMap<const Value *, Register>::iterator I = FuncInfo.ValueMap.find(Op0); in selectExtractValue() 1661 if (I != FuncInfo.ValueMap.end()) in selectExtractValue()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.cpp | 511 ValueMapType::const_iterator I = ValueMap.find(V); in getValueID() 512 assert(I != ValueMap.end() && "Value not in slotcalculator!"); in getValueID() 518 print(dbgs(), ValueMap, "Default"); in dump() 593 ValueMap[Values[CstStart].first] = CstStart+1; in OptimizeConstants() 786 assert(ValueMap.count(VAM->getValue()) && in EnumerateFunctionLocalListMetadata() 897 unsigned &ValueID = ValueMap[V]; in EnumerateValue() 934 ValueMap[V] = Values.size(); in EnumerateValue() 994 if (ValueMap.count(C)) in EnumerateOperandType() 1068 ValueMap[&BB] = BasicBlocks.size(); in incorporateFunction() 1112 assert(ValueMap.count(FnLocalMDVector[i]->getValue()) && in incorporateFunction() [all …]
|
| H A D | ValueEnumerator.h | 62 ValueMapType ValueMap; variable
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 395 ValueToValueMapTy ValueMap; member in __anon1bd317f30211::IRLinker 530 Mapper(ValueMap, RF_ReuseAndMutateDistinctMDs | RF_IgnoreMissingLocals, in IRLinker() 534 ValueMap.getMDMap() = std::move(SharedMDs); in IRLinker() 540 ~IRLinker() { SharedMDs = std::move(*ValueMap.getMDMap()); } in ~IRLinker() 621 if ((ForIndirectSymbol && ValueMap.lookup(SGV) == New) || in materialize() 991 auto I = ValueMap.find(SGV); in linkGlobalValueProto() 992 if (I != ValueMap.end()) in linkGlobalValueProto() 1474 if (ValueMap.find(GV) != ValueMap.end() || in run()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPerfHintAnalysis.h | 48 typedef ValueMap<const Function*, FuncInfo> FuncInfoMap;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | SplitKit.h | 329 using ValueMap = DenseMap<std::pair<unsigned, unsigned>, ValueForcePair>; variable 343 ValueMap Values;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXGenericToNVVM.cpp | 55 typedef ValueMap<GlobalVariable *, GlobalVariable *> GVMapTy; 56 typedef ValueMap<Constant *, Value *> ConstantToValueMapTy;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | CFLAndersAliasAnalysis.cpp | 431 DenseMap<Value *, ValueSummary> ValueMap; in populateExternalRelations() local 448 ValueMap[SrcIVal.Val].FromRecords.push_back( in populateExternalRelations() 451 ValueMap[SrcIVal.Val].ToRecords.push_back( in populateExternalRelations() 458 for (const auto &Mapping : ValueMap) { in populateExternalRelations()
|
| H A D | CFLGraph.h | 98 using ValueMap = DenseMap<Value *, ValueInfo>; 100 ValueMap ValueImpls; 110 using const_value_iterator = ValueMap::const_iterator;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| H A D | FunctionComparator.h | 62 using ValueNumberMap = ValueMap<GlobalValue *, uint64_t, Config>;
|
| H A D | ValueMapper.h | 33 using ValueToValueMapTy = ValueMap<const Value *, WeakTrackingVH>;
|
| H A D | Cloning.h | 295 const ValueMap<const Value *, WeakTrackingVH> *VMap = nullptr);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86MachineFunctionInfo.h | 118 ValueMap<const Value *, size_t> PreallocatedIds;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | MemorySSAUpdater.h | 52 using ValueToValueMapTy = ValueMap<const Value *, WeakTrackingVH>;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | InstrRefBasedImpl.cpp | 458 LocToValueType &ValueMap; member in __anon45b083930211::MLocTracker::MLocIterator 469 MLocIterator(LocToValueType &ValueMap, LocIdx Idx) in MLocIterator() argument 470 : ValueMap(ValueMap), Idx(Idx) { } in MLocIterator() 473 assert(&ValueMap == &Other.ValueMap); in operator ==() 486 return value_type(Idx, ValueMap[LocIdx(Idx)]); in operator *()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/ |
| H A D | echo.cpp | 55 typedef CAPIDenseMap<LLVMValueRef>::Map ValueMap; typedef 165 static ValueMap clone_params(LLVMValueRef Src, LLVMValueRef Dst) { in clone_params() 170 ValueMap VMap; in clone_params() 414 ValueMap VMap;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCFastISel.cpp | 607 unsigned AssignedReg = FuncInfo.ValueMap[I]; in SelectLoad() 1172 unsigned AssignedReg = FuncInfo.ValueMap[I]; in PPCMoveToIntReg() 1278 unsigned AssignedReg = FuncInfo.ValueMap[I]; in SelectBinaryIntOp() 1923 unsigned AssignedReg = FuncInfo.ValueMap[I]; in SelectIntExt()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 732 InstrProfSymtab *ValueMap) { in addValueData() argument 734 VData[I].Value = remapValue(VData[I].Value, ValueKind, ValueMap); in addValueData()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | JumpThreading.cpp | 1959 DenseMap<Instruction*, Value*> &ValueMap) { in addPHINodeEntriesForMappedBlock() argument 1967 DenseMap<Instruction*, Value*>::iterator I = ValueMap.find(Inst); in addPHINodeEntriesForMappedBlock() 1968 if (I != ValueMap.end()) in addPHINodeEntriesForMappedBlock()
|