| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cert/ |
| H A D | dcl21-cpp.rst | 6 This check flags postfix ``operator++`` and ``operator--`` declarations 10 The object returned by a postfix increment or decrement operator is supposed 14 implementation of a postfix increment or decrement operator should instead 16 Similarly, it is unexpected for the postfix operator to return a reference to 21 DCL21-CPP. Overloaded postfix increment and decrement operators should return a
|
| /llvm-project-15.0.7/compiler-rt/test/ |
| H A D | lit.common.cfg.py | 632 for postfix in ["2", "1", ""]: 634 …ubstitutions.append( ("%ld_flags_rpath_exe" + postfix, '-Wl,-rpath,@executable_path/ %dynamiclib' … 635 …itutions.append( ("%ld_flags_rpath_so" + postfix, '-install_name @rpath/`basename %dynamiclib{}`'.… 637 …s.append( ("%ld_flags_rpath_exe" + postfix, "-Wl,-z,origin -Wl,-rpath,\$ORIGIN -L%T -l%xdynamiclib… 638 config.substitutions.append( ("%ld_flags_rpath_so" + postfix, '') ) 640 …itutions.append( ("%ld_flags_rpath_exe" + postfix, "-Wl,-rpath,\$ORIGIN -L%T -l%xdynamiclib_namesp… 641 config.substitutions.append( ("%ld_flags_rpath_so" + postfix, '') ) 643 …stitutions.append( ("%ld_flags_rpath_exe" + postfix, "-Wl,-R\$ORIGIN -L%T -l%xdynamiclib_namespec"… 644 config.substitutions.append( ("%ld_flags_rpath_so" + postfix, '') ) 647 config.substitutions.append( ("%dynamiclib" + postfix, '%T/%xdynamiclib_filename' + postfix) ) [all …]
|
| /llvm-project-15.0.7/polly/docs/experiments/matmul/ |
| H A D | runall.sh | 45 -polly-import-jscop-postfix=interchanged -polly-process-unprofitable -polly-use-llvm-names 47 -polly-import-jscop-postfix=interchanged+tiled -polly-process-unprofitable -polly-use-llvm-names 49 -polly-import-jscop-postfix=interchanged+tiled+vector \ 53 opt -S -basic-aa -polly-import-jscop -polly-import-jscop-postfix=interchanged \ 57 -polly-import-jscop-postfix=interchanged+tiled -polly-codegen \ 61 -polly-import-jscop-postfix=interchanged+tiled+vector -polly-codegen \ 65 -polly-import-jscop-postfix=interchanged+tiled+vector -polly-codegen \
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 592 postfix::Node *rhs = postfix::ParseOneExpression(rule->second, node_alloc); in ParseCFIUnwindRow() 598 bool success = postfix::ResolveSymbols( in ParseCFIUnwindRow() 599 rhs, [&](postfix::SymbolNode &symbol) -> postfix::Node * { in ParseCFIUnwindRow() 602 return postfix::MakeNode<postfix::InitialValueNode>(node_alloc); in ParseCFIUnwindRow() 606 return postfix::MakeNode<postfix::RegisterNode>( in ParseCFIUnwindRow() 726 [&](postfix::SymbolNode &symbol) -> postfix::Node * { in ParseWinUnwindPlan() 733 return postfix::MakeNode<postfix::RegisterNode>( in ParseWinUnwindPlan() 740 auto *symbol = llvm::dyn_cast<postfix::SymbolNode>(it->second); in ParseWinUnwindPlan() 745 if (!postfix::ResolveSymbols(it->second, symbol_resolver)) { in ParseWinUnwindPlan() 757 it->second = postfix::MakeNode<postfix::InitialValueNode>(node_alloc); in ParseWinUnwindPlan() [all …]
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | attributes.mm | 16 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directi… 19 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C… 22 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{… 25 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directiv…
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | PostfixExpression.cpp | 20 using namespace lldb_private::postfix; 45 Node *postfix::ParseOneExpression(llvm::StringRef expr, in ParseOneExpression() 89 postfix::ParseFPOProgram(llvm::StringRef prog, llvm::BumpPtrAllocator &alloc) { in ParseFPOProgram() 241 bool postfix::ResolveSymbols( in ResolveSymbols() 246 void postfix::ToDWARF(Node &node, Stream &stream) { in ToDWARF()
|
| /llvm-project-15.0.7/clang-tools-extra/pseudo/lib/cxx/ |
| H A D | cxx.bnf | 145 postfix-expression := primary-expression 146 postfix-expression := postfix-expression [ expr-or-braced-init-list ] 147 postfix-expression := postfix-expression ( expression-list_opt ) 151 postfix-expression := postfix-expression . TEMPLATE_opt id-expression 152 postfix-expression := postfix-expression -> TEMPLATE_opt id-expression 153 postfix-expression := postfix-expression ++ 154 postfix-expression := postfix-expression -- 158 postfix-expression := CONST_CAST < type-id > ( expression ) 159 postfix-expression := TYPEID ( expression ) 160 postfix-expression := TYPEID ( type-id ) [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbFPOProgramToDWARFExpression.cpp | 25 using namespace lldb_private::postfix; 60 postfix::ParseFPOProgram(program, alloc); in ResolveFPOProgram()
|
| /llvm-project-15.0.7/polly/test/DeLICM/ |
| H A D | confused_order.ll | 1 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-print-deli… 2 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-delicm -di…
|
| /llvm-project-15.0.7/polly/docs/ |
| H A D | HowToManuallyUseTheIndividualPiecesOfPolly.rst | 245 providing the postfix of the jscop file that is imported. 285 …-use-llvm-names matmul.preopt.ll -polly-import-jscop -polly-import-jscop-postfix=interchanged -pol… 314 …-use-llvm-names matmul.preopt.ll -polly-import-jscop -polly-import-jscop-postfix=interchanged+tile… 349 …-use-llvm-names matmul.preopt.ll -polly-import-jscop -polly-import-jscop-postfix=interchanged+tile… 390 … -basic-aa -polly-use-llvm-names -polly-import-jscop -polly-import-jscop-postfix=interchanged -pol… 400 … -basic-aa -polly-use-llvm-names -polly-import-jscop -polly-import-jscop-postfix=interchanged+tile… 410 … -basic-aa -polly-use-llvm-names -polly-import-jscop -polly-import-jscop-postfix=interchanged+tile… 420 … -basic-aa -polly-use-llvm-names -polly-import-jscop -polly-import-jscop-postfix=interchanged+tile…
|
| /llvm-project-15.0.7/polly/test/CodeGen/MemAccess/ |
| H A D | codegen_simple_md.ll | 1 ;RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed+withconst -polly-c… 2 ;RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed+withoutconst -poll…
|
| H A D | codegen_simple_md_float.ll | 1 ;RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed+withconst -polly-c… 2 ;RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed+withoutconst -poll…
|
| H A D | create_arrays.ll | 1 ; RUN: opt %loadPolly -polly-print-scops -polly-print-import-jscop -polly-import-jscop-postfix=tran… 2 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-codegen -S…
|
| /llvm-project-15.0.7/polly/test/Simplify/ |
| H A D | emptyaccessdomain.ll | 1 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-print-simp…
|
| H A D | nocoalesce_differentvalues.ll | 1 ; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-import-jscop -polly-import-jscop-postfix=tr…
|
| H A D | nocoalesce_writebetween.ll | 1 ; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-import-jscop -polly-import-jscop-postfix=tr…
|
| H A D | redundant_scalarwrite.ll | 1 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-print-simp…
|
| H A D | nocoalesce_elementmismatch.ll | 1 ; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-import-jscop -polly-import-jscop-postfix=tr…
|
| H A D | redundant_partialwrite.ll | 1 ; RUN: opt %loadPolly -polly-import-jscop-postfix=transformed -polly-print-import-jscop -polly-prin…
|
| H A D | redundant_region.ll | 1 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-print-simp…
|
| H A D | coalesce_3partials.ll | 1 ; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-import-jscop -polly-import-jscop-postfix=tr…
|
| H A D | coalesce_partial.ll | 1 ; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-import-jscop -polly-import-jscop-postfix=tr…
|
| H A D | coalesce_overlapping.ll | 1 ; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-import-jscop -polly-import-jscop-postfix=tr…
|
| H A D | notredundant_region_loop.ll | 1 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-allow-nona…
|
| /llvm-project-15.0.7/polly/test/CodeGen/ |
| H A D | partial_write_emptyset.ll | 1 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-codegen -S…
|