OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MinCost
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/CodeGen/
RegisterClassInfo.cpp
89
unsigned
MinCost
= 0xff;
102
MinCost
= std::min(
MinCost
, Cost);
136
RCI.
MinCost
= uint8_t(
MinCost
);
RegAllocGreedy.cpp
700
unsigned
MinCost
= RegClassInfo.getMinCost(RC);
701
if (
MinCost
>= CostPerUseLimit) {
702
DEBUG(dbgs() << RC->getName() << " minimum cost = " <<
MinCost
[
all
...]
/external/llvm/include/llvm/CodeGen/
RegisterClassInfo.h
32
uint8_t
MinCost
;
37
: Tag(0), NumRegs(0), ProperSubClass(false),
MinCost
(0),
121
return get(RC).
MinCost
;
Completed in 2501 milliseconds