HomeSort by: relevance | last modified time | path
    Searched refs:Act (Results 1 - 18 of 18) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 139 std::unique_ptr<FrontendAction> Act = CreateFrontendBaseAction(CI);
140 if (!Act)
146 Act = std::make_unique<FixItRecompile>(std::move(Act));
157 Act = std::make_unique<arcmt::CheckAction>(std::move(Act));
160 Act = std::make_unique<arcmt::ModifyAction>(std::move(Act));
163 Act = std::make_unique<arcmt::MigrateAction>(std::move(Act),
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/
InputInfo.h 41 const Action* Act;
52 : Kind(Nothing), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {}
55 : Kind(Filename), Act(nullptr), Type(_Type), BaseInput(_BaseInput) {
59 : Kind(Filename), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {
65 : Kind(InputArg), Act(nullptr), Type(_Type), BaseInput(_BaseInput) {
70 : Kind(InputArg), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {
80 const Action *getAction() const { return Act; }
81 void setAction(const Action *A) { Act = A; }
Driver.cpp 2095 for (Action* Act : SingleActions) {
2102 if (Archs.size() > 1 && !types::canLipoType(Act->getType()))
2104 << types::getTypeName(Act->getType());
2108 Inputs.push_back(C.MakeAction<BindArchAction>(Act, Archs[i]));
2112 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing)
2115 Actions.push_back(C.MakeAction<LipoJobAction>(Inputs, Act->getType()));
2128 if (Act->getType() == types::TY_Image) {
2395 // The builder didn't have to act on the current action.
  /src/external/apache2/llvm/dist/clang/lib/Interpreter/
IncrementalParser.cpp 51 std::unique_ptr<FrontendAction> Act;
59 return Act;
65 Act = CreateFrontendAction(CI);
72 Act.reset(new EmitLLVMOnlyAction(&LLVMCtx));
75 return Act;
121 Act = std::make_unique<IncrementalAction>(*CI, LLVMCtx, Err);
124 CI->ExecuteAction(*Act);
131 IncrementalParser::~IncrementalParser() { Act->FinalizeAction(); }
186 static CodeGenerator *getCodeGen(FrontendAction *Act) {
187 IncrementalAction *IncrAct = static_cast<IncrementalAction *>(Act);
    [all...]
IncrementalParser.h 42 std::unique_ptr<IncrementalAction> Act;
50 /// Consumer to process the produced top level decls. Owned by Act.
  /src/external/apache2/llvm/dist/clang/examples/clang-interpreter/
main.cpp 210 std::unique_ptr<CodeGenAction> Act(new EmitLLVMOnlyAction());
211 if (!Clang.ExecuteAction(*Act))
218 std::unique_ptr<llvm::LLVMContext> Ctx(Act->takeLLVMContext());
219 std::unique_ptr<llvm::Module> Module = Act->takeModule();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
llvm-stress.cpp 188 virtual void Act() = 0;
193 Act();
341 void Act() override {
355 void Act() override {
375 void Act() override {
419 void Act() override {
470 void Act() override {
482 void Act() override {
499 void Act() override {
527 void Act() override
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 269 AlignPackStack.Act(PragmaLoc, Action, StringRef(), Info);
384 AlignPackStack.Act(PragmaLoc, Action, SlotLabel, Info);
488 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
497 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
504 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
508 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
511 FpPragmaStack.Act(Loc, Sema::PSK_Push_Set, StringRef(), NewFPFeatures);
519 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
539 VtorDispStack.Act(PragmaLoc, Action, StringRef(), Mode);
543 void Sema::PragmaStack<Sema::AlignPackInfo>::Act(SourceLocation PragmaLocation
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
Program.inc 384 struct sigaction Act, Old;
395 memset(&Act, 0, sizeof(Act));
396 Act.sa_handler = TimeOutHandler;
397 sigemptyset(&Act.sa_mask);
398 sigaction(SIGALRM, &Act, &Old);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 1195 std::unique_ptr<TopLevelDeclTrackerAction> Act(
1200 ActCleanup(Act.get());
1202 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0]))
1211 if (llvm::Error Err = Act->Execute()) {
1218 Act->EndSourceFile();
1587 FrontendAction *Act = Action;
1590 if (!Act) {
1592 Act = TrackerAct.get();
1599 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) {
1619 if (llvm::Error Err = Act->Execute())
    [all...]
PrecompiledPreamble.cpp 412 std::unique_ptr<PrecompilePreambleAction> Act;
413 Act.reset(new PrecompilePreambleAction(
416 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0]))
431 if (llvm::Error Err = Act->Execute())
437 Act->EndSourceFile();
439 if (!Act->hasEmittedPreamblePCH())
CompilerInstance.cpp 925 bool CompilerInstance::ExecuteAction(FrontendAction &Act) {
937 if (!Act.PrepareToExecute(*this))
962 if (hasSourceManager() && !Act.isModelParsingAction())
965 if (Act.BeginSourceFile(*this, FIF)) {
966 if (llvm::Error Err = Act.Execute()) {
969 Act.EndSourceFile();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenAction.cpp 859 : Act(_Act), VMContext(_VMContext ? _VMContext : new LLVMContext),
914 BackendAction BA = static_cast<BackendAction>(Act);
1047 BackendAction BA = static_cast<BackendAction>(Act);
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
CompilerInstance.h 215 /// \param Act - The action to execute.
220 bool ExecuteAction(FrontendAction &Act);
  /src/external/apache2/llvm/dist/llvm/lib/Target/VE/
VEISelLowering.cpp 189 LegalizeAction Act = (IntVT == MVT::i32) ? Promote : Legal;
190 setOperationAction(ISD::BITREVERSE, IntVT, Act);
191 setOperationAction(ISD::CTLZ, IntVT, Act);
192 setOperationAction(ISD::CTLZ_ZERO_UNDEF, IntVT, Act);
193 setOperationAction(ISD::CTPOP, IntVT, Act);
197 setOperationAction(ISD::AND, IntVT, Act);
198 setOperationAction(ISD::OR, IntVT, Act);
199 setOperationAction(ISD::XOR, IntVT, Act);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 601 void Act(SourceLocation PragmaLocation, PragmaMsStackAction Action,
653 Act(CurrentPragmaLocation, Action, Label, CurrentValue);
1451 /// same special member, we should act as if it is not yet declared.
2538 /// Act on the result of classifying a name as an undeclared (ADL-only)
2542 /// Act on the result of classifying a name as an undeclared member of a
2548 /// Act on the result of classifying a name as a specific non-type
2554 /// Act on the result of classifying a name as an overload set.
5598 // Act on C++ namespaces
10242 /// Act on \p D, a function definition inside of an `omp [begin/end] assumes`.
12946 void Sema::PragmaStack<Sema::AlignPackInfo>::Act(SourceLocation PragmaLocation
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Clang.cpp 992 for (const auto &Act : C.getActions()) {
993 if (ContainsCompileAction(Act)) {

Completed in 41 milliseconds