Home
last modified time | relevance | path

Searched refs:IsSuffix (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/polly/lib/Support/
H A DDumpModulePass.cpp28 static void runDumpModule(llvm::Module &M, StringRef Filename, bool IsSuffix) { in runDumpModule() argument
30 if (IsSuffix) { in runDumpModule()
58 bool IsSuffix; member in __anondd37e1940111::DumpModuleWrapperPass
67 : ModulePass(ID), Filename("-dump"), IsSuffix(true) {} in DumpModuleWrapperPass()
69 explicit DumpModuleWrapperPass(std::string Filename, bool IsSuffix) in DumpModuleWrapperPass() argument
70 : ModulePass(ID), Filename(std::move(Filename)), IsSuffix(IsSuffix) {} in DumpModuleWrapperPass()
79 runDumpModule(M, Filename, IsSuffix); in runOnModule()
89 bool IsSuffix) { in createDumpModuleWrapperPass() argument
90 return new DumpModuleWrapperPass(std::move(Filename), IsSuffix); in createDumpModuleWrapperPass()
95 runDumpModule(M, Filename, IsSuffix); in run()
/llvm-project-15.0.7/polly/include/polly/Support/
H A DDumpModulePass.h34 bool IsSuffix);
39 bool IsSuffix; member
41 DumpModulePass(std::string Filename, bool IsSuffix) in DumpModulePass()
42 : Filename(std::move(Filename)), IsSuffix(IsSuffix) {} in DumpModulePass()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp350 bool IsSuffix; // Is the operand actually a suffix on the mnemonic. member
571 return Tok.IsSuffix; in isTokenSuffix()
1969 CreateToken(StringRef Str, SMLoc S, MCContext &Ctx, bool IsSuffix = false) { in CreateToken() argument
1973 Op->Tok.IsSuffix = IsSuffix; in CreateToken()