HomeSort by: relevance | last modified time | path
    Searched defs:Action (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_exceptions_test.cc 5 class Action {
7 Action() {}
18 const Action a;
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
apmain.c 140 * PARAMETERS: Argument - Pointer to the argument for this action
141 * ToBeDone - What to do to process this action
145 * DESCRIPTION: Add an action item to the action table
155 /* Insert action and check for table overflow */
180 * and dumping tables are deferred via the action table.
365 AP_DUMP_ACTION *Action;
391 Action = &ActionTable[i];
392 switch (Action->ToBeDone)
401 Status = ApDumpTableByAddress (Action->Argument)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
AllTUsExecution.cpp 83 return make_string_error("No action to execute.");
87 "Only support executing exactly 1 action at this point.");
115 auto &Action = Actions.front();
130 Tool.appendArgumentsAdjuster(Action.second);
135 if (Tool.run(Action.first.get()))
136 AppendError(llvm::Twine("Failed to run action on ") + Path +
Tooling.cpp 103 // the original host compilation and the other is offload action
289 std::unique_ptr<FrontendAction> Action;
292 SingleFrontendActionFactory(std::unique_ptr<FrontendAction> Action)
293 : Action(std::move(Action)) {}
296 return std::move(Action);
303 std::vector<std::string> CommandLine, ToolAction *Action,
305 : CommandLine(std::move(CommandLine)), Action(Action), OwnsAction(false),
313 Action(new SingleFrontendActionFactory(std::move(FAction)))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
DependencyScanningWorker.cpp 135 auto Action = std::make_unique<PreprocessOnlyAction>();
136 const bool Result = Compiler.ExecuteAction(*Action);
196 DependencyScanningAction Action(WorkingDirectory, Consumer, DepFS,
198 return !Tool.run(&Action);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.h 69 unsigned Action;
93 /// Compute the actions table and gather the first action index for each
105 /// appropriate action. The entry for an ordinary call has a try-range
106 /// containing the call and zero for the landing pad and the action. Calls
127 /// 2. The action table, in our case, is composed of pairs of type ids
128 /// and next action offset. Starting with the action index from the
131 /// on to the landing pad. Otherwise the next action is looked up. This
132 /// chain is terminated with a next action of zero. If no type id is
EHStreamer.cpp 52 /// Compute the actions table and gather the first action index for each landing
58 // The action table follows the call-site table in the LSDA. The individual
94 unsigned SizeActions = 0; // Total size of all action entries for a function
103 // Size of one action entry (typeid + next action)
134 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction };
135 Actions.push_back(Action);
139 // Record the first action of the landing pad site.
143 // Information used when creating the call-site table. The action record
145 // action record, relative to the start of the actions table. This value i
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-actions.h 70 // To implement an action Foo, define:
72 // 2. a factory function that creates an Action object from a
77 // management as Action objects can now be copied like plain values.
94 "Default action undefined for the function return type.");
158 // There's no need for a default action for signed wchar_t, as that
161 // There's also no need for a default action for unsigned wchar_t, as
320 // Implement this interface to define an action for function type F.
330 // Performs the action. This method is not const, as in general an
331 // action can have side effects and be stateful. For example, a
332 // get-the-next-element-from-the-collection action will need t
892 InnerAction action; member in struct:testing::internal::WithArgsAction
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
Tooling.h 77 /// Perform an action for an invocation.
150 /// \param ToolAction The action to run over the code.
169 /// \param ToolAction The action to run over the code.
240 /// \param FAction The action to be executed.
253 /// \param Action The action to be executed.
257 ToolInvocation(std::vector<std::string> CommandLine, ToolAction *Action,
280 ToolAction *Action;
292 /// a frontend action. One could install an additional command line
338 /// Runs an action over all files specified in the command line
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
LegalizerInfo.h 91 /// Sentinel value for when no action was found in the specified table.
99 raw_ostream &operator<<(raw_ostream &OS, LegalizeActions::LegalizeAction Action);
148 /// Unsupported or describes an action that must be taken to make an operation
151 /// The action to take or the final answer.
152 LegalizeAction Action;
153 /// If describing an action, the type index to change. Otherwise zero.
155 /// If describing an action, the new type for TypeIdx. Otherwise LLT{}.
158 LegalizeActionStep(LegalizeAction Action, unsigned TypeIdx,
160 : Action(Action), TypeIdx(TypeIdx), NewType(NewType) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
DFAPacketizer.cpp 58 unsigned Action = ItinActions[MID->getSchedClass()];
59 if (MID->getSchedClass() == 0 || Action == 0)
61 return A.canAdd(Action);
67 unsigned Action = ItinActions[MID->getSchedClass()];
68 if (MID->getSchedClass() == 0 || Action == 0)
70 A.add(Action);
  /src/external/apache2/llvm/dist/llvm/lib/LineEditor/
LineEditor.cpp 56 CompletionAction Action;
59 Action.Kind = CompletionAction::AK_ShowCompletions;
60 return Action;
71 Action.Kind = CompletionAction::AK_ShowCompletions;
74 Action.Completions.push_back(I->DisplayText);
76 Action.Kind = CompletionAction::AK_Insert;
77 Action.Text = CommonPrefix;
80 return Action;
86 CompletionAction Action;
87 Action.Kind = CompletionAction::AK_ShowCompletions
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXTargetTransformInfo.cpp 167 const SimplifyAction Action = [II]() -> SimplifyAction {
314 // If Action.FtzRequirementTy is not satisfied by the module's ftz state, we
318 if (Action.FtzRequirement != FTZ_Any) {
325 if (FtzEnabled != (Action.FtzRequirement == FTZ_MustBeOn))
330 if (Action.IID) {
336 Intrinsic::getDeclaration(II->getModule(), *Action.IID, Tys), Args);
340 if (Action.BinaryOp)
341 return BinaryOperator::Create(*Action.BinaryOp, II->getArgOperand(0),
345 if (Action.CastOp)
346 return CastInst::Create(*Action.CastOp, II->getArgOperand(0), II->getType()
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DFAEmitter.cpp 57 // For every possible action...
64 // If this action is possible from this state add the transitioned-to
141 OS << " Action; // The input symbol that causes this transition.\n";
147 OS << "// A table of DFA transitions, ordered by {FromDfaState, Action}.\n";
173 // using Action = std::variant<Record *, unsigned, std::string>;
174 struct Action {
179 Action() = default;
180 Action(Record *R, unsigned I, std::string S) : R(R), I(I), S(S) {}
190 bool operator<(const Action &Other) const {
196 using ActionTuple = std::vector<Action>;
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/clang-refactor/
ClangRefactor.cpp 100 /// Testing support: invokes the selection action for each selection range in
188 /// refactoring action rule.
218 /// refactoring action.
237 "specified for one refactoring action");
239 // in all rules in an action.
252 /// A subcommand that corresponds to individual refactoring action.
255 RefactoringActionSubcommand(std::unique_ptr<RefactoringAction> Action,
258 : SubCommand(Action->getCommand(), Action->getDescription()),
259 Action(std::move(Action)), ActionRules(std::move(ActionRules))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerInfo.cpp 45 raw_ostream &llvm::operator<<(raw_ostream &OS, LegalizeAction Action) {
46 switch (Action) {
311 const LegalizeAction Action = LLT2Action.second;
313 auto SizeAction = std::make_pair(Type.getSizeInBits(), Action);
468 if (Step.Action != LegalizeAction::UseLegacyRules) {
473 auto Action = getAspectAction({Query.Opcode, i, Query.Types[i]});
474 if (Action.first != Legal) {
475 LLVM_DEBUG(dbgs() << ".. (legacy) Type " << i << " Action="
476 << Action.first << ", " << Action.second << "\n")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 799 StringRef OriginalName, Name, Action;
822 if (getParser().parseIdentifier(Action) || Action != "remove")
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 803 ActionKind Action;
865 llvm_unreachable("invalid action");
872 char Action = bitActionToX86BTCode(BT.Action);
881 if (Action)
882 AsmOS << Action;
949 if (BT.Action != BitTest::TestOnly) {
954 // Check the action and ordering of the interlocked intrinsics.
962 if (BT.Action == BitTest::Reset) {
972 switch (BT.Action) {
    [all...]
CodeGenAction.cpp 1 //===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===//
106 BackendAction Action;
133 BackendConsumer(BackendAction Action, DiagnosticsEngine &Diags,
142 : Diags(Diags), Action(Action), HeaderSearchOpts(HeaderSearchOpts),
158 BackendConsumer(BackendAction Action, DiagnosticsEngine &Diags,
166 : Diags(Diags), Action(Action), HeaderSearchOpts(HeaderSearchOpts),
336 getModule(), Action, std::move(AsmOutStream));
893 GetOutputStream(CompilerInstance &CI, StringRef InFile, BackendAction Action) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
PrecompiledPreamble.cpp 231 PrecompilePreambleConsumer(PrecompilePreambleAction &Action,
240 Action(Action), Out(std::move(Out)) {}
243 Action.Callbacks.HandleTopLevelDecl(DG);
260 Action.setEmittedPreamblePCH(getWriter());
264 return Action.Callbacks.shouldSkipFunctionBody(D);
268 PrecompilePreambleAction &Action;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 217 PragmaMsStackAction Action = Sema::PSK_Reset;
227 Action = Sema::PSK_Push_Set;
230 Action = Sema::PSK_Push_Set;
237 Action = Sema::PSK_Push_Set;
247 Action = Sema::PSK_Push_Set;
253 Action = Sema::PSK_Pop;
257 Action = Sema::PSK_Reset;
269 AlignPackStack.Act(PragmaLoc, Action, StringRef(), Info);
273 PragmaClangSectionAction Action,
301 if (Action == PragmaClangSectionAction::PCSA_Clear)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Passes/
PassBuilder.h 39 std::string ProfileRemappingFile = "", PGOAction Action = NoAction,
44 ProfileRemappingFile(ProfileRemappingFile), Action(Action),
46 (Action == SampleUse &&
49 // Note, we do allow ProfileFile.empty() for Action=IRUse LTO can
50 // callback with IRUse action without ProfileFile.
54 (this->Action != IRInstr && this->Action != SampleUse));
61 assert(this->CSAction != CSIRUse || this->Action == IRUse);
63 // If neither Action nor CSAction, DebugInfoForProfiling o
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonISelLoweringHVX.cpp 252 auto Action = getPreferredVectorAction(VecTy);
253 if (Action == TargetLoweringBase::TypeWidenVector) {
2289 auto Action = getPreferredHvxVectorAction(Ty);
2290 if (Action == TargetLoweringBase::TypeWidenVector) {
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
Action.h 1 //===- Action.h - Abstract compilation steps --------------------*- C++ -*-===//
35 /// Action - Represent an abstract compilation step to perform.
37 /// An action represents an edge in the compilation graph; typically
47 class Action {
82 // The offloading kind determines if this action is binded to a particular
102 /// The output type of this action.
107 /// Flag that is set to true if this action can be collapsed with others
109 /// the action is used by two different tool chains, which is enabled by the
126 /// The Offloading architecture associated with this action.
129 Action(ActionClass Kind, types::ID Type) : Action(Kind, ActionList(), Type) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Preprocessor.cpp 1158 // Enter the header-name token into the token stream; a Lex action cannot
1187 auto Action = HandleHeaderIncludeOrImport(
1189 switch (Action.Kind) {
1200 Suffix.back().setAnnotationValue(Action.ModuleForHeader);
1209 Suffix[0].setAnnotationValue(Action.ModuleForHeader);

Completed in 78 milliseconds

1 2