/external/llvm-project/llvm/lib/Analysis/ |
D | CGSCCPassManager.cpp | 64 LazyCallGraph &G, CGSCCUpdateResult &UR) { in run() argument 92 PassPA = Pass->run(*C, AM, G, UR); in run() 95 if (UR.InvalidatedSCCs.count(C)) in run() 101 C = UR.UpdatedC ? UR.UpdatedC : C; in run() 102 if (UR.UpdatedC) { in run() 111 if (UR.InvalidatedSCCs.count(C)) { in run() 137 UR.CrossSCCPA.intersect(PA); in run() 177 CGSCCUpdateResult UR = { in run() local 272 CGAM.invalidate(*C, UR.CrossSCCPA); in run() 281 LastUpdatedC = UR.UpdatedC; in run() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | CGSCCPassManager.h | 139 LazyCallGraph &G, CGSCCUpdateResult &UR); 419 CGSCCAnalysisManager &AM, CGSCCUpdateResult &UR); 456 LazyCallGraph &CG, CGSCCUpdateResult &UR) { 506 AM, UR); 562 LazyCallGraph &CG, CGSCCUpdateResult &UR) { 615 PreservedAnalyses PassPA = Pass.run(*C, AM, CG, UR); 617 if (UR.InvalidatedSCCs.count(C)) 624 if (UR.UpdatedC && UR.UpdatedC != C) { 630 assert(!UR.InvalidatedSCCs.count(C) && "Processing an invalid SCC!"); 757 CGSCCUpdateResult UR = { [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CGSCCPassManager.cpp | 55 LazyCallGraph &G, CGSCCUpdateResult &UR) { in run() argument 79 PreservedAnalyses PassPA = Pass->run(*C, AM, G, UR); in run() 81 if (UR.InvalidatedSCCs.count(C)) in run() 87 C = UR.UpdatedC ? UR.UpdatedC : C; in run() 91 if (UR.InvalidatedSCCs.count(C)) { in run() 117 UR.CrossSCCPA.intersect(PA); in run() 368 CGSCCAnalysisManager &AM, CGSCCUpdateResult &UR) { in incorporateNewSCCRange() argument 375 UR.CWorklist.insert(C); in incorporateNewSCCRange() 412 UR.CWorklist.insert(&NewC); in incorporateNewSCCRange() 428 CGSCCAnalysisManager &AM, CGSCCUpdateResult &UR) { in updateCGAndAnalysisManagerForFunctionPass() argument [all …]
|
/external/llvm-project/llvm/include/llvm/Transforms/Utils/ |
D | CallGraphUpdater.h | 51 CGSCCUpdateResult *UR = nullptr; variable 67 CGSCCAnalysisManager &AM, CGSCCUpdateResult &UR) { in initialize() argument 71 this->UR = &UR; in initialize()
|
/external/llvm-project/llvm/unittests/Analysis/ |
D | CGSCCPassManagerTest.cpp | 164 LazyCallGraph &CG, CGSCCUpdateResult &UR) { in run() 165 return Func(C, AM, CG, UR); in run() 304 LazyCallGraph &CG, CGSCCUpdateResult &UR) { in TEST_F() argument 394 CGSCCUpdateResult &UR) { in TEST_F() argument 410 LazyCallGraph &CG, CGSCCUpdateResult &UR) { in TEST_F() argument 430 CGSCCUpdateResult &UR) { in TEST_F() argument 1185 LazyCallGraph &CG, CGSCCUpdateResult &UR) { in TEST_F() argument 1210 updateCGAndAnalysisManagerForFunctionPass(CG, C, H2N, AM, UR, FAM); in TEST_F() 1234 LazyCallGraph &CG, CGSCCUpdateResult &UR) { in TEST_F() argument 1256 updateCGAndAnalysisManagerForFunctionPass(CG, C, H2N, AM, UR, FAM); in TEST_F() [all …]
|
/external/clang/test/Lexer/ |
D | string_concat.cpp | 17 …const char* e = u8"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of s… in f() 26 …const char16_t* k = u"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation o… in f() 45 …const wchar_t* x = L"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of… in f()
|
D | string-literal-encoding.c | 14 …char32_t const *f = UR"(�����)"; // expected-error {{illegal character encoding in string literal}} in f() 28 …char32_t const *f = UR"(foo �����)"; // expected-error {{illegal character encoding in string lite… in g()
|
/external/llvm-project/clang/test/Lexer/ |
D | string_concat.cpp | 17 …const char* e = u8"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of s… in f() 26 …const char16_t* k = u"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation o… in f() 45 …const wchar_t* x = L"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of… in f()
|
D | string-literal-encoding.c | 14 …char32_t const *f = UR"(�����)"; // expected-error {{illegal character encoding in string literal}} in f() 28 …char32_t const *f = UR"(foo �����)"; // expected-error {{illegal character encoding in string lite… in g()
|
/external/llvm/lib/Transforms/IPO/ |
D | IPConstantPropagation.cpp | 61 User *UR = U.getUser(); in PropagateConstantsIntoArguments() local 63 if (isa<BlockAddress>(UR)) continue; in PropagateConstantsIntoArguments() 67 if (!isa<CallInst>(UR) && !isa<InvokeInst>(UR)) in PropagateConstantsIntoArguments() 70 CallSite CS(cast<Instruction>(UR)); in PropagateConstantsIntoArguments()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | GlobalStatus.cpp | 68 const User *UR = U.getUser(); in analyzeGlobalAux() local 69 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(UR)) { in analyzeGlobalAux() 80 } else if (const Instruction *I = dyn_cast<Instruction>(UR)) { in analyzeGlobalAux() 174 } else if (const Constant *C = dyn_cast<Constant>(UR)) { in analyzeGlobalAux()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | GlobalStatus.cpp | 67 const User *UR = U.getUser(); in analyzeGlobalAux() local 68 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(UR)) { in analyzeGlobalAux() 79 } else if (const Instruction *I = dyn_cast<Instruction>(UR)) { in analyzeGlobalAux() 174 } else if (const Constant *C = dyn_cast<Constant>(UR)) { in analyzeGlobalAux()
|
D | CallGraphUpdater.cpp | 72 UR->InvalidatedSCCs.insert(DeadSCC); in finalize() 73 UR->InvalidatedRefSCCs.insert(&DeadRC); in finalize() 95 updateCGAndAnalysisManagerForCGSCCPass(*LCG, *C, N, *AM, *UR, *FAM); in reanalyzeFunction()
|
/external/python/cpython2/Lib/test/ |
D | tokenize_tests.txt | 115 x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC' 116 y = ur"abc" + Ur"ABC" + uR"ABC" + UR"ABC" 117 x = ur'\\' + UR'\\' 121 baz''' + UR'''
|
/external/llvm/lib/Transforms/Utils/ |
D | GlobalStatus.cpp | 57 const User *UR = U.getUser(); in analyzeGlobalAux() local 58 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(UR)) { in analyzeGlobalAux() 68 } else if (const Instruction *I = dyn_cast<Instruction>(UR)) { in analyzeGlobalAux() 164 } else if (const Constant *C = dyn_cast<Constant>(UR)) { in analyzeGlobalAux()
|
/external/clang/test/CodeGen/ |
D | string-literal.c | 83 const char32_t *k = UR"bar(IJ)bar"; in main() 118 const char32_t *u = UR\ in main()
|
/external/llvm-project/clang/test/CodeGen/ |
D | string-literal.c | 83 const char32_t *k = UR"bar(IJ)bar"; in main() 118 const char32_t *u = UR\ in main()
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | CGSCCPassManager.h | 139 LazyCallGraph &G, CGSCCUpdateResult &UR); 437 CGSCCAnalysisManager &AM, CGSCCUpdateResult &UR, 448 CGSCCAnalysisManager &AM, CGSCCUpdateResult &UR, 482 LazyCallGraph &CG, CGSCCUpdateResult &UR); 533 LazyCallGraph &CG, CGSCCUpdateResult &UR);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
D | TpiHashing.h | 33 explicit TagRecordHash(codeview::UnionRecord UR, uint32_t Full, in TagRecordHash() 35 : FullRecordHash(Full), ForwardDeclHash(Forward), Union(std::move(UR)) { in TagRecordHash()
|
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
D | TpiHashing.h | 33 explicit TagRecordHash(codeview::UnionRecord UR, uint32_t Full, in TagRecordHash() 35 : FullRecordHash(Full), ForwardDeclHash(Forward), Union(std::move(UR)) { in TagRecordHash()
|
/external/llvm-project/llvm/include/llvm/MCA/ |
D | HWEventListener.h | 66 ArrayRef<std::pair<ResourceRef, ResourceCycles>> UR) in HWInstructionIssuedEvent() argument 67 : HWInstructionEvent(HWInstructionEvent::Issued, IR), UsedResources(UR) {} in HWInstructionIssuedEvent()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
D | HWEventListener.h | 66 ArrayRef<std::pair<ResourceRef, ResourceCycles>> UR) in HWInstructionIssuedEvent() argument 67 : HWInstructionEvent(HWInstructionEvent::Issued, IR), UsedResources(UR) {} in HWInstructionIssuedEvent()
|
/external/llvm-project/llvm/lib/Transforms/IPO/ |
D | Inliner.cpp | 683 CGSCCUpdateResult &UR) { in run() argument 828 UR.InlinedInternalEdges.count({&N, C})) { in run() 941 C = &updateCGAndAnalysisManagerForCGSCCPass(CG, *C, N, AM, UR, FAM); in run() 964 if ((C != OldC || UR.CWorklist.count(OldC)) && in run() 970 UR.InlinedInternalEdges.insert({&N, OldC}); in run() 993 UR.InvalidatedSCCs.insert(&DeadC); in run() 994 UR.InvalidatedRefSCCs.insert(&DeadRC); in run()
|
/external/llvm-project/llvm/include/llvm/Transforms/Coroutines/ |
D | CoroSplit.h | 28 LazyCallGraph &CG, CGSCCUpdateResult &UR);
|
/external/llvm-project/llvm/lib/Support/ |
D | ScaledNumber.cpp | 27 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS); in multiply64() local 30 uint64_t P1 = UL * UR, P2 = UL * LR, P3 = LL * UR, P4 = LL * LR; in multiply64()
|