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

  /external/llvm/lib/Target/Hexagon/
HexagonMCInstLower.cpp 100 MCInst *MCI = new (AP.OutContext) MCInst;
101 MCI->setOpcode(MI->getOpcode());
102 assert(MCI->getOpcode() == static_cast<unsigned>(MI->getOpcode()) &&
103 "MCI opcode should have been set on construction");
165 MCI->addOperand(MCO);
167 AP.HexagonProcessInstruction(*MCI, *MI);
168 HexagonMCInstrInfo::extendIfNeeded(AP.OutContext, MCII, MCB, *MCI);
169 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);
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);
HexagonAsmBackend.cpp 563 MCInst &MCI = const_cast<MCInst &>(HexagonMCInstrInfo::instruction(
565 bool Relaxable = isInstRelaxable(MCI);
583 *RelaxTarget = &MCI;
621 *RelaxTarget = &MCI;
HexagonMCChecker.cpp 56 void HexagonMCChecker::init(MCInst const& MCI) {
57 const MCInstrDesc& MCID = HexagonMCInstrInfo::getDesc(MCII, MCI);
63 if (MCI.getOperand(i).isReg()) {
64 unsigned R = MCI.getOperand(i).getReg();
66 if (HexagonMCInstrInfo::isPredicated(MCII, MCI) && isPredicateRegister(R)) {
69 isTrue = HexagonMCInstrInfo::isPredicatedTrue(MCII, MCI);
72 if (HexagonMCInstrInfo::isPredicatedNew(MCII, MCI))
108 HexagonMCInstrInfo::isPredicateLate(MCII, MCI))
117 unsigned R = MCI.getOperand(i).getReg(),
149 else if (HexagonMCInstrInfo::isPredicateLate(MCII, MCI) && isPredicateRegister(*SRI)
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 208 MachineCodeInfo MCI;
212 EE->runJITOnFunction(F, &MCI);
222 EXPECT_EQ(MCI.address(), Listener.EmittedEvents[0].Code);
223 EXPECT_EQ(MCI.size(), Listener.EmittedEvents[0].Size);
  /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/swiftshader/third_party/LLVM/lib/Analysis/
Lint.cpp 270 MemCpyInst *MCI = cast<MemCpyInst>(&I);
272 visitMemoryReference(I, MCI->getDest(), AliasAnalysis::UnknownSize,
273 MCI->getAlignment(), 0,
275 visitMemoryReference(I, MCI->getSource(), AliasAnalysis::UnknownSize,
276 MCI->getAlignment(), 0,
284 dyn_cast<ConstantInt>(findValue(MCI->getLength(),
288 Assert1(AA->alias(MCI->getSource(), Size, MCI->getDest(), Size) !=
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JIT.cpp 591 void JIT::runJITOnFunction(Function *F, MachineCodeInfo *MCI) {
595 MachineCodeInfo *const MCI;
597 MCIListener(MachineCodeInfo *mci) : MCI(mci) {}
601 MCI->setAddress(Code);
602 MCI->setSize(Size);
605 MCIListener MCIL(MCI);
606 if (MCI)
611 if (MCI)
    [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp     [all...]
X86FastISel.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86FastISel.cpp     [all...]

Completed in 691 milliseconds