Searched refs:Instructions (Results 1 - 25 of 40) sorted by relevance

12

/external/llvm/tools/llvm-objdump/
H A DMCFunction.cpp35 std::vector<MCDecodedInst> Instructions; local
57 Instructions.push_back(MCDecodedInst(Index, Size, Inst));
92 std::sort(Instructions.begin(), Instructions.end());
95 unsigned ii = 0, ie = Instructions.size();
102 if (Instructions[ii].Address < *spi ||
103 Instructions[ii].Address >= BlockEnd)
105 BB.addInst(Instructions[ii]);
/external/llvm/utils/TableGen/
H A DCodeGenTarget.h68 mutable DenseMap<const Record*, CodeGenInstruction*> Instructions; member in class:llvm::CodeGenTarget
150 if (Instructions.empty()) ReadInstructions();
151 return Instructions;
156 if (Instructions.empty()) ReadInstructions();
158 Instructions.find(InstRec);
159 assert(I != Instructions.end() && "Not an instruction");
H A DAsmWriterEmitter.cpp290 std::vector<AsmWriterInst> Instructions;
296 Instructions.push_back(
308 for (unsigned i = 0, e = Instructions.size(); i != e; ++i)
309 CGIAWIMap.insert(std::make_pair(Instructions[i].CGI, &Instructions[i]));
478 for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
480 AsmWriterInst &Inst = Instructions[i];
482 Instructions.erase(Instructions.begin()+i);
490 std::reverse(Instructions
[all...]
H A DCodeGenDAGPatterns.h680 std::map<Record*, DAGInstruction, RecordPtrCmp> Instructions;
774 assert(Instructions.count(R) && "Unknown instruction!");
775 return Instructions.find(R)->second;
/external/llvm/lib/MC/
H A DMCStreamer.cpp245 CurFrame->Instructions.push_back(Instruction);
256 CurFrame->Instructions.push_back(Instruction);
267 CurFrame->Instructions.push_back(Instruction);
278 CurFrame->Instructions.push_back(Instruction);
289 CurFrame->Instructions.push_back(Instruction);
300 CurFrame->Instructions.push_back(Instruction);
324 CurFrame->Instructions.push_back(Instruction);
334 CurFrame->Instructions.push_back(Instruction);
343 CurFrame->Instructions.push_back(Instruction);
352 CurFrame->Instructions
[all...]
H A DMCWin64EH.cpp168 uint8_t numCodes = CountOfUnwindCodes(info->Instructions);
173 MCWin64EHInstruction &frameInst = info->Instructions[info->LastFrameInst];
181 uint8_t numInst = info->Instructions.size();
183 MCWin64EHInstruction inst = info->Instructions.back();
184 info->Instructions.pop_back();
H A DMCDwarf.cpp1235 // Initial Instructions
1239 std::vector<MCCFIInstruction> Instructions; local
1248 Instructions.push_back(Inst);
1251 EmitCFIInstructions(streamer, Instructions, NULL);
1327 // Call Frame Instructions
1329 EmitCFIInstructions(streamer, frame.Instructions, frame.Begin);
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.conf3 // Instructions for /etc/dnsextd.conf (this file)
14 // Instructions for /etc/named.conf
/external/llvm/include/llvm/MC/
H A DMCWin64EH.h68 Instructions() {}
79 std::vector<MCWin64EHInstruction> Instructions; member in struct:llvm::MCWin64EHUnwindInfo
H A DMCDwarf.h311 Function(0), Instructions(), PersonalityEncoding(),
319 std::vector<MCCFIInstruction> Instructions; member in struct:llvm::MCDwarfFrameInfo
/external/oprofile/events/mips/5K/
H A Devents16 event:0x1 counters:0 um:zero minimum:500 name:INSN_FETCHED : Instructions fetched
24 event:0xf counters:0 um:zero minimum:500 name:INSNS_EXECED : Instructions executed
29 event:0x1 counters:1 um:zero minimum:500 name:INSNS_EXECED : Instructions executed
/external/llvm/lib/VMCore/
H A DAndroid.mk21 Instructions.cpp \
/external/oprofile/events/mips/r10000/
H A Devents7 event:0x01 counters:0 um:zero minimum:500 name:INSTRUCTIONS_ISSUED : Instructions issued
8 event:0x01 counters:1 um:zero minimum:500 name:INSTRUCTIONS_GRADUATED : Instructions graduated
35 event:0x0f counters:0 um:zero minimum:500 name:INSTRUCTION_GRADUATED : Instructions graduated
/external/oprofile/events/mips/vr5432/
H A Devents5 event:0x1 counters:0,1 um:zero minimum:500 name:INSTRUCTIONS_EXECUTED : (Instructions executed)/2 and truncated
/external/oprofile/events/mips/vr5500/
H A Devents7 event:0x1 counters:0,1 um:zero minimum:500 name:INSTRUCTIONS_EXECUTED : Instructions executed
/external/libvpx/examples/includes/geshi/geshi/
H A Dpic16.php48 /*Instructions*/
/external/oprofile/events/i386/westmere/
H A Devents24 event:0x17 counters:0,1,2,3 um:x01 minimum:2000000 name:INST_QUEUE_WRITES : Instructions written to instruction queue.
25 event:0x18 counters:0,1,2,3 um:x01 minimum:2000000 name:INST_DECODED : Instructions that must be decoded by decoder 0
63 event:0xc0 counters:0,1,2,3 um:inst_retired minimum:2000000 name:INST_RETIRED : Instructions retired (Programmable counter and Precise Event)
72 event:0xd0 counters:0,1,2,3 um:x01 minimum:2000000 name:MACRO_INSTS : Instructions decoded
H A Dunit_masks101 0x01 any_p Instructions retired (Programmable counter and Precise Event)
200 0x01 loads Instructions retired which contains a load (Precise Event)
201 0x02 stores Instructions retired which contains a store (Precise Event)
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp19 #include "llvm/Instructions.h"
388 SmallPtrSet<Instruction*, 64> Instructions; local
391 Instructions.insert(cast<Instruction>(VMap[Insts[i]]));
394 outs() << "Checking for crash with only " << Instructions.size();
395 if (Instructions.size() == 1)
404 if (!Instructions.count(Inst) && !isa<TerminatorInst>(Inst) &&
424 for (SmallPtrSet<Instruction*, 64>::const_iterator I = Instructions.begin(),
425 E = Instructions.end(); I != E; ++I)
/external/oprofile/events/mips/20K/
H A Devents9 event:0x3 counters:0 um:zero minimum:500 name:FP_INSNS_COMPLETED : Instructions completed in FPU datapath (computational event:instructions only)
/external/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h63 typedef ilist<MachineInstr> Instructions; typedef in class:llvm::MachineBasicBlock
64 Instructions Insts;
202 typedef Instructions::iterator instr_iterator;
203 typedef Instructions::const_iterator const_instr_iterator;
/external/oprofile/events/mips/r12000/
H A Devents19 event:0xf counters:0,1,2,3 um:zero minimum:500 name:INSTRUCTIONS_GRADUATED : Instructions graduated
/external/oprofile/events/mips/rm9000/
H A Devents5 event:0x01 counters:0,1 um:zero minimum:500 name:INSTRUCTIONS_ISSUED : Instructions issued
/external/llvm/utils/vim/
H A Dllvm.vim22 " Instructions.
/external/oprofile/events/mips/25K/
H A Devents20 event:0xa counters:0,1 um:zero minimum:500 name:INSN_FP_DATAPATH_COMPLETED : Instructions completed in FPU datapath (computational instructions only)

Completed in 1475 milliseconds

12