Lines Matching refs:mallocMBB
35127 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB); in EmitLoweredSegAlloca() local
35146 MF->insert(MBBIter, mallocMBB); in EmitLoweredSegAlloca()
35161 BuildMI(BB, DL, TII->get(X86::JCC_1)).addMBB(mallocMBB).addImm(X86::COND_G); in EmitLoweredSegAlloca()
35175 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI) in EmitLoweredSegAlloca()
35177 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32)) in EmitLoweredSegAlloca()
35183 BuildMI(mallocMBB, DL, TII->get(X86::MOV32rr), X86::EDI) in EmitLoweredSegAlloca()
35185 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32)) in EmitLoweredSegAlloca()
35191 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg) in EmitLoweredSegAlloca()
35193 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg); in EmitLoweredSegAlloca()
35194 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32)) in EmitLoweredSegAlloca()
35201 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg) in EmitLoweredSegAlloca()
35204 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg) in EmitLoweredSegAlloca()
35206 BuildMI(mallocMBB, DL, TII->get(X86::JMP_1)).addMBB(continueMBB); in EmitLoweredSegAlloca()
35210 BB->addSuccessor(mallocMBB); in EmitLoweredSegAlloca()
35211 mallocMBB->addSuccessor(continueMBB); in EmitLoweredSegAlloca()
35218 .addMBB(mallocMBB) in EmitLoweredSegAlloca()