Searched refs:Action (Results 26 - 50 of 190) sorted by relevance

12345678

/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DCompilation.cpp11 #include "clang/Driver/Action.h"
43 std::make_pair(Action::OFK_Host, &DefaultToolChain));
63 Action::OffloadKind DeviceOffloadKind) {
72 if (DeviceOffloadKind == Action::OFK_OpenMP) {
73 const ToolChain *HostTC = getSingleOffloadToolChain<Action::OFK_Host>();
209 static bool ActionFailed(const Action *A,
217 if (A->isOffloading(Action::OFK_Cuda) || A->isOffloading(Action::OFK_HIP))
H A DDriver.cpp51 #include "clang/Driver/Action.h"
657 const ToolChain *HostTC = C.getSingleOffloadToolChain<Action::OFK_Host>();
660 auto OFK = Action::OFK_Cuda;
673 const ToolChain *HostTC = C.getSingleOffloadToolChain<Action::OFK_Host>();
676 auto OFK = Action::OFK_HIP;
736 C.getSingleOffloadToolChain<Action::OFK_Host>();
742 *this, TT, *HostTC, C.getInputArgs(), Action::OFK_OpenMP);
746 C.addOffloadDeviceToolChain(TC, Action::OFK_OpenMP);
1858 // Display an action graph human-readably. Action A is the "sink" node
1861 static unsigned PrintActions1(const Compilation &C, Action *
[all...]
H A DToolChain.cpp18 #include "clang/Driver/Action.h"
324 Tool *ToolChain::getTool(Action::ActionClass AC) const {
326 case Action::AssembleJobClass:
329 case Action::IfsMergeJobClass:
332 case Action::LinkJobClass:
335 case Action::StaticLibJobClass:
338 case Action::InputClass:
339 case Action::BindArchClass:
340 case Action::OffloadClass:
341 case Action
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp207 PragmaMsStackAction Action = Sema::PSK_Reset; local
216 Action = Sema::PSK_Push_Set;
223 Action = Sema::PSK_Push_Set;
233 Action = Sema::PSK_Push_Set;
240 Action = Sema::PSK_Pop;
243 Action = Sema::PSK_Reset;
253 PackStack.Act(PragmaLoc, Action, StringRef(), Alignment);
256 void Sema::ActOnPragmaClangSection(SourceLocation PragmaLoc, PragmaClangSectionAction Action, argument
283 if (Action == PragmaClangSectionAction::PCSA_Clear) {
296 void Sema::ActOnPragmaPack(SourceLocation PragmaLoc, PragmaMsStackAction Action, argument
417 ActOnPragmaFloatControl(SourceLocation Loc, PragmaMsStackAction Action, PragmaFloatControlKind Value) argument
488 ActOnPragmaMSVtorDisp(PragmaMsStackAction Action, SourceLocation PragmaLoc, MSVtorDispMode Mode) argument
552 ActOnPragmaMSSeg(SourceLocation PragmaLocation, PragmaMsStackAction Action, llvm::StringRef StackSlotLabel, StringLiteral *SegmentName, llvm::StringRef PragmaName) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DJob.h28 class Action;
107 const Action &Source;
159 Command(const Action &Source, const Tool &Creator,
174 /// getSource - Return the Action which caused the creation of this job.
175 const Action &getSource() const { return Source; }
212 CC1Command(const Action &Source, const Tool &Creator,
230 FallbackCommand(const Action &Source_, const Tool &Creator_,
249 ForceSuccessCommand(const Action &Source_, const Tool &Creator_,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DAMDGPU.h67 Action::OffloadKind DeviceOffloadKind) const override;
71 Action::OffloadKind DeviceOffloadKind) const override;
99 Action::OffloadKind DeviceOffloadKind) const override;
H A DHIP.h70 Action::OffloadKind DeviceOffloadKind) const override;
73 Action::OffloadKind DeviceOffloadKind) const override;
H A DCuda.cpp403 if (JA.isDeviceOffloading(Action::OFK_OpenMP)) {
476 if (JA.isOffloading(Action::OFK_OpenMP))
481 else if (JA.isOffloading(Action::OFK_Cuda))
582 assert(!JA.isHostOffloading(Action::OFK_OpenMP) &&
656 const Action::OffloadKind OK)
672 if (!(OK == Action::OFK_OpenMP && Input.getType() == types::TY_Object))
685 Action::OffloadKind DeviceOffloadingKind) const {
690 assert((DeviceOffloadingKind == Action::OFK_OpenMP ||
691 DeviceOffloadingKind == Action::OFK_Cuda) &&
694 if (DeviceOffloadingKind == Action
[all...]
H A DCuda.h13 #include "clang/Driver/Action.h"
135 const Action::OffloadKind OK);
145 Action::OffloadKind DeviceOffloadKind) const override;
148 Action::OffloadKind DeviceOffloadKind) const override;
197 const Action::OffloadKind OK;
H A DMSP430.h37 Action::OffloadKind) const override;
H A DRISCVToolchain.h27 Action::OffloadKind) const override;
H A DVEToolchain.h40 Action::OffloadKind DeviceOffloadKind) const override;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp278 std::unique_ptr<FrontendAction> Action; member in class:__anon2418::SingleFrontendActionFactory
281 SingleFrontendActionFactory(std::unique_ptr<FrontendAction> Action) argument
282 : Action(std::move(Action)) {}
285 return std::move(Action);
292 std::vector<std::string> CommandLine, ToolAction *Action,
294 : CommandLine(std::move(CommandLine)), Action(Action), OwnsAction(false),
302 Action(new SingleFrontendActionFactory(std::move(FAction))),
308 delete Action;
291 ToolInvocation( std::vector<std::string> CommandLine, ToolAction *Action, FileManager *Files, std::shared_ptr<PCHContainerOperations> PCHContainerOps) argument
450 run(ToolAction *Action) argument
548 ToolInvocation Invocation(std::move(CommandLine), Action, Files.get(), local
638 &Action, Files.get(), std::move(PCHContainerOps)); local
[all...]
H A DAllTUsExecution.cpp115 auto &Action = Actions.front(); local
130 Tool.appendArgumentsAdjuster(Action.second);
135 if (Tool.run(Action.first.get()))
H A DCompilationDatabase.cpp22 #include "clang/Driver/Action.h"
150 void run(const driver::Action *A) {
155 void runImpl(const driver::Action *A, bool Collect) {
158 case driver::Action::CompileJobClass:
162 case driver::Action::InputClass:
174 for (const driver::Action *AI : A->inputs())
311 if (Cmd.getSource().getKind() == driver::Action::AssembleJobClass ||
312 Cmd.getSource().getKind() == driver::Action::BackendJobClass ||
313 Cmd.getSource().getKind() == driver::Action::CompileJobClass) {
/freebsd-13-stable/lib/libc/net/
H A Dnsparser.y64 %type <mapval> Status Action
126 : Status '=' Action
142 Action
/freebsd-13-stable/contrib/llvm-project/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp41 StringRef Action("unknown");
42 (void)Action;
109 case RewriteObjC: Action = "RewriteObjC"; break;
115 case MigrateSource: Action = "MigrateSource"; break;
120 case RunAnalysis: Action = "RunAnalysis"; break;
129 CI.getDiagnostics().Report(diag::err_fe_action_not_available) << Action;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DDFAPacketizer.cpp58 unsigned Action = ItinActions[MID->getSchedClass()]; local
59 if (MID->getSchedClass() == 0 || Action == 0)
61 return A.canAdd(Action);
67 unsigned Action = ItinActions[MID->getSchedClass()]; local
68 if (MID->getSchedClass() == 0 || Action == 0)
70 A.add(Action);
/freebsd-13-stable/sys/dev/mwl/
H A Dmwlreg.h641 uint16_t Action; member in struct:__anon13448
660 uint16_t Action; member in struct:__anon13451
705 uint32_t Action; //HostCmd_ACT_GEN_GET 0x0000 member in struct:__anon13454
724 uint32_t Action; member in struct:__anon13456
732 uint32_t Action; member in struct:__anon13457
739 uint16_t Action; member in struct:__anon13458
778 uint16_t Action; member in struct:__anon13460
787 uint16_t Action; member in struct:__anon13461
796 uint16_t Action; member in struct:__anon13462
805 uint16_t Action; member in struct:__anon13463
814 uint16_t Action; member in struct:__anon13464
824 uint16_t Action; member in struct:_HostCmd_DS_802_11_RF_ANTENNA
831 uint16_t Action; member in struct:__anon13465
837 uint16_t Action; member in struct:__anon13466
891 uint16_t Action; member in struct:__anon13472
916 uint16_t Action; // see following member in struct:__anon13476
976 uint32_t Action ; // 0 -> unset, 1 ->set member in struct:__anon13485
988 uint16_t Action; // 0->unset, 1->set member in struct:__anon13487
993 uint16_t Action; // 0->unset, 1->set member in struct:__anon13488
1003 uint16_t Action; //0 = get all, 0x1 =set CWMin/Max, 0x2 = set TXOP , 0x4 =set AIFSN member in struct:__anon13489
1275 uint16_t Action; member in struct:__anon13510
1282 uint16_t Action; member in struct:__anon13511
1360 uint16_t Action; /* 0: Get. 1:Set */ member in struct:__anon13523
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerInfo.cpp45 raw_ostream &llvm::operator<<(raw_ostream &OS, LegalizeAction Action) { argument
46 switch (Action) {
309 const LegalizeAction Action = LLT2Action.second; local
311 auto SizeAction = std::make_pair(Type.getSizeInBits(), Action);
466 if (Step.Action != LegalizeAction::UseLegacyRules) {
471 auto Action = getAspectAction({Query.Opcode, i, Query.Types[i]}); local
472 if (Action.first != Legal) {
473 LLVM_DEBUG(dbgs() << ".. (legacy) Type " << i << " Action="
474 << Action.first << ", " << Action
521 auto Action = getAction(MI, MRI).Action; local
574 LegalizeAction Action = Vec[VecIdx].second; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassBuilder.h38 std::string ProfileRemappingFile = "", PGOAction Action = NoAction,
41 ProfileRemappingFile(ProfileRemappingFile), Action(Action),
43 SamplePGOSupport(SamplePGOSupport || Action == SampleUse) {
44 // Note, we do allow ProfileFile.empty() for Action=IRUse LTO can
49 (this->Action != IRInstr && this->Action != SampleUse));
56 assert(this->CSAction != CSIRUse || this->Action == IRUse);
58 // If neither Action nor CSAction, SamplePGOSupport needs to be true.
59 assert(this->Action !
65 PGOAction Action; member in struct:llvm::PGOOptions
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp130 bool AddEmitPasses(legacy::PassManager &CodeGenPasses, BackendAction Action,
161 void EmitAssembly(BackendAction Action,
164 void EmitAssemblyWithNewPassManager(BackendAction Action,
417 static CodeGenFileType getCodeGenFileType(BackendAction Action) { argument
418 if (Action == Backend_EmitObj)
420 else if (Action == Backend_EmitMCNull)
423 assert(Action == Backend_EmitAssembly && "Invalid action!");
829 BackendAction Action,
840 CodeGenFileType CGFT = getCodeGenFileType(Action);
857 void EmitAssemblyHelper::EmitAssembly(BackendAction Action, argument
828 AddEmitPasses(legacy::PassManager &CodeGenPasses, BackendAction Action, raw_pwrite_stream &OS, raw_pwrite_stream *DwoOS) argument
1078 EmitAssemblyWithNewPassManager( BackendAction Action, std::unique_ptr<raw_pwrite_stream> OS) argument
1487 runThinLTOBackend( DiagnosticsEngine &Diags, ModuleSummaryIndex *CombinedIndex, Module *M, const HeaderSearchOptions &HeaderOpts, const CodeGenOptions &CGOpts, const clang::TargetOptions &TOpts, const LangOptions &LOpts, std::unique_ptr<raw_pwrite_stream> OS, std::string SampleProfile, std::string ProfileRemapping, BackendAction Action) argument
1623 EmitBackendOutput(DiagnosticsEngine &Diags, const HeaderSearchOptions &HeaderOpts, const CodeGenOptions &CGOpts, const clang::TargetOptions &TOpts, const LangOptions &LOpts, const llvm::DataLayout &TDesc, Module *M, BackendAction Action, std::unique_ptr<raw_pwrite_stream> OS) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DExecution.h125 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action);
127 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action,
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutstate.c311 * Action - Update action to be performed
324 UINT16 Action)
344 State->Update.Value = Action;
354 * Action - Update action to be performed
322 AcpiUtCreateUpdateState( ACPI_OPERAND_OBJECT *Object, UINT16 Action) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp157 auto Action = std::make_unique<PreprocessOnlyAction>(); variable
158 const bool Result = Compiler.ExecuteAction(*Action);
218 DependencyScanningAction Action(WorkingDirectory, Consumer, DepFS,
220 return !Tool.run(&Action);

Completed in 197 milliseconds

12345678