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

  /external/llvm/lib/Target/Mips/
MipsAnalyzeImmediate.h 54 /// return it in Insts.
55 void GetShortestSeq(InstSeqLs &SeqLs, InstSeq &Insts);
59 InstSeq Insts;
  /external/llvm/include/llvm/MC/MCAnalysis/
MCAtom.h 126 InstListTy Insts;
138 const_iterator begin() const { return Insts.begin(); }
139 const_iterator end() const { return Insts.end(); }
141 const MCDecodedInst &back() const { return Insts.back(); }
142 const MCDecodedInst &at(size_t n) const { return Insts.at(n); }
143 size_t size() const { return Insts.size(); }
MCFunction.h 35 const MCTextAtom *Insts;
40 MCBasicBlock(const MCTextAtom &Insts, MCFunction *Parent);
51 const MCTextAtom *getInsts() const { return Insts; }
75 /// \brief Split block, mirrorring NewAtom = Insts->split(..).
78 /// \p SplitBB The result of splitting Insts, a basic block directly following
100 /// \brief Create an MCBasicBlock backed by Insts and add it to this function.
101 /// \param Insts Sequence of straight-line code backing the basic block.
103 MCBasicBlock &createBlock(const MCTextAtom &Insts);
  /external/llvm/lib/Target/AArch64/
AArch64AddressTypePromotion.cpp 381 Instructions &Insts = Entry.second;
383 for (Instruction *Inst : Insts) {
AArch64A57FPLoadBalancing.cpp 179 std::set<MachineInstr*> Insts;
193 Insts.insert(MI);
206 Insts.insert(MI);
210 bool contains(MachineInstr *MI) { return Insts.count(MI) > 0; }
214 return Insts.size();
  /external/llvm/lib/Target/Sparc/
SparcJITInfo.cpp 126 SmallVectorImpl<uint32_t> &Insts) {
131 Insts.push_back(JMP_INST(0, LO10(Addr), scratch));
132 Insts.push_back(NOP_INST);
140 Insts.push_back(SETHI_INST(HI22(Addr), scratch));
141 Insts.push_back(JMP_INST(scratch, LO10(Addr), scratch));
142 Insts.push_back(SUB_INST(scratch, 4, scratch));
151 Insts.push_back(SETHI_INST(HIX22(Addr), scratch));
152 Insts.push_back(XOR_INST(scratch, LOX10(Addr), scratch));
153 Insts.push_back(JMP_INST(scratch, 0, scratch));
154 Insts.push_back(SUB_INST(scratch, 8, scratch))
    [all...]
  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 236 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
284 for (std::vector<Record*>::iterator IC = Insts.begin(), EC = Insts.end();
PseudoLoweringEmitter.cpp 279 std::vector<Record*> Insts;
284 Insts.push_back(I->second);
288 for (unsigned i = 0, e = Insts.size(); i != e; ++i)
289 evaluateExpansion(Insts[i]);
CodeGenTarget.cpp 273 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
274 if (Insts.size() <= 2)
278 for (unsigned i = 0, e = Insts.size(); i != e; ++i)
279 Instructions[Insts[i]] = new CodeGenInstruction(Insts[i]);
284 const DenseMap<const Record*, CodeGenInstruction*> &Insts,
289 I = Insts.find(Rec);
290 if (!Rec || I == Insts.end())
305 const DenseMap<const Record*, CodeGenInstruction*> &Insts = getInstructions();
307 const CodeGenInstruction *Instr = GetInstByName(*p, Insts, Records)
    [all...]
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 380 &Insts) {
387 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
388 assert(!isa<TerminatorInst>(Insts[i]));
389 Instructions.insert(cast<Instruction>(VMap[Insts[i]]));
422 Insts.clear();
425 Insts.push_back(*I);
529 std::vector<const Instruction*> Insts;
537 Insts.push_back(I);
539 ReduceCrashingInstructions(BD, TestFn).reduceList(Insts, Error);
  /external/llvm/lib/MC/MCAnalysis/
MCModuleYAML.cpp 104 std::vector<Inst> Insts;
187 IO.mapRequired("Content", A.Insts);
317 A.Insts.resize(InstCount);
320 A.Insts[i].Opcode = MCDI.Inst.getOpcode();
321 A.Insts[i].Size = MCDI.Size;
323 A.Insts[i].Operands.resize(OpCount);
325 A.Insts[i].Operands[oi].MCOp = MCDI.Inst.getOperand(oi);
377 for (InstIt II = AI->Insts.begin(), IE = AI->Insts.end(); II != IE;
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 64 Instructions Insts;
219 unsigned size() const { return (unsigned)Insts.size(); }
220 bool empty() const { return Insts.empty(); }
222 MachineInstr &instr_front() { return Insts.front(); }
223 MachineInstr &instr_back() { return Insts.back(); }
224 const MachineInstr &instr_front() const { return Insts.front(); }
225 const MachineInstr &instr_back() const { return Insts.back(); }
227 MachineInstr &front() { return Insts.front(); }
229 const MachineInstr &front() const { return Insts.front(); }
232 instr_iterator instr_begin() { return Insts.begin();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 301 UnswitchedValsMap &Insts = OldLoopProps.UnswitchedVals;
315 for (UnswitchedValsIt I = Insts.begin(); I != Insts.end(); ++I) {
    [all...]
ScalarReplAggregates.cpp     [all...]
SROA.cpp 812 AllocaPromoter(const SmallVectorImpl<Instruction *> &Insts, SSAUpdater &S,
814 : LoadAndStorePromoter(Insts, S), AI(AI), DIB(DIB) {}
816 void run(const SmallVectorImpl<Instruction*> &Insts) {
827 LoadAndStorePromoter::run(Insts);
838 const SmallVectorImpl<Instruction*> &Insts) const override {
    [all...]

Completed in 675 milliseconds