Lines Matching refs:mallocMBB
28632 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB); in EmitLoweredSegAlloca() local
28651 MF->insert(MBBIter, mallocMBB); in EmitLoweredSegAlloca()
28666 BuildMI(BB, DL, TII->get(X86::JG_1)).addMBB(mallocMBB); in EmitLoweredSegAlloca()
28680 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI) in EmitLoweredSegAlloca()
28682 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32)) in EmitLoweredSegAlloca()
28688 BuildMI(mallocMBB, DL, TII->get(X86::MOV32rr), X86::EDI) in EmitLoweredSegAlloca()
28690 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32)) in EmitLoweredSegAlloca()
28696 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg) in EmitLoweredSegAlloca()
28698 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg); in EmitLoweredSegAlloca()
28699 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32)) in EmitLoweredSegAlloca()
28706 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg) in EmitLoweredSegAlloca()
28709 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg) in EmitLoweredSegAlloca()
28711 BuildMI(mallocMBB, DL, TII->get(X86::JMP_1)).addMBB(continueMBB); in EmitLoweredSegAlloca()
28715 BB->addSuccessor(mallocMBB); in EmitLoweredSegAlloca()
28716 mallocMBB->addSuccessor(continueMBB); in EmitLoweredSegAlloca()
28723 .addMBB(mallocMBB) in EmitLoweredSegAlloca()