OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tracksliveness
(Results
1 - 8
of
8
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h
36
///
TracksLiveness
- True while register liveness is being tracked accurately.
39
bool
TracksLiveness
;
135
///
tracksLiveness
- Returns true when tracking register liveness accurately.
143
bool
tracksLiveness
() const { return
TracksLiveness
; }
150
void invalidateLiveness() {
TracksLiveness
= false; }
/external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp
23
: TM(TM), IsSSA(true),
TracksLiveness
(true) {
RegisterScavenging.cpp
82
assert(MRI->
tracksLiveness
() &&
MachineFunction.cpp
326
if (!RegInfo->
tracksLiveness
())
[
all
...]
PostRASchedulerList.cpp
208
MRI.
tracksLiveness
()) &&
TailDuplication.cpp
137
if (MRI->
tracksLiveness
() && TRI->trackLivenessAfterRegAlloc(MF))
[
all
...]
BranchFolding.cpp
189
if (MRI.
tracksLiveness
() && TRI->trackLivenessAfterRegAlloc(MF))
[
all
...]
MachineVerifier.cpp
855
if (MRI->
tracksLiveness
() && !MI->isDebugValue())
[
all
...]
Completed in 752 milliseconds