HomeSort by relevance Sort by last modified time
    Searched defs:LiveIn (Results 1 - 11 of 11) sorted by null

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveRangeCalc.h 92 /// LiveIn - Work list of blocks where the live-in value has yet to be
96 SmallVector<LiveInBlock, 16> LiveIn;
100 /// to be live-in are added to LiveIn. If a unique reaching def is found,
110 /// blocks in LiveIn. Create PHI-def values as required to preserve SSA form.
118 /// updateLiveIns - Add liveness as specified in the LiveIn vector, using VNI
119 /// as a wildcard value for LiveIn entries without a value.
209 LiveIn.push_back(LiveInBlock(LI, DomNode, Kill));
SplitKit.h 74 bool LiveIn; ///< Current reg is live in.
  /external/llvm/lib/CodeGen/
LiveRangeCalc.h 98 /// LiveIn - Work list of blocks where the live-in value has yet to be
102 SmallVector<LiveInBlock, 16> LiveIn;
111 /// live in are added to the LiveIn array, and the function returns false.
118 /// blocks in LiveIn. Create PHI-def values as required to preserve SSA form.
124 /// Transfer information from the LiveIn vector to the live ranges and update
233 LiveIn.push_back(LiveInBlock(LR, DomNode, Kill));
SafeStackColoring.h 41 BitVector LiveIn;
SplitKit.h 107 bool LiveIn; ///< Current reg is live in.
MIRPrinter.cpp 232 yaml::MachineFunctionLiveIn LiveIn;
233 printReg(I->first, LiveIn.Register, TRI);
235 printReg(I->second, LiveIn.VirtualRegister, TRI);
236 MF.LiveIns.push_back(LiveIn);
    [all...]
MachineCSE.cpp 624 // livein list.
626 unsigned LiveIn = PhysDefs.pop_back_val();
627 if (!MBB->isLiveIn(LiveIn))
628 MBB->addLiveIn(LiveIn);
StackColoring.cpp 261 BitVector LiveIn;
405 dumpBV("LIVE_IN", BlockInfo.LiveIn);
640 // Compute LiveIn by unioning together the LiveOut sets of all preds.
660 // Update block LiveIn set, noting whether it has changed.
661 if (LocalLiveIn.test(BlockInfo.LiveIn)) {
663 BlockInfo.LiveIn |= LocalLiveIn;
710 for (int pos = MBBLiveness.LiveIn.find_first(); pos != -1;
711 pos = MBBLiveness.LiveIn.find_next(pos)) {
    [all...]
MachineBasicBlock.cpp 372 bool LiveIn = isLiveIn(PhysReg);
378 if (LiveIn)
391 if (!LiveIn)
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFLiveness.cpp 626 RefMap LiveIn;
627 traverse(&MF.front(), LiveIn);
680 BitVector LiveIn(TRI.getNumRegs()), Live(TRI.getNumRegs());
681 CopyLiveIns(B, LiveIn);
775 void Liveness::traverse(MachineBasicBlock *B, RefMap &LiveIn) {
776 // The LiveIn map, for each (physical) register, contains the set of live
807 LiveIn[S.first].insert(S.second.begin(), S.second.end());
815 dbgs() << "\n LiveIn: " << Print<RefMap>(LiveIn, DFG);
822 LiveIn[S.first].insert(S.second.begin(), S.second.end())
    [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp 148 MapVector<BasicBlock *, SetVector<Value *>> LiveIn;
    [all...]

Completed in 444 milliseconds