OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LivePhysRegs
(Results
1 - 8
of
8
) sorted by null
/external/llvm/include/llvm/CodeGen/
LivePhysRegs.h
1
//===- llvm/CodeGen/
LivePhysRegs
.h - Live Physical Register Set -*- C++ -*-===//
10
// This file implements the
LivePhysRegs
utility for tracking liveness of
43
class
LivePhysRegs
{
47
LivePhysRegs
(const
LivePhysRegs
&) LLVM_DELETED_FUNCTION;
48
LivePhysRegs
&operator=(const
LivePhysRegs
&) LLVM_DELETED_FUNCTION;
50
/// \brief Constructs a new empty
LivePhysRegs
set.
51
LivePhysRegs
() : TRI(nullptr), LiveRegs() {}
53
/// \brief Constructs and initialize an empty
LivePhysRegs
set
[
all
...]
StackMapLivenessAnalysis.h
19
#include "llvm/CodeGen/
LivePhysRegs
.h"
36
LivePhysRegs
LiveRegs;
/external/llvm/lib/CodeGen/
LivePhysRegs.cpp
1
//===---
LivePhysRegs
.cpp - Live Physical Register Set --------------------===//
10
// This file implements the
LivePhysRegs
utility for tracking liveness of
16
#include "llvm/CodeGen/
LivePhysRegs
.h"
24
void
LivePhysRegs
::removeRegsInMask(const MachineOperand &MO) {
36
void
LivePhysRegs
::stepBackward(const MachineInstr &MI) {
65
void
LivePhysRegs
::stepForward(const MachineInstr &MI) {
92
void
LivePhysRegs
::print(raw_ostream &OS) const {
110
void
LivePhysRegs
::dump() const {
DeadMachineInstructionElim.cpp
36
BitVector
LivePhysRegs
;
73
if (
LivePhysRegs
.test(Reg) || MRI->isReserved(Reg))
104
LivePhysRegs
= MRI->getReservedRegs();
106
// Add live-ins from sucessors to
LivePhysRegs
. Normally, physregs are not
113
LivePhysRegs
.set(*LI);
156
LivePhysRegs
.reset(*SR);
160
LivePhysRegs
.clearBitsNotInMask(MO.getRegMask());
171
LivePhysRegs
.set(*AI);
182
LivePhysRegs
.clear();
StackMapLivenessAnalysis.cpp
123
for (
LivePhysRegs
::const_iterator RI = LiveRegs.begin(), RE = LiveRegs.end();
Android.mk
40
LivePhysRegs
.cpp \
IfConversion.cpp
19
#include "llvm/CodeGen/
LivePhysRegs
.h"
167
LivePhysRegs
Redefs;
168
LivePhysRegs
DontKill;
[
all
...]
ExecutionDepsFix.cpp
25
#include "llvm/CodeGen/
LivePhysRegs
.h"
145
LivePhysRegs
LiveRegSet;
Completed in 406 milliseconds