| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ValueMap.h | 84 class ValueMap { 104 explicit ValueMap(unsigned NumInitBuckets = 64) 106 explicit ValueMap(const ExtraData &Data, unsigned NumInitBuckets = 64) 110 ValueMap(const ValueMap &) = delete; 111 ValueMap(ValueMap &&) = delete; 112 ValueMap &operator=(const ValueMap &) = delete; 113 ValueMap &operator=(ValueMap &&) = delete; 238 return ValueMapCVH(key, const_cast<ValueMap*>(this)); in Wrap() 246 friend class ValueMap<KeyT, ValueT, Config>; variable 249 using ValueMapT = ValueMap<KeyT, ValueT, Config>;
|
| H A D | ValueSymbolTable.h | 55 using ValueMap = StringMap<Value*>; 58 using iterator = ValueMap::iterator; 61 using const_iterator = ValueMap::const_iterator; 139 ValueMap vmap; ///< The map that holds the symbol table.
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopRotationUtils.cpp | 103 ValueToValueMapTy &ValueMap, in RewriteUsesOfClonedInstructions() argument 122 Value *OrigPreHeaderVal = ValueMap.lookup(OrigHeaderVal); in RewriteUsesOfClonedInstructions() 538 ValueToValueMapTy ValueMap, ValueMapMSSA; in rotateLoop() local 543 InsertNewValueIntoMap(ValueMap, PN, in rotateLoop() 626 RemapDbgRecordRange(M, DbgValueRange, ValueMap, in rotateLoop() 646 mapAtomInstance(DL, ValueMap); in rotateLoop() 654 RemapDbgRecordRange(M, Range, ValueMap, in rotateLoop() 665 RemapInstruction(C, ValueMap, in rotateLoop() 675 InsertNewValueIntoMap(ValueMap, Inst, V); in rotateLoop() 681 InsertNewValueIntoMap(ValueMap, Inst, C); in rotateLoop() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | FunctionLoweringInfo.cpp | 298 Register PHIReg = ValueMap[&PN]; in set() 359 ValueMap.clear(); in clear() 413 Register &R = ValueMap[V]; in InitializeRegForValue() 459 auto It = ValueMap.find(PN); in ComputePHILiveOutRegInfo() 460 if (It == ValueMap.end()) in ComputePHILiveOutRegInfo() 486 assert(ValueMap.count(V) && "V should have been placed in ValueMap when its" in ComputePHILiveOutRegInfo() 488 Register SrcReg = ValueMap[V]; in ComputePHILiveOutRegInfo() 525 assert(ValueMap.count(V) && "V should have been placed in ValueMap when " in ComputePHILiveOutRegInfo() 527 Register SrcReg = ValueMap[V]; in ComputePHILiveOutRegInfo() 576 for (auto &P : ValueMap) { in getValueFromVirtualReg()
|
| H A D | FastISel.cpp | 153 FuncInfo.ValueMap[&*I] = VI->second; in lowerArguments() 357 DenseMap<const Value *, Register>::iterator I = FuncInfo.ValueMap.find(V); in lookUpRegForValue() 358 if (I != FuncInfo.ValueMap.end()) in lookUpRegForValue() 369 Register &AssignedReg = FuncInfo.ValueMap[I]; in updateValueMap() 1726 DenseMap<const Value *, Register>::iterator I = FuncInfo.ValueMap.find(Op0); in selectExtractValue() 1727 if (I != FuncInfo.ValueMap.end()) in selectExtractValue()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | FunctionLoweringInfo.h | 81 DenseMap<const Value *, Register> ValueMap; variable 210 return ValueMap.count(V); in isExportedInst() 268 DenseMap<const Value*, Register>::const_iterator It = ValueMap.find(PN); in InvalidatePHILiveOutRegInfo() 269 if (It == ValueMap.end()) in InvalidatePHILiveOutRegInfo()
|
| H A D | PseudoSourceValueManager.h | 34 ValueMap<const GlobalValue *,
|
| /freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.cpp | 526 ValueMapType::const_iterator I = ValueMap.find(V); in getValueID() 527 assert(I != ValueMap.end() && "Value not in slotcalculator!"); in getValueID() 533 print(dbgs(), ValueMap, "Default"); in dump() 607 ValueMap[Values[CstStart].first] = CstStart+1; in OptimizeConstants() 800 assert(ValueMap.count(VAM->getValue()) && in EnumerateFunctionLocalListMetadata() 911 unsigned &ValueID = ValueMap[V]; in EnumerateValue() 950 ValueMap[V] = Values.size(); in EnumerateValue() 1010 if (ValueMap.count(C)) in EnumerateOperandType() 1092 ValueMap[&BB] = BasicBlocks.size(); in incorporateFunction() 1152 assert(ValueMap.count(Local->getValue()) && in incorporateFunction() [all …]
|
| H A D | ValueEnumerator.h | 62 ValueMapType ValueMap; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
| H A D | DXILValueEnumerator.cpp | 521 ValueMapType::const_iterator I = ValueMap.find(V); in getValueID() 522 assert(I != ValueMap.end() && "Value not in slotcalculator!"); in getValueID() 528 print(dbgs(), ValueMap, "Default"); in dump() 765 assert(ValueMap.count(VAM->getValue()) && in EnumerateFunctionLocalListMetadata() 876 unsigned &ValueID = ValueMap[V]; in EnumerateValue() 916 ValueMap[V] = Values.size(); in EnumerateValue() 975 if (ValueMap.count(C)) in EnumerateOperandType() 1058 ValueMap[&BB] = BasicBlocks.size(); in incorporateFunction() 1099 assert(ValueMap.count(FnLocalMDVector[i]->getValue()) && in incorporateFunction() 1112 ValueMap.erase(Values[i].first); in purgeFunction() [all …]
|
| H A D | DXILValueEnumerator.h | 65 ValueMapType ValueMap; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPerfHintAnalysis.h | 45 typedef ValueMap<const Function *, FuncInfo> FuncInfoMap;
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | InstrRefBasedImpl.h | 764 LocToValueType &ValueMap; 775 MLocIterator(LocToValueType &ValueMap, LocIdx Idx) 776 : ValueMap(ValueMap), Idx(Idx) {} 779 assert(&ValueMap == &Other.ValueMap); 789 value_type operator*() { return value_type(Idx, ValueMap[LocIdx(Idx)]); }
|
| /freebsd/contrib/llvm-project/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 307 ValueToValueMapTy ValueMap; member in __anone1f06e680211::IRLinker 442 Mapper(ValueMap, RF_ReuseAndMutateDistinctMDs | RF_IgnoreMissingLocals, in IRLinker() 446 ValueMap.getMDMap() = std::move(SharedMDs); in IRLinker() 452 ~IRLinker() { SharedMDs = std::move(*ValueMap.getMDMap()); } in ~IRLinker() 541 if ((ForIndirectSymbol && ValueMap.lookup(SGV) == New) || in materialize() 921 auto I = ValueMap.find(SGV); in linkGlobalValueProto() 922 if (I != ValueMap.end()) in linkGlobalValueProto() 1504 if (ValueMap.find(GV) != ValueMap.end() || in run()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SplitKit.h | 325 using ValueMap = DenseMap<std::pair<unsigned, unsigned>, ValueForcePair>; variable 339 ValueMap Values;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXGenericToNVVM.cpp | 49 typedef ValueMap<GlobalVariable *, GlobalVariable *> GVMapTy; 50 typedef ValueMap<Constant *, Value *> ConstantToValueMapTy;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | FunctionComparator.h | 63 using ValueNumberMap = ValueMap<GlobalValue *, uint64_t, Config>;
|
| H A D | ValueMapper.h | 38 using ValueToValueMapTy = ValueMap<const Value *, WeakTrackingVH>;
|
| H A D | Cloning.h | 364 const ValueMap<const Value *, WeakTrackingVH> *VMap = nullptr);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemorySSAUpdater.h | 51 using ValueToValueMapTy = ValueMap<const Value *, WeakTrackingVH>;
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRInterpreter.cpp | 94 typedef std::map<const Value *, lldb::addr_t> ValueMap; typedef in InterpreterStackFrame 96 ValueMap m_values; 139 ValueMap::iterator i = m_values.find(value); in SummarizeValue() 438 ValueMap::iterator i = m_values.find(value); in ResolveValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCFastISel.cpp | 593 Register AssignedReg = FuncInfo.ValueMap[I]; in SelectLoad() 1161 Register AssignedReg = FuncInfo.ValueMap[I]; in PPCMoveToIntReg() 1267 Register AssignedReg = FuncInfo.ValueMap[I]; in SelectBinaryIntOp() 1911 Register AssignedReg = FuncInfo.ValueMap[I]; in SelectIntExt()
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 1054 InstrProfSymtab *ValueMap) { in addValueData() argument 1059 uint64_t NewValue = remapValue(V.Value, ValueKind, ValueMap); in addValueData()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | JumpThreading.cpp | 1881 ValueToValueMapTy &ValueMap) { in addPHINodeEntriesForMappedBlock() argument 1889 ValueToValueMapTy::iterator I = ValueMap.find(Inst); in addPHINodeEntriesForMappedBlock() 1890 if (I != ValueMap.end()) in addPHINodeEntriesForMappedBlock()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | AsmWriter.cpp | 757 using ValueMap = DenseMap<const Value *, unsigned>; typedef in llvm::SlotTracker 777 ValueMap mMap; 781 ValueMap fMap; 1268 ValueMap::iterator MI = mMap.find(V); in getGlobalSlot() 1304 ValueMap::iterator FI = fMap.find(V); in getLocalSlot()
|