HomeSort by: relevance | last modified time | path
    Searched refs:MCP (Results 1 - 23 of 23) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 4609 typedef MachineCombinerPattern MCP;
4617 setFound(AArch64::MADDWrrr, 1, AArch64::WZR, MCP::MULADDW_OP1);
4618 setFound(AArch64::MADDWrrr, 2, AArch64::WZR, MCP::MULADDW_OP2);
4621 setFound(AArch64::MADDXrrr, 1, AArch64::XZR, MCP::MULADDX_OP1);
4622 setFound(AArch64::MADDXrrr, 2, AArch64::XZR, MCP::MULADDX_OP2);
4625 setFound(AArch64::MADDWrrr, 1, AArch64::WZR, MCP::MULSUBW_OP1);
4626 setFound(AArch64::MADDWrrr, 2, AArch64::WZR, MCP::MULSUBW_OP2);
4629 setFound(AArch64::MADDXrrr, 1, AArch64::XZR, MCP::MULSUBX_OP1);
4630 setFound(AArch64::MADDXrrr, 2, AArch64::XZR, MCP::MULSUBX_OP2);
4633 setFound(AArch64::MADDWrrr, 1, AArch64::WZR, MCP::MULADDWI_OP1)
    [all...]
AArch64ExpandPseudoInsts.cpp 975 MachineConstantPool *MCP = MF.getConstantPool();
976 unsigned CPIdx = MCP->getConstantPoolIndex(BA, Align(8));
AArch64FastISel.cpp 429 unsigned CPI = MCP.getConstantPoolIndex(cast<Constant>(CFP), Alignment);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMAsmPrinter.h 41 /// MCP - Keep a pointer to constantpool entries of the current
43 const MachineConstantPool *MCP;
ARMConstantIslandPass.cpp 210 MachineConstantPool *MCP;
368 MCP = mf.getConstantPool();
372 << MCP->getConstants().size() << " CP entries, aligned to "
373 << MCP->getConstantPoolAlign().value() << " bytes *****\n");
414 if (!MCP->isEmpty())
518 const Align MaxAlign = MCP->getConstantPoolAlign();
541 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants();
700 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index.");
701 return MCP->getConstants()[CPI].getAlign();
ARMAsmPrinter.cpp 58 MCP(nullptr), InConstantPool(false), OptimizationGoals(-1) {}
118 MCP = MF.getConstantPool();
1257 const MachineConstantPool *MCP = MF.getConstantPool();
1258 if (CPI >= MCP->getConstants().size())
1263 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI];
1674 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
ARMBaseInstrInfo.cpp 1736 MachineConstantPool *MCP = MF.getConstantPool();
1739 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1774 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlign());
1864 const MachineConstantPool *MCP = MF->getConstantPool();
1867 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1868 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
ARMFrameLowering.cpp 2551 MachineConstantPool *MCP = MF.getConstantPool();
2552 unsigned CPI = MCP->getConstantPoolIndex(NewCPV, Align(4));
ARMExpandPseudoInsts.cpp 2328 MachineConstantPool *MCP = MF->getConstantPool();
2337 .addConstantPoolIndex(MCP->getConstantPoolIndex(CPV, Align(4)));
2406 MachineConstantPool *MCP = MBB.getParent()->getConstantPool();
2424 .addConstantPoolIndex(MCP->getConstantPoolIndex(CPV, Align(4)));
ARMFastISel.cpp 442 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Alignment);
502 unsigned Idx = MCP.getConstantPoolIndex(C, Alignment);
570 unsigned Idx = MCP.getConstantPoolIndex(CPV, Alignment);
ARMISelLowering.cpp 10060 MachineConstantPool *MCP = MF->getConstantPool();
10071 unsigned CPI = MCP->getConstantPoolIndex(CPV, Align(4));
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsAsmPrinter.h 58 /// MCP - Keep a pointer to constantpool entries of the current
60 const MachineConstantPool *MCP = nullptr;
MipsConstantIslandPass.cpp 345 MachineConstantPool *MCP = nullptr;
438 MCP = mf.getConstantPool();
468 if (!MCP->isEmpty())
532 const Align MaxAlign = MCP->getConstantPoolAlign();
551 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants();
624 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index.");
625 return MCP->getConstants()[CPI].getAlign();
1653 unsigned index = MCP->getConstantPoolIndex(C, Align(4));
MipsAsmPrinter.cpp 93 MCP = MF.getConstantPool();
227 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
FastISel.h 206 MachineConstantPool &MCP;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 423 MachineConstantPool *MCP = MF->getConstantPool();
425 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Alignment);
427 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Alignment);
FastISel.cpp 1813 MFI(FuncInfo.MF->getFrameInfo()), MCP(*FuncInfo.MF->getConstantPool()),
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 551 MachineConstantPool *MCP = MF->getConstantPool();
588 unsigned ConstPoolIdx = MCP->getConstantPoolIndex(NegC, Alignment);
742 MachineConstantPool *MCP = MF->getConstantPool();
754 return (MCP->getConstants())[MO2.getIndex()].Val.ConstVal;
PPCFastISel.cpp 2006 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Alignment);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 1996 /// representations of the constants in the constant pool MCP. This is
2000 const MachineConstantPool *MCP = MF->getConstantPool();
2001 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
AArch64InstructionSelector.cpp 4010 MachineConstantPool *MCP = MF.getConstantPool();
4011 return MCP->getConstantPoolIndex(CPVal, Alignment);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstrInfo.cpp 6114 MachineConstantPool &MCP = *MF.getConstantPool();
6142 unsigned CPI = MCP.getConstantPoolIndex(C, Alignment);
X86FastISel.cpp 3770 unsigned CPI = MCP.getConstantPoolIndex(CFP, Alignment);

Completed in 81 milliseconds