Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp984 if (LocalCost + Cost < LocalCost) { in addLocalCost()
988 LocalCost += Cost; in addLocalCost()
1003 return LocalCost == UINT64_MAX - 1 && NonLocalCost == UINT64_MAX && in isSaturated()
1009 --LocalCost; in saturate()
1043 return LocalCost < Cost.LocalCost; in operator <()
1049 if (LocalCost < Cost.LocalCost) in operator <()
1050 OtherLocalAdjust = Cost.LocalCost - LocalCost; in operator <()
1052 ThisLocalAdjust = LocalCost - Cost.LocalCost; in operator <()
1054 ThisLocalAdjust = LocalCost; in operator <()
1055 OtherLocalAdjust = Cost.LocalCost; in operator <()
[all …]
/src/contrib/llvm-project/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()