OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isAllocatable
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h
470
///
isAllocatable
- Returns true when PhysReg belongs to an allocatable
476
bool
isAllocatable
(unsigned PhysReg) const {
/external/llvm/include/llvm/Target/
TargetRegisterInfo.h
98
///
isAllocatable
- Return true if this register class may be used to create
100
bool
isAllocatable
() const { return MC->
isAllocatable
(); }
[
all
...]
/external/llvm/include/llvm/MC/
MCRegisterInfo.h
97
///
isAllocatable
- Return true if this register class may be used to create
99
bool
isAllocatable
() const { return Allocatable; }
/external/llvm/lib/CodeGen/
MachineVerifier.cpp
188
bool
isAllocatable
(unsigned Reg) {
189
return Reg < TRI->getNumRegs() && MRI->
isAllocatable
(Reg);
505
if (
isAllocatable
(reg) && !MBB->isLandingPad() &&
[
all
...]
Completed in 47 milliseconds