Home
last modified time | relevance | path

Searched refs:LCM (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/lib/MCA/
H A DSupport.cpp30 unsigned LCM = (Denominator * RHS.Denominator) / GCD; in operator +=() local
31 unsigned LHSNumerator = Numerator * (LCM / Denominator); in operator +=()
32 unsigned RHSNumerator = RHS.Numerator * (LCM / RHS.Denominator); in operator +=()
34 Denominator = LCM; in operator +=()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DTargetSchedule.cpp57 unsigned LCM = (uint64_t(A) * B) / gcd(A, B); in lcm() local
58 assert((LCM >= A && LCM >= B) && "LCM overflow"); in lcm()
59 return LCM; in lcm()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp123 LocationContextMap LCM; member in __anon1dcbea900111::PathDiagnosticConstruct
152 return LCM.find(&PD->getActivePath())->getSecond(); in getLocationContextForActivePath()
176 LCM[Path] = LC; in updateLocCtxMap()
180 assert(LCM.count(Path) && in getLocationContextFor()
182 return LCM.find(Path)->getSecond(); in getLocationContextFor()
185 bool isInLocCtxMap(const PathPieces *Path) const { return LCM.count(Path); } in isInLocCtxMap()
1982 LCM[&PD->getActivePath()] = ErrorNode->getLocationContext(); in PathDiagnosticConstruct()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DOrcV2CBindings.cpp1110 LLVMOrcLazyCallThroughManagerRef LCM) { in LLVMOrcDisposeLazyCallThroughManager() argument
1111 std::unique_ptr<LazyCallThroughManager> TmpLCM(unwrap(LCM)); in LLVMOrcDisposeLazyCallThroughManager()
/llvm-project-15.0.7/polly/lib/External/isl/imath/
H A DChangeLog291 patch contributed by Hal Finkel. Added LCM tests as as well as