Home
last modified time | relevance | path

Searched refs:CS2 (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/Analysis/
H A DProfileSummaryInfoTest.cpp245 CallBase &CS2 = cast<CallBase>(*CI2); in TEST_F() local
248 EXPECT_FALSE(PSI.isHotCallSite(CS2, &BFI)); in TEST_F()
254 EXPECT_FALSE(PSI.isHotCallSite(CS2, &BFI)); in TEST_F()
346 CallBase &CS2 = cast<CallBase>(*CI2); in TEST_F() local
349 EXPECT_TRUE(PSI.isHotCallSite(CS2, &BFI)); in TEST_F()
354 EXPECT_TRUE(PSI.isHotCallSite(CS2, &BFI)); in TEST_F()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DInlineAdvisor.cpp277 CallBase *CS2 = dyn_cast<CallBase>(U); in shouldBeDeferred() local
282 if (!CS2 || CS2->getCalledFunction() != Caller) { in shouldBeDeferred()
287 InlineCost IC2 = GetInlineCost(*CS2); in shouldBeDeferred()
/llvm-project-15.0.7/llvm/test/ExecutionEngine/MCJIT/
H A Dtest-common-symbols-alignment.ll8 @CS2 = common global i8 0, align 1
/llvm-project-15.0.7/llvm/test/DebugInfo/MIR/X86/
H A Dlivedebugvalues-limit.mir22 …![[INLCS2:[0-9]+]] = !DILocation(line: 3, column: 41, scope: ![[F_SP]], inlinedAt: ![[CS2:[0-9]+]])
23 ; CHECK: ![[CS2]] = distinct !DILocation(line: 7, column: 5, scope: !{{[0-9]+}})
/llvm-project-15.0.7/llvm/test/Transforms/LoopStrengthReduce/
H A Dfunclet.ll293 ; CHECK-NEXT: [[CS2:%.*]] = catchswitch within none [label %catch.4] unwind to caller
295 ; CHECK-NEXT: [[TMP1:%.*]] = catchpad within [[CS2]] [i8* null, i32 64, i8* null]
/llvm-project-15.0.7/llvm/docs/
H A DAliasAnalysis.rst152 & ``CS2``), returns ``NoModRef`` if neither call writes to memory read or
153 written by the other, ``Ref`` if ``CS1`` reads memory written by ``CS2``,
154 ``Mod`` if ``CS1`` writes to memory read or written by ``CS2``, or ``ModRef`` if
155 ``CS1`` might read or write memory written to by ``CS2``. Note that this
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h1731 while (const auto *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt())) in getEndLoc() local
1732 CS = CS2; in getEndLoc()