OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NRegs
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/CodeGen/
RegAllocPBQP.cpp
198
const auto *
NRegs
= &G.getNodeMetadata(NId).getAllowedRegs();
201
if (
NRegs
== MRegs)
204
if (
NRegs
< MRegs)
205
return D.count(IKey(
NRegs
, MRegs)) > 0;
207
return D.count(IKey(MRegs,
NRegs
)) > 0;
213
const auto *
NRegs
= &G.getNodeMetadata(NId).getAllowedRegs();
216
assert(
NRegs
!= MRegs && "AllowedRegs can not be disjoint with itself");
218
if (
NRegs
< MRegs)
219
D.insert(IKey(
NRegs
, MRegs));
221
D.insert(IKey(MRegs,
NRegs
));
[
all
...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
RegAllocBase.h
81
void init(LiveIntervalUnion::Allocator &, unsigned
NRegs
);
RegAllocBasic.cpp
222
unsigned
NRegs
) {
223
NumRegs =
NRegs
;
225
static_cast<LiveIntervalUnion*>(malloc(sizeof(LiveIntervalUnion)*
NRegs
));
226
for (unsigned r = 0; r !=
NRegs
; ++r)
Completed in 4141 milliseconds