| /freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | InterfaceFile.h | 59 InterfaceFileRef(StringRef InstallName, const TargetList Targets) in InterfaceFileRef() argument 60 : InstallName(InstallName), Targets(std::move(Targets)) {} in InterfaceFileRef() 65 template <typename RangeT> void addTargets(RangeT &&Targets) { in addTargets() argument 66 for (const auto &Target : Targets) in addTargets() 71 return llvm::is_contained(Targets, Targ); in hasTarget() 76 const_target_range targets() const { return {Targets}; } in targets() 79 return mapToArchitectureSet(Targets); in getArchitectures() 82 PlatformSet getPlatforms() const { return mapToPlatformSet(Targets); } in getPlatforms() 85 return std::tie(InstallName, Targets) == std::tie(O.InstallName, O.Targets); 89 return std::tie(InstallName, Targets) != std::tie(O.InstallName, O.Targets); [all …]
|
| H A D | Symbol.h | 99 Symbol(EncodeKind Kind, StringRef Name, TargetList Targets, SymbolFlags Flags) in Symbol() argument 100 : Name(Name), Targets(std::move(Targets)), Kind(Kind), Flags(Flags) {} in Symbol() 102 void addTarget(Target InputTarget) { addEntry(Targets, InputTarget); } in addTarget() 106 return mapToArchitectureSet(Targets); in getArchitectures() 140 return mapToArchitectureSet(Targets).contains(Arch); in hasArchitecture() 144 return llvm::is_contained(Targets, Targ); in hasTarget() 149 const_target_range targets() const { return {Targets}; } in targets() 174 TargetList Targets; variable
|
| H A D | Target.h | 70 LLVM_ABI PlatformVersionSet mapToPlatformVersionSet(ArrayRef<Target> Targets); 71 LLVM_ABI PlatformSet mapToPlatformSet(ArrayRef<Target> Targets); 72 LLVM_ABI ArchitectureSet mapToArchitectureSet(ArrayRef<Target> Targets);
|
| H A D | SymbolSet.h | 102 RangeT &&Targets) { 104 for (const auto &Targ : Targets) 107 addGlobal(EncodeKind::ObjectiveCClass, Name, Flags, Targets);
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVLine.cpp | 70 const LVLines *Targets) { in markMissingParents() argument 71 if (!(References && Targets)) in markMissingParents() 80 for (const LVLine *Target : *Targets) in markMissingParents() 91 if (!Reference->findIn(Targets)) in markMissingParents() 96 LVLine *LVLine::findIn(const LVLines *Targets) const { in findIn() 97 if (!Targets) in findIn() 106 for (const LVLine *Target : *Targets) in findIn() 113 for (LVLine *Line : *Targets) in findIn() 124 bool LVLine::equals(const LVLines *References, const LVLines *Targets) { in equals() argument 125 if (!References && !Targets) in equals() [all …]
|
| H A D | LVSymbol.cpp | 281 const LVSymbols *Targets) { in markMissingParents() argument 282 if (!(References && Targets)) in markMissingParents() 291 for (const LVSymbol *Target : *Targets) in markMissingParents() 302 if (!Reference->findIn(Targets)) in markMissingParents() 307 LVSymbol *LVSymbol::findIn(const LVSymbols *Targets) const { in findIn() 308 if (!Targets) in findIn() 317 for (const LVSymbol *Target : *Targets) in findIn() 324 for (LVSymbol *Target : *Targets) in findIn() 333 const LVSymbols *Targets) { in parametersMatch() argument 334 if (!References && !Targets) in parametersMatch() [all …]
|
| H A D | LVType.cpp | 174 const LVTypes *Targets) { in markMissingParents() argument 175 if (!(References && Targets)) in markMissingParents() 184 for (const LVType *Target : *Targets) in markMissingParents() 195 if (!Reference->findIn(Targets)) in markMissingParents() 200 LVType *LVType::findIn(const LVTypes *Targets) const { in findIn() 201 if (!Targets) in findIn() 210 for (const LVType *Target : *Targets) in findIn() 217 for (LVType *Target : *Targets) in findIn() 226 const LVTypes *Targets) { in parametersMatch() argument 227 if (!References && !Targets) in parametersMatch() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | TextStubV5.cpp | 118 Targets, enumerator 283 const auto *Targets = Section->getArray(Keys[TBDKey::Targets]); in getTargets() local 284 if (!Targets) in getTargets() 285 return make_error<JSONStubError>(getParseErrorMsg(TBDKey::Targets)); in getTargets() 288 for (const Value &JSONTarget : *Targets) { in getTargets() 301 const Array *Targets = Section->getArray(Keys[TBDKey::TargetInfo]); in getTargetsSection() local 302 if (!Targets) in getTargetsSection() 303 return make_error<JSONStubError>(getParseErrorMsg(TBDKey::Targets)); in getTargetsSection() 306 for (const Value &JSONTarget : *Targets) { in getTargetsSection() 408 TargetList &Targets) { in getSymbolSection() argument [all …]
|
| H A D | TextStub.cpp | 231 TargetList Targets; member 242 std::vector<Target> Targets; member 247 std::vector<Target> Targets; member 315 IO.mapRequired("targets", Section.Targets); in mapping() 327 IO.mapRequired("targets", Section.Targets); in mapping() 343 IO.mapRequired("targets", Section.Targets); in mapping() 557 TargetList Targets; in synthesizeTargets() local 566 Targets.emplace_back(Architecture, Platform); in synthesizeTargets() 569 return Targets; in synthesizeTargets() 603 const auto Targets = in denormalize() local [all …]
|
| H A D | Target.cpp | 55 PlatformVersionSet mapToPlatformVersionSet(ArrayRef<Target> Targets) { 57 for (const auto &Target : Targets) in operator <<() 62 PlatformSet mapToPlatformSet(ArrayRef<Target> Targets) { in mapToPlatformVersionSet() 64 for (const auto &Target : Targets) in mapToPlatformVersionSet() 69 ArchitectureSet mapToArchitectureSet(ArrayRef<Target> Targets) { in mapToPlatformSet() 71 for (const auto &Target : Targets) in mapToPlatformSet() 61 mapToPlatformVersionSet(ArrayRef<Target> Targets) mapToPlatformVersionSet() argument 68 mapToPlatformSet(ArrayRef<Target> Targets) mapToPlatformSet() argument 75 mapToArchitectureSet(ArrayRef<Target> Targets) mapToArchitectureSet() argument
|
| H A D | Symbol.cpp | 54 return make_filter_range(Targets, FN); in targets() 71 return std::tie(Name, Kind, Targets, LHSFlags) == in operator ==() 72 std::tie(O.Name, O.Kind, O.Targets, RHSFlags); in operator ==()
|
| H A D | InterfaceFile.cpp | 21 addEntry(Targets, Target); in addTarget() 68 addEntry(Targets, Target); in addTarget() 76 return make_filter_range(Targets, fn); in targets() 390 if (Targets != O.Targets) in operator ==() 420 if (mapToPlatformVersionSet(Targets) != mapToPlatformVersionSet(O.Targets)) in operator ==()
|
| H A D | Platform.cpp | 62 PlatformSet mapToPlatformSet(ArrayRef<Triple> Targets) { in mapToPlatformSet() argument 64 for (const auto &Target : Targets) in mapToPlatformSet()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | CodeGenIntrinsics.cpp | 69 Targets.push_back({"", 0, 0}); in CodeGenIntrinsicTable() 71 if (Intrinsics[I].TargetPrefix != Targets.back().Name) { in CodeGenIntrinsicTable() 72 Targets.back().Count = I - Targets.back().Offset; in CodeGenIntrinsicTable() 73 Targets.push_back({Intrinsics[I].TargetPrefix, I, 0}); in CodeGenIntrinsicTable() 75 Targets.back().Count = Intrinsics.size() - Targets.back().Offset; in CodeGenIntrinsicTable() 110 for (const auto &Target : ArrayRef(Targets).drop_front()) in CheckTargetIndependentIntrinsics() 114 const auto &Set = Targets[0]; in CheckTargetIndependentIntrinsics() 206 for (const TargetSet &Set : Targets) { in CheckOverloadSuffixConflicts()
|
| H A D | TargetFeaturesEmitter.cpp | 26 ArrayRef<const Record *> Targets = Records.getAllDerivedDefinitions("Target"); in TargetFeaturesEmitter() local 27 if (Targets.size() == 0) in TargetFeaturesEmitter() 29 if (Targets.size() != 1) in TargetFeaturesEmitter() 31 Target = Targets[0]->getName(); in TargetFeaturesEmitter()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | TargetRegistry.cpp | 199 std::vector<std::pair<StringRef, const Target*> > Targets; in printRegisteredTargetsForVersion() local 202 Targets.push_back(std::make_pair(T.getName(), &T)); in printRegisteredTargetsForVersion() 203 Width = std::max(Width, Targets.back().first.size()); in printRegisteredTargetsForVersion() 205 array_pod_sort(Targets.begin(), Targets.end(), TargetArraySortFn); in printRegisteredTargetsForVersion() 209 for (const auto &Target : Targets) { in printRegisteredTargetsForVersion() 214 if (Targets.empty()) in printRegisteredTargetsForVersion()
|
| /freebsd/lib/clang/libclang/ |
| H A D | Makefile | 32 CFLAGS.Targets.cpp+= -include ../freebsd_cc_version.h 237 SRCS_MIN+= Basic/Targets.cpp 238 SRCS_MIN+= Basic/Targets/AArch64.cpp 239 SRCS_MIN+= Basic/Targets/AMDGPU.cpp 240 SRCS_MIN+= Basic/Targets/ARC.cpp 241 SRCS_MIN+= Basic/Targets/ARM.cpp 242 SRCS_MIN+= Basic/Targets/AVR.cpp 243 SRCS_MIN+= Basic/Targets/BPF.cpp 244 SRCS_MIN+= Basic/Targets/CSKY.cpp 245 SRCS_MIN+= Basic/Targets/DirectX.cpp [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVSymbol.h | 68 LVSymbol *findIn(const LVSymbols *Targets) const; 164 const LVSymbols *Targets); 172 const LVSymbols *Targets); 179 static bool equals(const LVSymbols *References, const LVSymbols *Targets);
|
| H A D | LVLine.h | 47 LVLine *findIn(const LVLines *Targets) const; 94 const LVLines *Targets); 101 static bool equals(const LVLines *References, const LVLines *Targets);
|
| H A D | LVType.h | 64 LVType *findIn(const LVTypes *Targets) const; 126 const LVTypes *Targets); 135 const LVTypes *Targets); 142 static bool equals(const LVTypes *References, const LVTypes *Targets);
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugCrossImpSubsection.cpp | 56 std::vector<support::ulittle32_t> Targets = {support::ulittle32_t(ImportId)}; in addImport() local 57 auto Result = Mappings.insert(std::make_pair(Module, Targets)); in addImport() 59 Result.first->getValue().push_back(Targets[0]); in addImport()
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | depsrc-meta.exp | 3 Targets from meta mode: 5 Targets from meta mode in jobs mode:
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | ExegesisEmitter.cpp | 101 ArrayRef<const Record *> Targets = Records.getAllDerivedDefinitions("Target"); in ExegesisEmitter() local 102 if (Targets.size() == 0) in ExegesisEmitter() 104 if (Targets.size() != 1) in ExegesisEmitter() 106 Target = Targets[0]->getName().str(); in ExegesisEmitter()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
| H A D | CodeGenTarget.cpp | 74 ArrayRef<const Record *> Targets = Records.getAllDerivedDefinitions("Target"); in CodeGenTarget() local 75 if (Targets.size() == 0) in CodeGenTarget() 77 if (Targets.size() != 1) in CodeGenTarget() 79 TargetRec = Targets[0]; in CodeGenTarget()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | WholeProgramDevirt.h | 206 LLVM_ABI uint64_t findLowestOffset(ArrayRef<VirtualCallTarget> Targets, 212 LLVM_ABI void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets, 219 LLVM_ABI void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
|