Home
last modified time | relevance | path

Searched refs:MBB (Results 1 – 25 of 663) sorted by relevance

12345678910>>...27

/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLateEHPrepare.cpp75 MachineBasicBlock *MBB = WL.pop_back_val(); in getMatchingEHPad() local
76 if (!Visited.insert(MBB).second) in getMatchingEHPad()
78 if (MBB->isEHPad()) { in getMatchingEHPad()
79 if (EHPad && EHPad != MBB) in getMatchingEHPad()
81 EHPad = MBB; in getMatchingEHPad()
84 if (MBB == &MF->front()) in getMatchingEHPad()
86 for (auto *Pred : MBB->predecessors()) in getMatchingEHPad()
100 MachineBasicBlock *MBB = WL.pop_back_val(); in eraseDeadBBsAndChildren() local
101 if (Deleted.count(MBB) || !MBB->pred_empty()) in eraseDeadBBsAndChildren()
103 SmallVector<MachineBasicBlock *, 4> Succs(MBB->successors()); in eraseDeadBBsAndChildren()
[all …]
H A DWebAssemblyCFGSort.cpp81 static void maybeUpdateTerminator(MachineBasicBlock *MBB) { in maybeUpdateTerminator() argument
86 for (const MachineInstr &Term : MBB->terminators()) { in maybeUpdateTerminator()
96 MachineFunction *MF = MBB->getParent(); in maybeUpdateTerminator()
98 unsigned(MBB->getNumber() + 1) < MF->getNumBlockIDs() in maybeUpdateTerminator()
99 ? MF->getBlockNumbered(MBB->getNumber() + 1) in maybeUpdateTerminator()
103 MBB->updateTerminator(OriginalSuccessor); in maybeUpdateTerminator()
197 for (MachineBasicBlock &MBB : MF) { in sortBlocks()
198 unsigned N = MBB.pred_size(); in sortBlocks()
199 if (MachineLoop *L = MLI.getLoopFor(&MBB)) in sortBlocks()
200 if (L->getHeader() == &MBB) in sortBlocks()
[all …]
H A DWebAssemblyCFGStackify.cpp71 void placeBlockMarker(MachineBasicBlock &MBB);
72 void placeLoopMarker(MachineBasicBlock &MBB);
73 void placeTryMarker(MachineBasicBlock &MBB);
87 const MachineBasicBlock *MBB);
89 const MachineBasicBlock *MBB);
164 MachineBasicBlock *MBB) { in explicitlyBranchesTo() argument
167 if (MO.isMBB() && MO.getMBB() == MBB) in explicitlyBranchesTo()
179 getEarliestInsertPos(MachineBasicBlock *MBB, const Container &BeforeSet, in getEarliestInsertPos() argument
181 auto InsertPos = MBB->end(); in getEarliestInsertPos()
182 while (InsertPos != MBB->begin()) { in getEarliestInsertPos()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86PreTileConfig.cpp58 MachineBasicBlock *MBB = nullptr; member
62 MIRef(MachineBasicBlock *MBB) : MBB(MBB) { in MIRef()
63 for (auto I = MBB->begin(), E = MBB->end(); I != E && I->isPHI(); in MIRef()
68 : MI(MI), MBB(MI->getParent()), in MIRef()
69 Pos(std::distance(MBB->instr_begin(), ++MI->getIterator())) {} in MIRef()
70 MIRef(MachineInstr *MI, MachineBasicBlock *MBB) in MIRef()
71 : MI(MI), MBB(MBB), in MIRef()
72 Pos(std::distance(MBB->instr_begin(), ++MI->getIterator())) {} in MIRef()
73 MIRef(MachineInstr *MI, MachineBasicBlock *MBB, size_t Pos) in MIRef()
74 : MI(MI), MBB(MBB), Pos(Pos) {} in MIRef()
[all …]
H A DX86IndirectBranchTracking.cpp61 bool addENDBR(MachineBasicBlock &MBB, MachineBasicBlock::iterator I) const;
73 MachineBasicBlock &MBB, MachineBasicBlock::iterator I) const { in addENDBR() argument
80 if (I == MBB.end() || I->getOpcode() != EndbrOpcode) { in addENDBR()
81 BuildMI(MBB, I, MBB.findDebugLoc(I), TII->get(EndbrOpcode)); in addENDBR()
142 auto MBB = MF.begin(); in runOnMachineFunction() local
143 Changed |= addENDBR(*MBB, MBB->begin()); in runOnMachineFunction()
146 for (auto &MBB : MF) { in runOnMachineFunction() local
149 if (MBB.hasAddressTaken()) in runOnMachineFunction()
150 Changed |= addENDBR(MBB, MBB.begin()); in runOnMachineFunction()
152 for (MachineBasicBlock::iterator I = MBB.begin(); I != MBB.end(); ++I) { in runOnMachineFunction()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DBranchRelaxation.cpp67 unsigned postOffset(const MachineBasicBlock &MBB) const { in postOffset()
69 const Align Alignment = MBB.getAlignment(); in postOffset()
70 const Align ParentAlign = MBB.getParent()->getAlignment(); in postOffset()
102 uint64_t computeBlockSize(const MachineBasicBlock &MBB) const;
129 for (MachineBasicBlock &MBB : *MF) { in INITIALIZE_PASS()
130 const unsigned Num = MBB.getNumber(); in INITIALIZE_PASS()
131 assert(!Num || BlockInfo[PrevNum].postOffset(MBB) <= BlockInfo[Num].Offset); in INITIALIZE_PASS()
132 assert(BlockInfo[Num].Size == computeBlockSize(MBB)); in INITIALIZE_PASS()
141 for (auto &MBB : *MF) { in dumpBBs()
142 const BasicBlockInfo &BBI = BlockInfo[MBB.getNumber()]; in dumpBBs()
[all …]
H A DBranchFolding.cpp158 void BranchFolder::RemoveDeadBlock(MachineBasicBlock *MBB) { in RemoveDeadBlock() argument
159 assert(MBB->pred_empty() && "MBB must be dead!"); in RemoveDeadBlock()
160 LLVM_DEBUG(dbgs() << "\nRemoving MBB: " << *MBB); in RemoveDeadBlock()
162 MachineFunction *MF = MBB->getParent(); in RemoveDeadBlock()
164 while (!MBB->succ_empty()) in RemoveDeadBlock()
165 MBB->removeSuccessor(MBB->succ_end()-1); in RemoveDeadBlock()
168 TriedMerging.erase(MBB); in RemoveDeadBlock()
171 for (const MachineInstr &MI : *MBB) in RemoveDeadBlock()
176 MF->erase(MBB); in RemoveDeadBlock()
177 EHScopeMembership.erase(MBB); in RemoveDeadBlock()
[all …]
H A DReachingDefAnalysis.cpp51 void ReachingDefAnalysis::enterBasicBlock(MachineBasicBlock *MBB) { in enterBasicBlock() argument
52 unsigned MBBNumber = MBB->getNumber(); in enterBasicBlock()
66 if (MBB->pred_empty()) { in enterBasicBlock()
67 for (const auto &LI : MBB->liveins()) { in enterBasicBlock()
78 LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << ": entry\n"); in enterBasicBlock()
83 for (MachineBasicBlock *pred : MBB->predecessors()) { in enterBasicBlock()
103 void ReachingDefAnalysis::leaveBasicBlock(MachineBasicBlock *MBB) { in leaveBasicBlock() argument
105 unsigned MBBNumber = MBB->getNumber(); in leaveBasicBlock()
148 void ReachingDefAnalysis::reprocessBasicBlock(MachineBasicBlock *MBB) { in reprocessBasicBlock() argument
149 unsigned MBBNumber = MBB->getNumber(); in reprocessBasicBlock()
[all …]
H A DBasicBlockSections.cpp138 for (auto &MBB : MF) { in updateBranches() local
139 auto NextMBBI = std::next(MBB.getIterator()); in updateBranches()
140 auto *FTMBB = PreLayoutFallThroughs[MBB.getNumber()]; in updateBranches()
147 if (FTMBB && (MBB.isEndSection() || &*NextMBBI != FTMBB)) in updateBranches()
148 TII->insertUnconditionalBranch(MBB, FTMBB, MBB.findBranchDebugLoc()); in updateBranches()
152 if (MBB.isEndSection()) in updateBranches()
159 if (TII->analyzeBranch(MBB, TBB, FBB, Cond)) in updateBranches()
161 MBB.updateTerminator(FTMBB); in updateBranches()
209 for (auto &MBB : MF) { in assignSections() local
220 MBB.setSectionID(MBB.getNumber()); in assignSections()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVExpandPseudoInsts.cpp45 bool expandMBB(MachineBasicBlock &MBB);
46 bool expandMI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
48 bool expandCCOp(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
50 bool expandVSetVL(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI);
51 bool expandVMSET_VMCLR(MachineBasicBlock &MBB,
60 for (auto &MBB : MF) in runOnMachineFunction() local
61 Modified |= expandMBB(MBB); in runOnMachineFunction()
65 bool RISCVExpandPseudo::expandMBB(MachineBasicBlock &MBB) { in expandMBB() argument
68 MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end(); in expandMBB()
71 Modified |= expandMI(MBB, MBBI, NMBBI); in expandMBB()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DR600MachineCFGStructurizer.cpp182 int getSCCNum(MachineBasicBlock *MBB) const;
184 bool hasBackEdge(MachineBasicBlock *MBB) const;
185 bool isRetiredBlock(MachineBasicBlock *MBB) const;
186 bool isActiveLoophead(MachineBasicBlock *MBB) const;
191 bool needMigrateBlock(MachineBasicBlock *MBB) const;
195 MachineBasicBlock &MBB);
200 void insertInstrEnd(MachineBasicBlock *MBB, int NewOpcode,
202 MachineInstr *insertInstrBefore(MachineBasicBlock *MBB, int NewOpcode,
207 void insertCondBranchBefore(MachineBasicBlock *MBB,
216 static void setTrueBranch(MachineInstr *MI, MachineBasicBlock *MBB);
[all …]
H A DSILowerControlFlow.cpp105 void lowerInitExec(MachineBasicBlock *MBB, MachineInstr &MI);
112 bool removeMBBifRedundant(MachineBasicBlock &MBB);
120 skipIgnoreExecInstsTrivialSucc(MachineBasicBlock &MBB,
125 skipToUncondBrOrEnd(MachineBasicBlock &MBB, in skipToUncondBrOrEnd() argument
130 MachineBasicBlock::iterator End = MBB.end(); in skipToUncondBrOrEnd()
183 MachineBasicBlock *MBB = Worklist.pop_back_val(); in hasKill() local
185 if (MBB == End || !Visited.insert(MBB).second) in hasKill()
187 if (KillBlocks.contains(MBB)) in hasKill()
190 Worklist.append(MBB->succ_begin(), MBB->succ_end()); in hasKill()
209 MachineBasicBlock &MBB = *MI.getParent(); in emitIf() local
[all …]
H A DSILowerI1Copies.cpp38 static unsigned insertUndefLaneMask(MachineBasicBlock &MBB);
86 void buildMergeLaneMasks(MachineBasicBlock &MBB,
90 getSaluInsertionAtEnd(MachineBasicBlock &MBB) const;
142 bool isSource(MachineBasicBlock &MBB) const { in isSource()
143 return ReachableMap.find(&MBB)->second; in isSource()
160 for (MachineBasicBlock *MBB : IncomingBlocks) { in analyze()
161 if (MBB == &DefBlock) { in analyze()
166 ReachableMap.try_emplace(MBB, false); in analyze()
167 ReachableOrdered.push_back(MBB); in analyze()
171 if (TII->hasDivergentBranch(MBB) && PDT.dominates(&DefBlock, MBB)) in analyze()
[all …]
H A DAMDGPUSetWavePriority.cpp56 MachineInstr *BuildSetprioMI(MachineBasicBlock &MBB,
75 AMDGPUSetWavePriority::BuildSetprioMI(MachineBasicBlock &MBB, in BuildSetprioMI() argument
78 return BuildMI(MBB, I, DebugLoc(), TII->get(AMDGPU::S_SETPRIO)) in BuildSetprioMI()
84 static bool CanLowerPriorityDirectlyInPredecessors(const MachineBasicBlock &MBB, in CanLowerPriorityDirectlyInPredecessors() argument
86 for (const MachineBasicBlock *Pred : MBB.predecessors()) { in CanLowerPriorityDirectlyInPredecessors()
124 for (MachineBasicBlock *MBB : post_order(&MF)) { in runOnMachineFunction()
128 for (MachineInstr &MI : *MBB) { in runOnMachineFunction()
131 MBBInfo &Info = MBBInfos[MBB]; in runOnMachineFunction()
143 ++MBBInfos[MBB].NumVALUInstsAtStart; in runOnMachineFunction()
150 for (const MachineBasicBlock *Succ : MBB->successors()) { in runOnMachineFunction()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/LoongArch/
H A DLoongArchExpandPseudoInsts.cpp52 bool expandMBB(MachineBasicBlock &MBB);
53 bool expandMI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
55 bool expandPcalau12iInstPair(MachineBasicBlock &MBB,
60 bool expandLoadAddressPcrel(MachineBasicBlock &MBB,
63 bool expandLoadAddressGot(MachineBasicBlock &MBB,
66 bool expandLoadAddressTLSLE(MachineBasicBlock &MBB,
69 bool expandLoadAddressTLSIE(MachineBasicBlock &MBB,
72 bool expandLoadAddressTLSLD(MachineBasicBlock &MBB,
75 bool expandLoadAddressTLSGD(MachineBasicBlock &MBB,
78 bool expandFunctionCALL(MachineBasicBlock &MBB,
[all …]
H A DLoongArchExpandAtomicPseudoInsts.cpp47 bool expandMBB(MachineBasicBlock &MBB);
48 bool expandMI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
50 bool expandAtomicBinOp(MachineBasicBlock &MBB,
54 bool expandAtomicMinMaxOp(MachineBasicBlock &MBB,
58 bool expandAtomicCmpXchg(MachineBasicBlock &MBB,
69 for (auto &MBB : MF) in runOnMachineFunction() local
70 Modified |= expandMBB(MBB); in runOnMachineFunction()
74 bool LoongArchExpandAtomicPseudo::expandMBB(MachineBasicBlock &MBB) { in expandMBB() argument
77 MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end(); in expandMBB()
80 Modified |= expandMI(MBB, MBBI, NMBBI); in expandMBB()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64SpeculationHardening.cpp150 bool instrumentControlFlow(MachineBasicBlock &MBB,
152 bool endsWithCondControlFlow(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
157 void insertSPToRegTaintPropagation(MachineBasicBlock &MBB,
159 void insertRegToSPTaintPropagation(MachineBasicBlock &MBB,
162 void insertFullSpeculationBarrier(MachineBasicBlock &MBB,
166 bool slhLoads(MachineBasicBlock &MBB);
167 bool makeGPRSpeculationSafe(MachineBasicBlock &MBB,
170 bool lowerSpeculationSafeValuePseudos(MachineBasicBlock &MBB,
172 bool expandSpeculationSafeValue(MachineBasicBlock &MBB,
175 bool insertCSDB(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
[all …]
H A DAArch64BranchTargets.cpp42 void addBTI(MachineBasicBlock &MBB, bool CouldCall, bool CouldJump,
75 for (auto *MBB : JTE.MBBs) in runOnMachineFunction() local
76 JumpTableTargets.insert(MBB); in runOnMachineFunction()
80 for (MachineBasicBlock &MBB : MF) { in runOnMachineFunction()
91 if (&MBB == &*MF.begin()) in runOnMachineFunction()
96 if (MBB.hasAddressTaken() || JumpTableTargets.count(&MBB)) in runOnMachineFunction()
100 addBTI(MBB, CouldCall, CouldJump, HasWinCFI); in runOnMachineFunction()
108 void AArch64BranchTargets::addBTI(MachineBasicBlock &MBB, bool CouldCall, in addBTI() argument
111 << (CouldCall ? "c" : "") << " to " << MBB.getName() in addBTI()
115 MBB.getParent()->getSubtarget().getInstrInfo()); in addBTI()
[all …]
H A DAArch64LowerHomogeneousPrologEpilog.cpp58 bool runOnMBB(MachineBasicBlock &MBB);
59 bool runOnMI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
65 bool lowerProlog(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
70 bool lowerEpilog(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
191 MachineBasicBlock *MBB = MF.CreateMachineBasicBlock(); in createFrameHelperMachineFunction() local
192 MF.insert(MF.begin(), MBB); in createFrameHelperMachineFunction()
198 static void emitStore(MachineFunction &MF, MachineBasicBlock &MBB, in emitStore() argument
210 MachineInstrBuilder MIB = BuildMI(MBB, Pos, DebugLoc(), TII.get(Opc)); in emitStore()
221 static void emitLoad(MachineFunction &MF, MachineBasicBlock &MBB, in emitLoad() argument
233 MachineInstrBuilder MIB = BuildMI(MBB, Pos, DebugLoc(), TII.get(Opc)); in emitLoad()
[all …]
H A DAArch64ExpandPseudoInsts.cpp66 bool expandMBB(MachineBasicBlock &MBB);
67 bool expandMI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
69 bool expandMOVImm(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
72 bool expand_DestructiveOp(MachineInstr &MI, MachineBasicBlock &MBB,
74 bool expandCMP_SWAP(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
78 bool expandCMP_SWAP_128(MachineBasicBlock &MBB,
81 bool expandSetTagLoop(MachineBasicBlock &MBB,
84 bool expandSVESpillFill(MachineBasicBlock &MBB,
87 bool expandCALL_RVMARKER(MachineBasicBlock &MBB,
89 bool expandCALL_BTI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI);
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsReturnProtectorLowering.cpp33 MachineFunction &MF, MachineBasicBlock &MBB, GlobalVariable *cookie) const { in insertReturnProtectorPrologue() argument
35 MachineBasicBlock::instr_iterator MI = MBB.instr_begin(); in insertReturnProtectorPrologue()
36 DebugLoc MBBDL = MBB.findDebugLoc(MI); in insertReturnProtectorPrologue()
46 if (!MBB.isLiveIn(TempReg1)) in insertReturnProtectorPrologue()
47 MBB.addLiveIn(TempReg1); in insertReturnProtectorPrologue()
48 if (!MBB.isLiveIn(TempReg2)) in insertReturnProtectorPrologue()
49 MBB.addLiveIn(TempReg2); in insertReturnProtectorPrologue()
53 if (!MBB.isLiveIn(Mips::T9_64)) in insertReturnProtectorPrologue()
54 MBB.addLiveIn(Mips::T9_64); in insertReturnProtectorPrologue()
58 BuildMI(MBB, MI, MBBDL, TII->get(Mips::LUi64), TempReg1) in insertReturnProtectorPrologue()
[all …]
H A DMipsSEFrameLowering.cpp75 bool expandInstr(MachineBasicBlock &MBB, Iter I);
76 void expandLoadCCond(MachineBasicBlock &MBB, Iter I);
77 void expandStoreCCond(MachineBasicBlock &MBB, Iter I);
78 void expandLoadACC(MachineBasicBlock &MBB, Iter I, unsigned RegSize);
79 void expandStoreACC(MachineBasicBlock &MBB, Iter I, unsigned MFHiOpc,
81 bool expandCopy(MachineBasicBlock &MBB, Iter I);
82 bool expandCopyACC(MachineBasicBlock &MBB, Iter I, unsigned MFHiOpc,
84 bool expandBuildPairF64(MachineBasicBlock &MBB,
86 bool expandExtractElementF64(MachineBasicBlock &MBB,
107 for (auto &MBB : MF) { in expand() local
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AVR/
H A DAVRExpandPseudoInsts.cpp52 bool expandMBB(Block &MBB);
53 bool expandMI(Block &MBB, BlockIt MBBI);
54 template <unsigned OP> bool expand(Block &MBB, BlockIt MBBI);
56 MachineInstrBuilder buildMI(Block &MBB, BlockIt MBBI, unsigned Opcode) { in buildMI() argument
57 return BuildMI(MBB, MBBI, MBBI->getDebugLoc(), TII->get(Opcode)); in buildMI()
60 MachineInstrBuilder buildMI(Block &MBB, BlockIt MBBI, unsigned Opcode, in buildMI() argument
62 return BuildMI(MBB, MBBI, MBBI->getDebugLoc(), TII->get(Opcode), DstReg); in buildMI()
65 MachineRegisterInfo &getRegInfo(Block &MBB) { in getRegInfo() argument
66 return MBB.getParent()->getRegInfo(); in getRegInfo()
69 bool expandArith(unsigned OpLo, unsigned OpHi, Block &MBB, BlockIt MBBI);
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCReturnProtectorLowering.cpp34 MachineFunction &MF, MachineBasicBlock &MBB, GlobalVariable *cookie) const { in insertReturnProtectorPrologue() argument
36 MachineBasicBlock::instr_iterator MI = MBB.instr_begin(); in insertReturnProtectorPrologue()
37 DebugLoc MBBDL = MBB.findDebugLoc(MI); in insertReturnProtectorPrologue()
57 if (!MBB.isLiveIn(LRReg)) in insertReturnProtectorPrologue()
58 MBB.addLiveIn(LRReg); in insertReturnProtectorPrologue()
65 BuildMI(MBB, MI, MBBDL, TII->get(MFLR), LRReg); in insertReturnProtectorPrologue()
67 BuildMI(MBB, MI, MBBDL, TII->get(PPC::ADDIStocHA8), REG) in insertReturnProtectorPrologue()
70 BuildMI(MBB, MI, MBBDL, TII->get(PPC::LD), REG) in insertReturnProtectorPrologue()
74 BuildMI(MBB, MI, MBBDL, TII->get(XOR), REG) in insertReturnProtectorPrologue()
82 BuildMI(MBB, MI, MBBDL, TII->get(PPC::RETGUARD_LOAD_PC), REG) in insertReturnProtectorPrologue()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/M68k/
H A DM68kFrameLowering.cpp137 static unsigned findDeadCallerSavedReg(MachineBasicBlock &MBB, in findDeadCallerSavedReg() argument
140 const MachineFunction *MF = MBB.getParent(); in findDeadCallerSavedReg()
146 if (MBBI == MBB.end()) in findDeadCallerSavedReg()
176 static bool isRegLiveIn(MachineBasicBlock &MBB, unsigned Reg) { in isRegLiveIn() argument
177 return llvm::any_of(MBB.liveins(), in isRegLiveIn()
197 void M68kFrameLowering::BuildStackAlignAND(MachineBasicBlock &MBB, in BuildStackAlignAND() argument
210 BuildMI(MBB, MBBI, DL, TII.get(MovOp), Tmp) in BuildStackAlignAND()
214 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(AndOp), Tmp) in BuildStackAlignAND()
222 BuildMI(MBB, MBBI, DL, TII.get(MovOp), Reg) in BuildStackAlignAND()
228 MachineFunction &MF, MachineBasicBlock &MBB, in eliminateCallFramePseudoInstr() argument
[all …]

12345678910>>...27