Home
last modified time | relevance | path

Searched refs:UR (Results 1 – 25 of 237) sorted by relevance

12345678910

/external/llvm-project/llvm/lib/Analysis/
DCGSCCPassManager.cpp64 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/
DCGSCCPassManager.h139 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/
DCGSCCPassManager.cpp55 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/
DCallGraphUpdater.h51 CGSCCUpdateResult *UR = nullptr; variable
67 CGSCCAnalysisManager &AM, CGSCCUpdateResult &UR) { in initialize() argument
71 this->UR = &UR; in initialize()
/external/llvm-project/llvm/unittests/Analysis/
DCGSCCPassManagerTest.cpp164 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/
Dstring_concat.cpp17 …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()
Dstring-literal-encoding.c14 …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/
Dstring_concat.cpp17 …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()
Dstring-literal-encoding.c14 …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/
DIPConstantPropagation.cpp61 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/
DGlobalStatus.cpp68 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/
DGlobalStatus.cpp67 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()
DCallGraphUpdater.cpp72 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/
Dtokenize_tests.txt115 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/
DGlobalStatus.cpp57 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/
Dstring-literal.c83 const char32_t *k = UR"bar(IJ)bar"; in main()
118 const char32_t *u = UR\ in main()
/external/llvm-project/clang/test/CodeGen/
Dstring-literal.c83 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/
DCGSCCPassManager.h139 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/
DTpiHashing.h33 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/
DTpiHashing.h33 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/
DHWEventListener.h66 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/
DHWEventListener.h66 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/
DInliner.cpp683 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/
DCoroSplit.h28 LazyCallGraph &CG, CGSCCUpdateResult &UR);
/external/llvm-project/llvm/lib/Support/
DScaledNumber.cpp27 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()

12345678910