HomeSort by relevance Sort by last modified time
    Searched refs:SlotIndexes (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/lib/CodeGen/
LiveStackAnalysis.cpp 30 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
38 AU.addPreserved<SlotIndexes>();
39 AU.addRequiredTransitive<SlotIndexes>();
SlotIndexes.cpp 1 //===-- SlotIndexes.cpp - Slot Indexes Pass ------------------------------===//
10 #define DEBUG_TYPE "slotindexes"
12 #include "llvm/CodeGen/SlotIndexes.h"
21 char SlotIndexes::ID = 0;
22 INITIALIZE_PASS(SlotIndexes, "slotindexes",
28 void SlotIndexes::getAnalysisUsage(AnalysisUsage &au) const {
33 void SlotIndexes::releaseMemory() {
41 bool SlotIndexes::runOnMachineFunction(MachineFunction &fn) {
111 void SlotIndexes::renumberIndexes()
    [all...]
InterferenceCache.h 55 SlotIndexes *Indexes;
98 void clear(MachineFunction *mf, SlotIndexes *indexes, LiveIntervals *lis) {
153 void init(MachineFunction*, LiveIntervalUnion*, SlotIndexes*, LiveIntervals*,
MachineFunctionPrinterPass.cpp 17 #include "llvm/CodeGen/SlotIndexes.h"
46 MF.print(OS, getAnalysisIfAvailable<SlotIndexes>());
LiveRangeCalc.h 39 SlotIndexes *Indexes;
145 SlotIndexes*,
VirtRegMap.cpp 159 SlotIndexes *Indexes;
179 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
192 AU.addRequired<SlotIndexes>();
193 AU.addPreserved<SlotIndexes>();
207 Indexes = &getAnalysis<SlotIndexes>();
StackSlotColoring.cpp 92 AU.addRequired<SlotIndexes>();
93 AU.addPreserved<SlotIndexes>();
120 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
StackColoring.cpp 46 #include "llvm/CodeGen/SlotIndexes.h"
119 SlotIndexes *Indexes;
193 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
200 AU.addRequired<SlotIndexes>();
667 Indexes = &getAnalysis<SlotIndexes>();
Android.mk 95 SlotIndexes.cpp \
RegAllocBasic.cpp 143 AU.addPreserved<SlotIndexes>();
LiveIntervalAnalysis.cpp 51 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
75 AU.addPreserved<SlotIndexes>();
76 AU.addRequiredTransitive<SlotIndexes>();
115 Indexes = &getAnalysis<SlotIndexes>();
    [all...]
RegAllocPBQP.cpp 428 au.addRequired<SlotIndexes>();
429 au.addPreserved<SlotIndexes>();
InterferenceCache.cpp 27 SlotIndexes *indexes,
LiveRangeCalc.cpp 22 SlotIndexes *SI,
140 assert(Indexes && "Missing SlotIndexes");
166 assert(Indexes && "Missing SlotIndexes");
285 assert(Indexes && "Missing SlotIndexes");
StrongPHIElimination.cpp 200 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
210 AU.addRequired<SlotIndexes>();
211 AU.addPreserved<SlotIndexes>();
MachineBasicBlock.cpp 25 #include "llvm/CodeGen/SlotIndexes.h"
264 void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const {
706 SlotIndexes *Indexes = P->getAnalysisIfAvailable<SlotIndexes>();
759 // SlotIndexes.
834 // After splitting the edge and updating SlotIndexes, live intervals may be
    [all...]
RegAllocGreedy.cpp 74 SlotIndexes *Indexes;
334 AU.addRequired<SlotIndexes>();
335 AU.addPreserved<SlotIndexes>();
    [all...]
RegisterCoalescer.cpp 208 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
393 AU.addPreserved<SlotIndexes>();
808 // NewMI into SlotIndexes.
    [all...]
PHIElimination.cpp 119 AU.addPreserved<SlotIndexes>();
  /external/llvm/include/llvm/CodeGen/
VirtRegMap.h 30 class SlotIndexes;
LiveIntervalAnalysis.h 28 #include "llvm/CodeGen/SlotIndexes.h"
56 SlotIndexes* Indexes;
169 SlotIndexes *getSlotIndexes() const {
278 /// Requires MI and BundleStart to have SlotIndexes, and assumes
SlotIndexes.h 1 //===- llvm/CodeGen/SlotIndexes.h - Slot indexes representation -*- C++ -*-===//
35 /// SlotIndexes pass. It should not be used directly. See the
36 /// SlotIndex & SlotIndexes classes for the public interface to this
93 friend class SlotIndexes;
331 /// SlotIndexes pass.
334 class SlotIndexes : public MachineFunctionPass {
376 SlotIndexes() : MachineFunctionPass(ID) {
683 /// Like dangling pointers, access to dangling SlotIndexes can cause
LiveInterval.h 25 #include "llvm/CodeGen/SlotIndexes.h"
363 const SlotIndexes&) const;
430 bool isZeroLength(SlotIndexes *Indexes) const {
MachineBasicBlock.h 28 class SlotIndexes;
609 void print(raw_ostream &OS, SlotIndexes* = 0) const;
MachineFunction.h 277 void print(raw_ostream &OS, SlotIndexes* = 0) const;

Completed in 254 milliseconds

1 2