Home
last modified time | relevance | path

Searched refs:LocalCost (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp876 if (LocalCost + Cost < LocalCost) { in addLocalCost()
880 LocalCost += Cost; in addLocalCost()
901 --LocalCost; in saturate()
935 return LocalCost < Cost.LocalCost; in operator <()
941 if (LocalCost < Cost.LocalCost) in operator <()
942 OtherLocalAdjust = Cost.LocalCost - LocalCost; in operator <()
944 ThisLocalAdjust = LocalCost - Cost.LocalCost; in operator <()
946 ThisLocalAdjust = LocalCost; in operator <()
947 OtherLocalAdjust = Cost.LocalCost; in operator <()
986 return LocalCost == Cost.LocalCost && NonLocalCost == Cost.NonLocalCost && in operator ==()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegBankSelect.h426 uint64_t LocalCost = 0;
433 MappingCost(uint64_t LocalCost, uint64_t NonLocalCost, uint64_t LocalFreq) in MappingCost() argument
434 : LocalCost(LocalCost), NonLocalCost(NonLocalCost), in MappingCost()