Searched refs:Action (Results 101 - 125 of 175) sorted by relevance

1234567

/netbsd-current/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DMSVC.h50 Action::OffloadKind DeviceOffloadKind) const override;
H A DHexagon.h76 Action::OffloadKind DeviceOffloadKind) const override;
H A DAMDGPU.cpp585 Action::OffloadKind DeviceOffloadKind) const {
646 if (JA.getOffloadingDeviceKind() == Action::OFK_HIP ||
647 JA.getOffloadingDeviceKind() == Action::OFK_Cuda) {
693 Action::OffloadKind DeviceOffloadingKind) const {
797 Action::OffloadKind DeviceOffloadingKind) const {
803 if (DeviceOffloadingKind == Action::OFK_None &&
H A DClang.cpp132 if (JA.isHostOffloading(Action::OFK_Cuda))
133 Work(*C.getSingleOffloadToolChain<Action::OFK_Cuda>());
134 else if (JA.isDeviceOffloading(Action::OFK_Cuda))
135 Work(*C.getSingleOffloadToolChain<Action::OFK_Host>());
136 else if (JA.isHostOffloading(Action::OFK_HIP))
137 Work(*C.getSingleOffloadToolChain<Action::OFK_HIP>());
138 else if (JA.isDeviceOffloading(Action::OFK_HIP))
139 Work(*C.getSingleOffloadToolChain<Action::OFK_Host>());
141 if (JA.isHostOffloading(Action::OFK_OpenMP)) {
142 auto TCs = C.getOffloadToolChains<Action
[all...]
H A DMinGW.cpp434 Tool *toolchains::MinGW::getTool(Action::ActionClass AC) const {
436 case Action::PreprocessJobClass:
440 case Action::CompileJobClass:
H A DHIP.cpp244 Action::OffloadKind DeviceOffloadingKind) const {
247 assert(DeviceOffloadingKind == Action::OFK_HIP &&
287 Action::OffloadKind DeviceOffloadKind) const {
H A DRISCVToolchain.cpp92 Action::OffloadKind) const {
H A DPS4CPU.cpp243 Action::OffloadKind DeviceOffloadingKind) const {
H A DMSP430.cpp161 Action::OffloadKind) const {
/netbsd-current/sys/external/bsd/acpica/dist/include/
H A Dacutils.h438 UINT16 Action);
737 UINT8 Action);
806 UINT16 Action);
817 UINT16 Action,
H A Dacpixf.h529 UINT8 Action))
960 UINT8 Action))
993 UINT8 Action))
/netbsd-current/external/apache2/llvm/dist/clang/utils/TableGen/
H A DTableGen.cpp97 cl::opt<ActionType> Action(
98 cl::desc("Action to perform:"),
258 switch (Action) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Passes/
H A DPassBuilder.cpp601 PGOOpt->Action != PGOOptions::SampleUse)
717 if (PGOOpt && PGOOpt->Action == PGOOptions::IRUse &&
776 PGOOpt->Action != PGOOptions::SampleUse)
857 (PGOOpt->Action == PGOOptions::IRUse ||
858 PGOOpt->Action == PGOOptions::SampleUse))
969 PGOOpt->Action == PGOOptions::SampleUse)
1042 bool HasSampleProfile = PGOOpt && (PGOOpt->Action == PGOOptions::SampleUse);
1168 (PGOOpt->Action == PGOOptions::IRInstr ||
1169 PGOOpt->Action == PGOOptions::IRUse)) {
1171 /* RunProfileGen */ PGOOpt->Action
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
H A Dllvm-lipo.cpp296 for (auto Action : ActionArgs) {
297 if (!Action->getValue(1))
301 validateArchitectureName(Action->getValue(0));
303 {StringRef(Action->getValue(0)), Action->getValue(1)});
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp981 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
988 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
991 Action = TLI.getOperationAction(Node->getOpcode(),
995 Action = TLI.getOperationAction(Node->getOpcode(),
997 if (Action != TargetLowering::Promote)
998 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1008 Action = TLI.getOperationAction(Node->getOpcode(),
1021 Action = TLI.getOperationAction(Node->getOpcode(),
1026 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1030 Action
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/opt/
H A DNewPMDriver.cpp270 if (P && (P->Action == PGOOptions::IRInstr ||
271 P->Action == PGOOptions::SampleUse))
/netbsd-current/sys/dev/acpi/
H A Dapei_erst.c340 header->Action,
341 apei_erst_action[header->Action]);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizationArtifactCombiner.h565 switch (ActionStep.Action) {
995 return Step.Action == Unsupported || Step.Action == NotFound;
999 return LI.getAction(Query).Action == LegalizeActions::Legal;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DAutomaton.h163 /// Map from {State, Action} to {NewState, TransitionInfoIdx}.
202 M->emplace(std::make_pair(I.FromDfaState, I.Action),
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h78 PrePostActionTy &Action) {
79 return (*reinterpret_cast<Callable *>(CodeGen))(CGF, Action);
91 void setAction(PrePostActionTy &Action) const { PrePostAction = &Action; }
282 ActionToDo Action = ActionToDo::DoNotPush; member in class:clang::CodeGen::CGOpenMPRuntime::LastprivateConditionalRAII
617 /// brief Applies action \a Action on all registered entries.
622 const OffloadTargetRegionEntryInfoActTy &Action);
681 /// Applies action \a Action on all registered entries.
686 const OffloadDeviceGlobalVarEntryInfoActTy &Action);
77 CallbackFn(intptr_t CodeGen, CodeGenFunction &CGF, PrePostActionTy &Action) argument
H A DCGOpenMPRuntime.cpp198 const UntiedTaskActionTy &Action)
200 ThreadIDVar(ThreadIDVar), Action(Action) {
215 Action.emitUntiedSwitch(CGF);
228 /// Action for emitting code for untied tasks.
229 const UntiedTaskActionTy &Action; member in class:__anon507::final
581 PrePostActionTy *Action; member in class:__anon507::final
584 explicit CleanupTy(PrePostActionTy *Action) : Action(Action) {} argument
194 CGOpenMPTaskOutlinedRegionInfo(const CapturedStmt &CS, const VarDecl *ThreadIDVar, const RegionCodeGenTy &CodeGen, OpenMPDirectiveKind Kind, bool HasCancel, const UntiedTaskActionTy &Action) argument
600 PrePostActionTy Action; local
3041 actOnTargetRegionEntriesInfo( const OffloadTargetRegionEntryInfoActTy &Action) argument
3100 actOnDeviceGlobalVarEntriesInfo( const OffloadDeviceGlobalVarEntryInfoActTy &Action) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp180 auto Action = getTargetLowering()->getPreferredVectorAction(SimpleTy);
181 return Action == TargetLoweringBase::TypeWidenVector;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp191 Action(cl::desc("Action to perform:"),
543 switch (Action) {
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-ifs/
H A Dllvm-ifs.cpp42 static cl::opt<std::string> Action("action", cl::desc("<llvm-ifs action>"),
573 return writeIfso(Stub, (Action == "write-ifs"));
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DPreprocessor.cpp1187 auto Action = HandleHeaderIncludeOrImport( local
1189 switch (Action.Kind) {
1200 Suffix.back().setAnnotationValue(Action.ModuleForHeader);
1209 Suffix[0].setAnnotationValue(Action.ModuleForHeader);

Completed in 403 milliseconds

1234567