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

  /external/llvm/lib/Target/Hexagon/
HexagonMCInstLower.cpp 83 MCInst *MCI = new (AP.OutContext) MCInst;
84 MCI->setOpcode(MI->getOpcode());
85 assert(MCI->getOpcode() == static_cast<unsigned>(MI->getOpcode()) &&
86 "MCI opcode should have been set on construction");
140 MCI->addOperand(MCO);
142 AP.HexagonProcessInstruction(*MCI, *MI);
143 HexagonMCInstrInfo::extendIfNeeded(AP.OutContext, MCII, MCB, *MCI,
145 MCB.addOperand(MCOperand::createInst(MCI));
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCELFStreamer.cpp 57 MCInst *MCI = const_cast<MCInst *>(I.getInst());
59 if (HexagonMCInstrInfo::isDuplex(*MCII, *MCI)) {
60 MCInst *SubInst = const_cast<MCInst *>(MCI->getOperand(1).getInst());
63 HexagonMCInstrInfo::clampExtended(*MCII, getContext(), *MCI);
67 Extended = HexagonMCInstrInfo::isImmext(*MCI);
74 MCInst *MCI = const_cast<MCInst *>(I.getInst());
75 EmitSymbol(*MCI);
HexagonAsmBackend.cpp 223 MCInst &MCI = const_cast<MCInst &>(HexagonMCInstrInfo::instruction(
240 *RelaxTarget = &MCI;
250 bool Relaxable = isInstRelaxable(MCI);
281 *RelaxTarget = &MCI;
HexagonInstPrinter.cpp 49 void HexagonInstPrinter::setExtender(MCInst const &MCI) {
50 HasExtender = HexagonMCInstrInfo::isImmext(MCI);
60 MCInst const &MCI = *I.getInst();
61 if (HexagonMCInstrInfo::isDuplex(MII, MCI)) {
62 printInstruction(MCI.getOperand(1).getInst(), OS);
65 printInstruction(MCI.getOperand(0).getInst(), OS);
67 printInstruction(&MCI, OS);
68 setExtender(MCI);
HexagonMCChecker.cpp 57 void HexagonMCChecker::init(MCInst const& MCI) {
58 const MCInstrDesc& MCID = HexagonMCInstrInfo::getDesc(MCII, MCI);
64 if (MCI.getOperand(i).isReg()) {
65 unsigned R = MCI.getOperand(i).getReg();
67 if (HexagonMCInstrInfo::isPredicated(MCII, MCI) && isPredicateRegister(R)) {
70 isTrue = HexagonMCInstrInfo::isPredicatedTrue(MCII, MCI);
73 if (HexagonMCInstrInfo::isPredicatedNew(MCII, MCI))
109 HexagonMCInstrInfo::isPredicateLate(MCII, MCI))
118 unsigned R = MCI.getOperand(i).getReg(),
145 else if (HexagonMCInstrInfo::isPredicateLate(MCII, MCI) && isPredicateRegister(*SRI)
    [all...]
  /external/llvm/lib/Analysis/
Lint.cpp 284 MemCpyInst *MCI = cast<MemCpyInst>(&I);
286 visitMemoryReference(I, MCI->getDest(), MemoryLocation::UnknownSize,
287 MCI->getAlignment(), nullptr, MemRef::Write);
288 visitMemoryReference(I, MCI->getSource(), MemoryLocation::UnknownSize,
289 MCI->getAlignment(), nullptr, MemRef::Read);
296 dyn_cast<ConstantInt>(findValue(MCI->getLength(),
300 Assert(AA->alias(MCI->getSource(), Size, MCI->getDest(), Size) !=
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]

Completed in 215 milliseconds