/freebsd-src/contrib/bmake/unit-tests/ |
H A D | deptgt.mk | 3 # Tests for special targets like .BEGIN or .SUFFIXES in dependency 8 # Just in case anyone tries to compile several special targets in a single 13 # The following lines demonstrate how 'targets' is set and reset during 17 # FinishDependencyGroup at "targets = NULL" 18 # Parse_File at "Lst_Free(targets)" 19 # Parse_File at "targets = Lst_New()" 20 # ParseLine_ShellCommand at "targets == NULL" 23 # parse.c:targets 25 target1 target2: sources # targets := [target1, target2] 26 : command1 # targets [all...] |
H A D | deptgt-delete_on_error.mk | 7 # In compatibility mode, regular and phony targets are deleted, but precious 8 # targets are preserved. 10 # In parallel mode, regular targets are deleted, while phony and precious 11 # targets are preserved. 18 TARGETS= ${THIS}-regular ${THIS}-regular-delete 19 TARGETS+= ${THIS}-phony ${THIS}-phony-delete 20 TARGETS+= ${THIS}-precious ${THIS}-precious-delete 23 @rm -f ${TARGETS} 25 @-${.MAKE} -f ${MAKEFILE} -k ${TARGETS} 26 @rm -f ${TARGETS} [all …]
|
H A D | varname-dot-make-mode.mk | 11 all: .PHONY make-mode-randomize-targets 14 # By adding the word "randomize-targets" to the variable .MAKE.MODE, the 15 # targets are not made in declaration order, but rather in random order. This 23 make-mode-randomize-targets: .PHONY 25 @${MAKE} -r -f ${MAKEFILE} randomize-targets 28 @${MAKE} -r -f ${MAKEFILE} -j1 randomize-targets 31 @${MAKE} -r -f ${MAKEFILE} -j5 randomize-targets | grep '^:' 33 .if make(randomize-targets) 34 randomize-targets: .WAIT a1 a2 a3 .WAIT b1 b2 b3 .WAIT c1 c2 c3 .WAIT 39 # the mode after defining the targets. [all …]
|
H A D | dotwait.mk | 18 # Within each test, the names of the sub-targets follow these 20 # * If it's expected that two or more targets may be made in parallel, 23 # * If it's expected that two or more targets should be made in sequence 26 # in which the targets should be made. 28 # Targets may echo ${PARALLEL_TARG} to print a modified version 30 # are converted to ".*". Two targets that are expected to 32 # output is independent of the order in which these targets are made.
|
H A D | opt-no-action-touch.mk | 6 # -t, so instead of being touched, the commands of the targets are printed. 18 # .PHONY targets are not touched since they do not represent actual files. 23 # .JOIN targets are not touched since they do not represent actual files. 28 # .USE targets are not touched since they do not represent actual files. 44 # Since none of the above targets are actually touched, the following command
|
/freebsd-src/contrib/llvm-project/llvm/lib/MC/ |
H A D | TargetRegistry.cpp | 113 iterator_range<TargetRegistry::iterator> TargetRegistry::targets() { in TargetArraySortFn() 125 auto I = find_if(targets(), in printRegisteredTargetsForVersion() 128 if (I == targets().end()) { in printRegisteredTargetsForVersion() 155 // Provide special warning when no targets are initialized. 156 if (targets().begin() == targets().end()) { 157 Error = "Unable to find target for this triple (no targets are registered)"; 162 auto I = find_if(targets(), ArchMatch); 164 if (I == targets().end()) { 165 Error = ("No available targets ar 20 iterator_range<TargetRegistry::iterator> TargetRegistry::targets() { targets() function in TargetRegistry 117 std::vector<std::pair<StringRef, const Target*> > Targets; printRegisteredTargetsForVersion() local [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | TextStubV5.cpp | 46 "targets": ["x86_64-macos"], # Optional: defaults to targets in `target-info` 53 "targets": ["x86_64-macos", "arm64-macos"], # Optional: defaults to targets in `target-info` 91 Targets, enumerator 129 "targets", 256 const auto *Targets = Section->getArray(Keys[TBDKey::Targets]); in getTargets() local 257 if (!Targets) in getTargets() 258 return make_error<JSONStubError>(getParseErrorMsg(TBDKey::Targets)); in getTargets() 274 const Array *Targets = Section->getArray(Keys[TBDKey::TargetInfo]); getTargetsSection() local 381 getSymbolSection(const Object * File,TBDKey Key,TargetList & Targets) getSymbolSection() argument 442 getLibSection(const Object * File,TBDKey Key,TBDKey SubKey,const TargetList & Targets) getLibSection() argument 473 getUmbrellaSection(const Object * File,const TargetList & Targets) getUmbrellaSection() argument 588 TargetList Targets = *TargetsOrErr; parseToInterfaceFile() local 755 serializeTargets(const AggregateT Targets,const TargetList & ActiveTargets) serializeTargets() argument 768 Array Targets; serializeTargetInfo() local 830 TargetList Targets{Ref.targets().begin(), Ref.targets().end()}; serializeField() local 883 std::set<MachO::Target> Targets{Sym->targets().begin(), serializeSymbols() local [all...] |
H A D | TextStub.cpp | 157 targets: [ armv7-ios, x86_64-maccatalyst ] # The list of applicable tapi supported target triples 170 - targets: [ armv7-ios ] # Optional: 181 - targets: [ arm64-macos ] # The list of target triples associated with symbols 190 - targets: [ arm64-macos, x86_64-maccatalyst ] # Optional: Targets for applicable additional symbols 194 - targets: [ arm64-macos ] # The list of target triples associated with symbols 232 TargetList Targets; member 243 std::vector<Target> Targets; member 248 std::vector<Target> Targets; member 316 IO.mapRequired("targets", Sectio in mapping() 558 TargetList Targets; synthesizeTargets() local 604 const auto Targets = denormalize() local 648 const auto Targets = denormalize() local 813 TargetList Targets(Symbol->targets()); NormalizedTBD_V4() local 944 TargetList Targets; global() member 963 TargetList targets(library.targets()); assignTargetsToLibrary() local 968 for (const auto &targets : targetSet) { assignTargetsToLibrary() local [all...] |
H A D | InterfaceFile.cpp | 23 addEntry(Targets, Target); in addTarget() 73 addEntry(Targets, Target); in addTarget() 77 InterfaceFile::targets(ArchitectureSet Archs) const { in targets() 81 return make_filter_range(Targets, fn); in targets() 181 IF->addTargets(targets()); in merge() 182 IF->addTargets(O->targets()); in merge() 185 for (const auto &Target : Lib.targets()) in merge() 189 for (const auto &Target : Lib.targets()) in merge() 193 for (const auto &Target : Lib.targets()) in merge() 197 for (const auto &Target : Lib.targets()) in merge() 76 InterfaceFile::targets(ArchitectureSet Archs) const { targets() function in InterfaceFile [all...] |
H A D | Target.cpp | 55 PlatformVersionSet mapToPlatformVersionSet(ArrayRef<Target> Targets) { in mapToPlatformVersionSet() argument 57 for (const auto &Target : Targets) in mapToPlatformVersionSet() 62 PlatformSet mapToPlatformSet(ArrayRef<Target> Targets) { in mapToPlatformSet() argument 64 for (const auto &Target : Targets) in mapToPlatformSet() 69 ArchitectureSet mapToArchitectureSet(ArrayRef<Target> Targets) { in mapToArchitectureSet() argument 71 for (const auto &Target : Targets) in mapToArchitectureSet()
|
/freebsd-src/share/mk/ |
H A D | bsd.init.mk | 47 # Some targets need to know when something may build. This is used to 48 # optimize targets that are only needed when building something, such as 54 # - make install is used without other targets. This is to avoid breaking 56 # - non-build targets are called 58 # targets that are ok at level 0 61 .if ${.TARGETS:Uall:${DIRDEPS_BUILD_LEVEL0_TARGETS:${M_ListToSkip}}} != "" 65 ${.TARGETS:M*install*} == ${.TARGETS} || \ 66 ${.TARGETS:Mclean*} == ${.TARGETS} || \ 67 ${.TARGETS:M*clean} == ${.TARGETS} || \ 68 ${.TARGETS:Mdestroy*} == ${.TARGETS} || \ [all …]
|
H A D | dirdeps-targets.mk | 4 # $Id: dirdeps-targets.mk,v 1.27 2024/02/25 19:12:13 sjg Exp $ 21 # targets. 38 # This only makes sense for seriously expensive targets. 43 .-include <local.dirdeps-targets.mk> 50 DIRDEPS_TARGETS_DIRS ?= targets targets/pseudo 55 # some .TARGETS need filtering 59 tdirs := ${.TARGETS:${DIRDEPS_TARGETS_FILTER:ts:}:${DIRDEPS_TARGETS_PREFIX_LIST:@p@S,^$p,,@:ts:}:@t… 145 # some targets want to tweak options we might want to process now 150 # some targets are very expensive to compute dirdeps for 174 .for t in ${.TARGETS:${DIRDEPS_TARGETS_SKIP:${M_ListToSkip}}}
|
H A D | bsd.subdir.mk | 1 # The include file <bsd.subdir.mk> contains the default targets 15 # Each of the targets will execute the same target in the 19 # +++ targets +++ 25 # See SUBDIR_TARGETS for list of targets that will recurse. 27 # Targets defined in STANDALONE_SUBDIR_TARGETS will always be ran 97 # Convenience targets to run 'build${target}' and 'install${target}' when 150 # Create 'make subdir' targets to run the real 'all' target. 177 # For non-parallel builds, directories depend on all targets before them. 189 # Attach the subdir targets to the real target. 190 # Only recurse on directly-called targets. I.e., don't recurse on dependencies [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
H A D | InterfaceFile.h | 58 InterfaceFileRef(StringRef InstallName, const TargetList Targets) 59 : InstallName(InstallName), Targets(std::move(Targets)) {} 64 template <typename RangeT> void addTargets(RangeT &&Targets) { 65 for (const auto &Target : Targets) 70 return llvm::is_contained(Targets, Targ); 75 const_target_range targets() const { return {Targets}; } 78 return mapToArchitectureSet(Targets); 81 PlatformSet getPlatforms() const { return mapToPlatformSet(Targets); } 95 InterfaceFileRef(StringRef InstallName,const TargetList Targets) InterfaceFileRef() argument 101 addTargets(RangeT && Targets) addTargets() argument 112 const_target_range targets() const { return {Targets}; } targets() function 134 TargetList Targets; global() variable 200 addTargets(RangeT && Targets) addTargets() argument 207 const_target_range targets() const { return {Targets}; } targets() function 457 TargetList Targets; global() variable [all...] |
H A D | Symbol.h | 83 // Keep containers that hold Targets in sorted order and uniqued. 98 Symbol(EncodeKind Kind, StringRef Name, TargetList Targets, SymbolFlags Flags) 99 : Name(Name), Targets(std::move(Targets)), Kind(Kind), Flags(Flags) {} in isWeakReferenced() 101 void addTarget(Target InputTarget) { addEntry(Targets, InputTarget); } in isWeakReferenced() 105 return mapToArchitectureSet(Targets); in isThreadLocalValue() 139 return mapToArchitectureSet(Targets).contains(Arch); 143 return llvm::is_contained(Targets, Targ); 148 const_target_range targets() const { return {Targets}; } 84 Symbol(SymbolKind Kind,StringRef Name,TargetList Targets,SymbolFlags Flags) Symbol() argument 134 const_target_range targets() const { return {Targets}; } targets() function 158 TargetList Targets; global() variable [all...] |
/freebsd-src/contrib/libfido2/fuzz/ |
H A D | Makefile | 10 TARGETS := fuzz_assert fuzz_bio fuzz_cred fuzz_credman fuzz_hid \ macro 12 CORPORA := $(foreach f,${TARGETS},${f}/corpus) 13 MINIFY := $(foreach f,${TARGETS},/minify/${f}/corpus) 17 all: ${TARGETS} 31 docker exec ${RUNNER} /bin/sh -c 'cd /libfido2/fuzz && rm -rf ${TARGETS}' 34 ${TARGETS}: corpus sync 45 docker exec -i ${RUNNER} tar Czcf /minify - ${TARGETS} > $@ 73 rm -rf ${TARGETS} 80 find ${TARGETS} -type f -size +8192c -print0 | xargs -0 rm 86 tar zcf $@ ${TARGETS} [all …]
|
/freebsd-src/contrib/bmake/mk/ |
H A D | dirdeps-targets.mk | 4 # $Id: dirdeps-targets.mk,v 1.27 2024/02/25 19:12:13 sjg Exp $ 21 # targets. 38 # This only makes sense for seriously expensive targets. 43 .-include <local.dirdeps-targets.mk> 50 DIRDEPS_TARGETS_DIRS ?= targets targets/pseudo 55 # some .TARGETS need filtering 59 tdirs := ${.TARGETS:${DIRDEPS_TARGETS_FILTER:ts:}:${DIRDEPS_TARGETS_PREFIX_LIST:@p@S,^$p,,@:ts:}:@t… 145 # some targets want to tweak options we might want to process now 150 # some targets are very expensive to compute dirdeps for 174 .for t in ${.TARGETS:${DIRDEPS_TARGETS_SKIP:${M_ListToSkip}}}
|
/freebsd-src/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() 81 dbgs() << "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 [all …]
|
H A D | LVSymbol.cpp | 282 const LVSymbols *Targets) { in markMissingParents() argument 283 if (!(References && Targets)) in markMissingParents() 292 for (const LVSymbol *Target : *Targets) in markMissingParents() 293 dbgs() << "Targets : " in markMissingParents() 303 if (!Reference->findIn(Targets)) in markMissingParents() 308 LVSymbol *LVSymbol::findIn(const LVSymbols *Targets) const { in findIn() 309 if (!Targets) in findIn() 318 for (const LVSymbol *Target : *Targets) in findIn() 325 for (LVSymbol *Target : *Targets) in findIn() 334 const LVSymbols *Targets) { in parametersMatch() argument [all …]
|
/freebsd-src/targets/ |
H A D | Makefile.xtras | 2 # Makefile.xtras - non-build targets 28 .if make(show-valid-targets) 46 show-valid-targets: 49 …@echo "Build targets for ${_machine} (leave out the ${DIRDEPS_TARGETS_DIRS:S,${_here:T},,:S,^/,,:S… 54 @echo "Other targets:"; echo "${OTHER_TARGETS:O:ts\n}" | sed -e 's,^, ,' 60 echo "You can see the targets which are valid for a given machine"; \ 61 echo "by running '${MAKE_MACHINE_CMD} show-valid-targets'"; \
|
/freebsd-src/share/man/man7/ |
H A D | build.7 | 110 The following list provides the names and actions for the targets 177 The other supported targets under directory 223 Attempts to clean up targets built by a preceding 228 Attempt to clean up targets built by a preceding 234 is enabled, attempt to clean up targets built by a preceding 321 .It Cm targets 326 pairs for world and kernel targets. 328 Execute the same targets as 330 In addition print a summary of all failed targets at the end and 373 Kernel specific build targets i [all...] |
/freebsd-src/contrib/llvm-project/clang/lib/Basic/ |
H A D | Targets.cpp | 1 //===--- Targets.cpp - Implement target feature support -------------------===// 14 #include "Targets.h" 16 #include "Targets/AArch64.h" 17 #include "Targets/AMDGPU.h" 18 #include "Targets/ARC.h" 19 #include "Targets/ARM.h" 20 #include "Targets/AVR.h" 21 #include "Targets/BPF.h" 22 #include "Targets/CSKY.h" 23 #include "Targets/Direct 52 namespace targets { global() namespace [all...] |
/freebsd-src/lib/clang/libclang/ |
H A D | Makefile | 12 # Ensure FREEBSD_CC_VERSION is defined for Basic/Targets.cpp 13 CFLAGS.Targets.cpp+= -include ../freebsd_cc_version.h 226 SRCS_MIN+= Basic/Targets.cpp 227 SRCS_MIN+= Basic/Targets/AArch64.cpp 228 SRCS_MIN+= Basic/Targets/AMDGPU.cpp 229 SRCS_MIN+= Basic/Targets/ARC.cpp 230 SRCS_MIN+= Basic/Targets/ARM.cpp 231 SRCS_MIN+= Basic/Targets/AVR.cpp 232 SRCS_MIN+= Basic/Targets/BPF.cpp 233 SRCS_MIN+= Basic/Targets/CSK [all...] |
/freebsd-src/targets/pseudo/the-lot/ |
H A D | Makefile.depend | 6 targets/pseudo/kernel \ 7 targets/pseudo/toolchain \ 8 targets/pseudo/userland \ 11 DIRDEPS+= targets/pseudo/tests
|
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | CFGuardLongjmp.cpp | 12 /// vector. This will be used to emit the table of valid longjmp targets used 32 "Number of Control Flow Guard longjmp targets"); 47 return "Control Flow Guard longjmp targets"; in getPassName() 58 "Insert symbols at valid longjmp targets for /guard:cf", false, 75 // that return twice to the list of targets. in runOnMachineFunction() 93 // it to the list of targets. in runOnMachineFunction() 109 // of longjmp targets. in runOnMachineFunction()
|