Searched refs:Action (Results 1 - 25 of 96) sorted by relevance

1234

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DUtil.h20 class Action;
27 typedef SmallVector<Action*, 3> ActionList;
H A DAction.h1 //===--- Action.h - Abstract compilation steps ------------------*- C++ -*-===//
26 /// Action - Represent an abstract compilation step to perform.
35 class Action { class in namespace:clang::driver
72 Action(ActionClass _Kind, types::ID _Type) function in class:clang::driver::Action
74 Action(ActionClass _Kind, Action *Input, types::ID _Type) function in class:clang::driver::Action
76 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type) function in class:clang::driver::Action
79 virtual ~Action();
81 const char *getClassName() const { return Action::getClassName(getKind()); }
100 class InputAction : public Action {
[all...]
H A DJob.h24 class Action;
63 const Action &Source;
76 Command(const Action &_Source, const Tool &_Creator, const char *_Executable,
85 /// getSource - Return the Action which caused the creation of this job.
86 const Action &getSource() const { return Source; }
103 FallbackCommand(const Action &Source_, const Tool &Creator_,
H A DDriver.h41 class Action;
347 Action *ConstructPhaseAction(const llvm::opt::ArgList &Args, phases::ID Phase,
348 Action *Input) const;
353 const Action *A,
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DAction.cpp1 //===--- Action.cpp - Abstract compilation steps --------------------------===//
10 #include "clang/Driver/Action.h"
16 Action::~Action() {
23 const char *Action::getClassName(ActionClass AC) {
45 : Action(InputClass, _Type), Input(_Input) {
50 BindArchAction::BindArchAction(Action *Input, const char *_ArchName)
51 : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) {
56 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type)
57 : Action(Kin
[all...]
H A DToolChain.cpp12 #include "clang/Driver/Action.h"
105 Tool *ToolChain::getTool(Action::ActionClass AC) const {
107 case Action::AssembleJobClass:
110 case Action::LinkJobClass:
113 case Action::InputClass:
114 case Action::BindArchClass:
115 case Action::LipoJobClass:
116 case Action::DsymutilJobClass:
117 case Action::VerifyJobClass:
120 case Action
[all...]
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
78 void CallingConvEmitter::EmitAction(Record *Action, argument
82 if (Action->isSubClassOf("CCPredicateAction")) {
85 if (Action->isSubClassOf("CCIfType")) {
86 ListInit *VTs = Action->getValueAsListInit("VTs");
93 } else if (Action->isSubClassOf("CCIf")) {
94 O << Action->getValueAsString("Predicate");
96 Action->dump();
101 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O);
104 if (Action
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm-c/
H A DAnalysis.h45 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
50 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DAnalysis.cpp73 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, argument
78 static_cast<VerifierFailureAction>(Action),
87 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) { argument
89 static_cast<VerifierFailureAction>(Action));
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/CodeGen/
H A DBackendUtil.h37 BackendAction Action, raw_ostream *OS);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchFinder.h119 /// Calls 'Action' with the BoundNodes on every match.
123 /// Does not take ownership of 'Action'.
126 MatchCallback *Action);
128 MatchCallback *Action);
130 MatchCallback *Action);
132 MatchCallback *Action);
134 MatchCallback *Action);
136 MatchCallback *Action);
148 MatchCallback *Action);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp35 StringRef Action("unknown");
49 case EmitHTML: Action = "EmitHTML"; break;
58 case FixIt: Action = "FixIt"; break;
91 Action = "RewriteIncludesAction";
103 case RewriteMacros: Action = "RewriteMacros"; break;
104 case RewriteObjC: Action = "RewriteObjC"; break;
105 case RewriteTest: Action = "RewriteTest"; break;
110 case MigrateSource: Action = "MigrateSource"; break;
115 case RunAnalysis: Action = "RunAnalysis"; break;
122 CI.getDiagnostics().Report(diag::err_fe_action_not_available) << Action;
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DTooling.cpp156 FrontendAction *Action; member in class:clang::tooling::__anon3524::SingleFrontendActionFactory
159 SingleFrontendActionFactory(FrontendAction *Action) : Action(Action) {} argument
161 FrontendAction *create() { return Action; }
167 ToolAction *Action, FileManager *Files)
169 Action(Action),
177 Action(new SingleFrontendActionFactory(FAction)),
184 delete Action;
166 ToolInvocation(ArrayRef<std::string> CommandLine, ToolAction *Action, FileManager *Files) argument
322 run(ToolAction *Action) argument
414 ToolInvocation Invocation(getSyntaxOnlyToolArgs(Args, FileNameRef), &Action, 0); local
[all...]
H A DCompilationDatabase.cpp24 #include "clang/Driver/Action.h"
116 void run(const driver::Action *A) {
124 void runImpl(const driver::Action *A, bool Collect) {
127 case driver::Action::CompileJobClass:
131 case driver::Action::InputClass: {
253 if (Cmd->getSource().getKind() == driver::Action::AssembleJobClass)
/freebsd-9.3-release/lib/clang/libclangdriver/
H A DMakefile8 SRCS= Action.cpp \
/freebsd-9.3-release/sys/contrib/dev/acpica/utilities/
H A Dutdelete.c65 UINT32 Action);
383 * Action - What to do
394 UINT32 Action)
414 switch (Action)
470 ACPI_ERROR ((AE_INFO, "Unknown action (0x%X)", Action));
492 * Action - Either REF_INCREMENT or REF_DECREMENT or
511 UINT16 Action)
547 AcpiUtUpdateRefCount (Object->CommonNotify.SystemNotify, Action);
548 AcpiUtUpdateRefCount (Object->CommonNotify.DeviceNotify, Action);
564 Object->Package.Elements[i], Action,
392 AcpiUtUpdateRefCount( ACPI_OPERAND_OBJECT *Object, UINT32 Action) argument
509 AcpiUtUpdateObjectReference( ACPI_OPERAND_OBJECT *Object, UINT16 Action) argument
[all...]
H A Dutstate.c59 * Action - Increment/Decrement
245 * Action - Update action to be performed
258 UINT16 Action)
278 State->Update.Value = Action;
289 * Action - Update action to be performed
256 AcpiUtCreateUpdateState( ACPI_OPERAND_OBJECT *Object, UINT16 Action) argument
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfException.cpp159 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction };
160 Actions.push_back(Action);
295 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
404 CallSiteTableLength += MCAsmInfo::getULEB128Size(CallSites[i].Action);
541 if (S.Action == 0)
542 Asm->OutStreamer.AddComment(" Action: cleanup");
544 Asm->OutStreamer.AddComment(" Action: " +
545 Twine((S.Action - 1) / 2 + 1));
547 Asm->EmitULEB128(S.Action);
[all...]
/freebsd-9.3-release/lib/libc/net/
H A Dnsparser.y69 %type <mapval> Status Action
131 : Status '=' Action
147 Action
/freebsd-9.3-release/sys/dev/mwl/
H A Dmwlreg.h644 uint16_t Action; member in struct:__anon8466
663 uint16_t Action; member in struct:__anon8469
708 uint32_t Action; //HostCmd_ACT_GEN_GET 0x0000 member in struct:__anon8472
727 uint32_t Action; member in struct:__anon8474
735 uint32_t Action; member in struct:__anon8475
742 uint16_t Action; member in struct:__anon8476
783 uint16_t Action; member in struct:__anon8478
792 uint16_t Action; member in struct:__anon8479
801 uint16_t Action; member in struct:__anon8480
811 uint16_t Action; member in struct:__anon8481
821 uint16_t Action; member in struct:__anon8482
831 uint16_t Action; member in struct:_HostCmd_DS_802_11_RF_ANTENNA
838 uint16_t Action; member in struct:__anon8483
844 uint16_t Action; member in struct:__anon8484
898 uint16_t Action; member in struct:__anon8490
923 uint16_t Action; // see following member in struct:__anon8494
983 uint32_t Action ; // 0 -> unset, 1 ->set member in struct:__anon8503
995 uint16_t Action; // 0->unset, 1->set member in struct:__anon8505
1000 uint16_t Action; // 0->unset, 1->set member in struct:__anon8506
1010 uint16_t Action; //0 = get all, 0x1 =set CWMin/Max, 0x2 = set TXOP , 0x4 =set AIFSN member in struct:__anon8507
1285 uint16_t Action; member in struct:__anon8528
1292 uint16_t Action; member in struct:__anon8529
1370 uint16_t Action; /* 0: Get. 1:Set */ member in struct:__anon8541
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DBackendUtil.cpp104 bool AddEmitPasses(BackendAction Action, formatted_raw_ostream &OS,
123 void EmitAssembly(BackendAction Action, raw_ostream *OS);
505 bool EmitAssemblyHelper::AddEmitPasses(BackendAction Action, argument
525 if (Action == Backend_EmitObj)
527 else if (Action == Backend_EmitMCNull)
530 assert(Action == Backend_EmitAssembly && "Invalid action!");
548 void EmitAssemblyHelper::EmitAssembly(BackendAction Action, raw_ostream *OS) { argument
552 bool UsesCodeGen = (Action != Backend_EmitNothing &&
553 Action != Backend_EmitBC &&
554 Action !
607 EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts, const clang::TargetOptions &TOpts, const LangOptions &LOpts, Module *M, BackendAction Action, raw_ostream *OS) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp779 MatchCallback *Action) {
780 MatcherCallbackPairs.push_back(std::make_pair(NodeMatch, Action));
784 MatchCallback *Action) {
785 MatcherCallbackPairs.push_back(std::make_pair(NodeMatch, Action));
789 MatchCallback *Action) {
790 MatcherCallbackPairs.push_back(std::make_pair(NodeMatch, Action));
794 MatchCallback *Action) {
795 MatcherCallbackPairs.push_back(std::make_pair(NodeMatch, Action));
799 MatchCallback *Action) {
800 MatcherCallbackPairs.push_back(std::make_pair(NodeMatch, Action));
778 addMatcher(const DeclarationMatcher &NodeMatch, MatchCallback *Action) argument
783 addMatcher(const TypeMatcher &NodeMatch, MatchCallback *Action) argument
788 addMatcher(const StatementMatcher &NodeMatch, MatchCallback *Action) argument
793 addMatcher(const NestedNameSpecifierMatcher &NodeMatch, MatchCallback *Action) argument
798 addMatcher(const NestedNameSpecifierLocMatcher &NodeMatch, MatchCallback *Action) argument
803 addMatcher(const TypeLocMatcher &NodeMatch, MatchCallback *Action) argument
808 addDynamicMatcher(const internal::DynTypedMatcher &NodeMatch, MatchCallback *Action) argument
[all...]
/freebsd-9.3-release/sys/contrib/dev/acpica/parser/
H A Dpsxface.c70 UINT16 Action);
413 * Action - Add or Remove reference
424 UINT16 Action)
437 (void) AcpiUtUpdateObjectReference (Info->Parameters[i], Action);
422 AcpiPsUpdateParameterList( ACPI_EVALUATE_INFO *Info, UINT16 Action) argument
/freebsd-9.3-release/sys/contrib/dev/acpica/events/
H A Devxfgpe.c208 * Action - ACPI_GPE_ENABLE or ACPI_GPE_DISABLE
226 UINT8 Action)
249 switch (Action)
373 * Action - Enable or Disable
386 UINT8 Action)
428 switch (Action)
439 ACPI_ERROR ((AE_INFO, "%u, Invalid action", Action));
/freebsd-9.3-release/contrib/llvm/include/llvm/Target/
H A DTargetLowering.h305 void setTypeAction(MVT VT, LegalizeTypeAction Action) { argument
307 ValueTypeActions[I] = Action;
540 LegalizeAction Action = (LegalizeAction) ((Value >> Shift) & 0x3);
541 assert(Action != Promote && "Can't promote condition code!");
542 return Action;
981 LegalizeAction Action) {
983 OpActions[(unsigned)VT.SimpleTy][Op] = (uint8_t)Action;
989 LegalizeAction Action) {
992 LoadExtActions[VT.SimpleTy][ExtType] = (uint8_t)Action;
998 LegalizeAction Action) {
980 setOperationAction(unsigned Op, MVT VT, LegalizeAction Action) argument
[all...]

Completed in 192 milliseconds

1234