HomeSort by: relevance | last modified time | path
    Searched refs:Targets (Results 1 - 25 of 50) sorted by relevancy

1 2

  /src/usr.bin/make/unit-tests/
depsrc-meta.exp 3 Targets from meta mode:
5 Targets from meta mode in jobs mode:
directive-ifmake.exp 6 make: directive-ifmake.mk:63: Targets can even be added at parse time.
depsrc-meta.mk 21 @echo 'Targets from meta mode${.MAKE.JOBS:D in jobs mode}:'
  /src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/
Symbol.h 59 Symbol(SymbolKind Kind, StringRef Name, TargetList Targets, SymbolFlags Flags)
60 : Name(Name), Targets(std::move(Targets)), Kind(Kind), Flags(Flags) {}
62 void addTarget(Target target) { Targets.emplace_back(target); }
66 return mapToArchitectureSet(Targets);
93 const_target_range targets() const { return {Targets}; } function in class:llvm::MachO::Symbol
100 const_filtered_target_range targets(ArchitectureSet architectures) const;
108 return (Kind == O.Kind) && (Name == O.Name) && (Targets == O.Targets) &
    [all...]
InterfaceFile.h 87 InterfaceFileRef(StringRef InstallName, const TargetList Targets)
88 : InstallName(InstallName), Targets(std::move(Targets)) {}
93 template <typename RangeT> void addTargets(RangeT &&Targets) {
94 for (const auto &Target : Targets)
100 const_target_range targets() const { return {Targets}; } function in class:llvm::MachO::InterfaceFileRef
103 return mapToArchitectureSet(Targets);
106 PlatformSet getPlatforms() const { return mapToPlatformSet(Targets); }
109 return std::tie(InstallName, Targets) == std::tie(O.InstallName, O.Targets)
210 const_target_range targets() const { return {Targets}; } function in class:llvm::MachO::InterfaceFile
    [all...]
Target.h 60 PlatformSet mapToPlatformSet(ArrayRef<Target> Targets);
61 ArchitectureSet mapToArchitectureSet(ArrayRef<Target> Targets);
Platform.h 40 PlatformSet mapToPlatformSet(ArrayRef<Triple> Targets);
  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
Target.cpp 61 PlatformSet mapToPlatformSet(ArrayRef<Target> Targets) {
63 for (const auto &Target : Targets)
68 ArchitectureSet mapToArchitectureSet(ArrayRef<Target> Targets) {
70 for (const auto &Target : Targets)
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;
243 std::vector<Target> Targets;
248 std::vector<Target> Targets;
326 IO.mapRequired("targets", Section.Targets)
    [all...]
InterfaceFile.cpp 46 addEntry(Targets, Target);
99 addEntry(Targets, Target);
103 InterfaceFile::targets(ArchitectureSet Archs) const { function in class:InterfaceFile
107 return make_filter_range(Targets, fn);
111 const TargetList &Targets, SymbolFlags Flags) {
115 result.first->second = new (Allocator) Symbol{Kind, Name, Targets, Flags};
117 for (const auto &Target : Targets)
132 if (Targets != O.Targets)
Symbol.cpp 49 Symbol::targets(ArchitectureSet Architectures) const { function in class:llvm::MachO::Symbol
54 return make_filter_range(Targets, FN);
Platform.cpp 58 PlatformSet mapToPlatformSet(ArrayRef<Triple> Targets) {
60 for (const auto &Target : Targets)
  /src/external/apache2/llvm/dist/llvm/lib/Support/
TargetRegistry.cpp 20 iterator_range<TargetRegistry::iterator> TargetRegistry::targets() { function in class:TargetRegistry
32 auto I = find_if(targets(),
35 if (I == targets().end()) {
64 // Provide special warning when no targets are initialized.
65 if (targets().begin() == targets().end()) {
66 Error = "Unable to find target for this triple (no targets are registered)";
71 auto I = find_if(targets(), ArchMatch);
73 if (I == targets().end()) {
74 Error = "No available targets are compatible with triple \"" + TT + "\""
    [all...]
  /src/external/apache2/llvm/lib/libLLVMRuntimeDyld/
Makefile 8 .PATH: ${LLVM_SRCDIR}/lib/ExecutionEngine/RuntimeDyld/Targets
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugCrossImpSubsection.cpp 57 std::vector<support::ulittle32_t> Targets = {support::ulittle32_t(ImportId)};
58 auto Result = Mappings.insert(std::make_pair(Module, Targets));
60 Result.first->getValue().push_back(Targets[0]);
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
DependencyOutputOptions.h 37 unsigned UsePhonyTargets : 1; ///< Include phony targets for each
62 /// A list of names to use as the targets in the dependency file; this list
64 std::vector<std::string> Targets;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
Delta.cpp 10 // it splits a given set of Targets (i.e. Functions, Instructions, BBs, etc.)
99 TestRunner &Test, int Targets,
102 assert(Targets >= 0);
103 if (!Targets) {
119 std::vector<Chunk> ChunksStillConsideredInteresting = {{1, Targets}};
144 // Generate Module with only Targets inside Current Chunks
Delta.h 10 // it splits a given set of Targets (i.e. Functions, Instructions, BBs, etc.)
84 /// number of Targets (e.g. Functions, Instructions, Basic Blocks, etc.) and
85 /// splits them in half; these chunks of targets are then tested while ignoring
95 /// * Targets: The amount of Targets that are going to be reduced by the
99 /// only contains Targets that are inside Chunks of the given iteration.
104 void runDeltaPass(TestRunner &Test, int Targets,
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
ExegesisEmitter.cpp 99 std::vector<Record *> Targets = Records.getAllDerivedDefinitions("Target");
100 if (Targets.size() == 0)
102 if (Targets.size() != 1)
104 Target = std::string(Targets[0]->getName());
CodeGenTarget.cpp 252 std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target");
253 if (Targets.size() == 0)
255 if (Targets.size() != 1)
257 TargetRec = Targets[0];
634 Targets.push_back({"", 0, 0});
636 if (Intrinsics[I].TargetPrefix != Targets.back().Name) {
637 Targets.back().Count = I - Targets.back().Offset;
638 Targets.push_back({Intrinsics[I].TargetPrefix, I, 0});
640 Targets.back().Count = Intrinsics.size() - Targets.back().Offset
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/
typecons.d 78 * `Targets`.
80 private template implementsInterface(Source, Targets...)
81 if (Targets.length >= 1 && allSatisfy!(isMutable, Targets))
87 if (Targets.length == 1 && is(Source : Targets[0]))
93 if (!allSatisfy!(Bind!(isImplicitlyConvertible, Source), Targets))
101 alias TargetMembers = UniqMembers!(ConcatInterfaceMembers!Targets);
131 private template implementsInterface(Source, Targets...)
132 if (Targets.length >= 1 && !allSatisfy!(isMutable, Targets)
    [all...]
  /src/external/apache2/llvm/lib/libclangBasic/
Makefile 38 Targets.cpp \
47 .PATH: ${CLANG_SRCDIR}/lib/Basic/Targets
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonBitTracker.h 37 BranchTargetList &Targets, bool &FallsThru) const override;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 204 uint64_t findLowestOffset(ArrayRef<VirtualCallTarget> Targets, bool IsAfter,
207 // Set the stored value in each of Targets to VirtualCallTarget::RetVal at the
210 void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
214 // Set the stored value in each of Targets to VirtualCallTarget::RetVal at the
217 void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
250 /// index. Any devirtualized targets used by a type test in another module
251 /// are added to the \p ExportedGUIDs set. For any local devirtualized targets
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
DependencyFile.cpp 189 : OutputFile(Opts.OutputFile), Targets(Opts.Targets),
331 // Write out the dependency targets, trying to avoid overly long
338 for (StringRef Target : Targets) {
349 // Targets already quoted as needed.
374 // Create phony targets if requested.

Completed in 49 milliseconds

1 2