Searched refs:instr (Results 76 - 100 of 242) sorted by relevance

12345678910

/external/chromium_org/v8/src/compiler/
H A Dinstruction.cc253 OStream& operator<<(OStream& os, const Instruction& instr) { argument
254 if (instr.OutputCount() > 1) os << "(";
255 for (size_t i = 0; i < instr.OutputCount(); i++) {
257 os << *instr.OutputAt(i);
260 if (instr.OutputCount() > 1) os << ") = ";
261 if (instr.OutputCount() == 1) os << " = ";
263 if (instr.IsGapMoves()) {
264 const GapInstruction* gap = GapInstruction::cast(&instr);
265 os << (instr.IsBlockStart() ? " block-start" : "gap ");
272 } else if (instr
340 AddInstruction(Instruction* instr, BasicBlock* block) argument
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-escape-analysis.cc46 HInstruction* instr = it.Current(); local
47 if (!instr->IsAllocate()) continue;
48 HAllocate* allocate = HAllocate::cast(instr);
51 if (HasNoEscapingUses(instr, size_in_bytes)) {
53 PrintF("#%d (%s) is being captured\n", instr->id(),
54 instr->Mnemonic());
56 captured_.Add(instr, zone());
181 HInstruction* instr = it.Current(); local
182 switch (instr->opcode()) {
184 if (instr !
[all...]
H A Dlithium-codegen.h41 virtual void GenerateBodyInstructionPre(LInstruction* instr) {} argument
42 virtual void GenerateBodyInstructionPost(LInstruction* instr) {} argument
H A Dhydrogen-environment-liveness.h34 void UpdateLivenessAtInstruction(HInstruction* instr, BitVector* live);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jai.jar ... .ant.types.optional.image.ImageOperation instr public void addRotate (org.apache.tools.ant
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dbreakpoint.c119 replace_slotN_contents(char *bundle, long long instr, int slotnum) { argument
120 replace_bit_field(bundle, instr, 5 + 41 * slotnum, 41);
181 long long instr; local
199 instr = slotN_contents(bundle.cbundle, slotnum);
201 memcpy(sbp->orig_value, &instr, sizeof(instr));
217 unsigned long instr; local
226 memcpy(&instr, sbp->orig_value, sizeof(instr));
228 replace_slotN_contents(bundle.cbundle, instr, slotnu
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DMethodItem.java96 final int instr = blockSizes [b];
98 totalBlockInstr += instr;
102 coverageBlockInstr += instr;
125 final int instr = blockSizes [b];
127 thisLineTotalInstr += instr;
131 thisLineCoverageInstr += instr;
/external/chromium_org/v8/src/compiler/ia32/
H A Dcode-generator-ia32.cc25 IA32OperandConverter(CodeGenerator* gen, Instruction* instr) argument
26 : InstructionOperandConverter(gen, instr) {}
104 static bool HasImmediateInput(Instruction* instr, int index) { argument
105 return instr->InputAt(index)->IsImmediate();
110 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { argument
111 IA32OperandConverter i(this, instr);
113 switch (ArchOpcodeField::decode(instr->opcode())) {
116 if (HasImmediateInput(instr, 0)) {
123 AddSafepointAndDeopt(instr);
135 AddSafepointAndDeopt(instr);
398 AssembleArchBranch(Instruction* instr, FlagsCondition condition) argument
473 AssembleArchBoolean(Instruction* instr, FlagsCondition condition) argument
[all...]
/external/chromium_org/v8/src/arm/
H A Dconstants-arm.h25 inline int DecodeConstantPoolLength(int instr) { argument
26 DCHECK((instr & kConstantPoolMarkerMask) == kConstantPoolMarker);
27 return ((instr >> 4) & 0xfff0) | (instr & 0xf);
419 // Instruction* instr = Instruction::At(ptr);
420 // int type = instr->TypeValue();
421 // return ((type == 0) || (type == 1)) && instr->HasS();
435 static inline return_type Name(Instr instr) { \
436 char* temp = reinterpret_cast<char*>(&instr); \
470 static inline int Bit(Instr instr, in argument
475 Bits(Instr instr, int hi, int lo) argument
481 BitField(Instr instr, int hi, int lo) argument
[all...]
H A Dassembler-arm.h528 // instructions instr is ignored.
532 int instructions_required(const Assembler* assembler, Instr instr = 0) const;
1407 void instr_at_put(int pos, Instr instr) { argument
1408 *reinterpret_cast<Instr*>(buffer_ + pos) = instr;
1411 static void instr_at_put(byte* pc, Instr instr) { argument
1412 *reinterpret_cast<Instr*>(pc) = instr;
1414 static Condition GetCondition(Instr instr);
1415 static bool IsBranch(Instr instr);
1416 static int GetBranchOffset(Instr instr);
1417 static bool IsLdrRegisterImmediate(Instr instr);
[all...]
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.h103 DecodeStatus getInstruction(MCInst &instr, uint64_t &size,
/external/llvm/test/MC/Mips/
H A Dmicromips-pc16-fixup.s7 .space 65536 - 8, 1 # -8 = size of b instr plus size of automatically inserted nop
/external/chromium_org/v8/src/mips/
H A Dassembler-mips.h1041 static void instr_at_put(byte* pc, Instr instr) { argument
1042 *reinterpret_cast<Instr*>(pc) = instr;
1045 void instr_at_put(int pos, Instr instr) { argument
1046 *reinterpret_cast<Instr*>(buffer_ + pos) = instr;
1050 static bool IsBranch(Instr instr);
1051 static bool IsBeq(Instr instr);
1052 static bool IsBne(Instr instr);
1054 static bool IsJump(Instr instr);
1055 static bool IsJ(Instr instr);
1056 static bool IsLui(Instr instr);
[all...]
/external/chromium_org/v8/src/mips64/
H A Dsimulator-mips64.cc74 void Stop(Instruction* instr);
120 void MipsDebugger::Stop(Instruction* instr) { argument
122 uint32_t code = instr->Bits(25, 6);
140 instr->SetInstructionBits(kNopInstr);
155 void MipsDebugger::Stop(Instruction* instr) { argument
157 uint32_t code = instr->Bits(25, 6);
410 Instruction* instr = reinterpret_cast<Instruction*>(sim_->get_pc()); local
411 if (!(instr->IsTrap()) ||
412 instr->InstructionBits() == rtCallRedirInstr) {
849 Instruction* instr) {
848 CheckICache(v8::internal::HashMap* i_cache, Instruction* instr) argument
1334 ReadW(int64_t addr, Instruction* instr) argument
1354 ReadWU(int64_t addr, Instruction* instr) argument
1374 WriteW(int64_t addr, int value, Instruction* instr) argument
1394 Read2W(int64_t addr, Instruction* instr) argument
1414 Write2W(int64_t addr, int64_t value, Instruction* instr) argument
1434 ReadD(int64_t addr, Instruction* instr) argument
1447 WriteD(int64_t addr, double value, Instruction* instr) argument
1460 ReadHU(int64_t addr, Instruction* instr) argument
1474 ReadH(int64_t addr, Instruction* instr) argument
1488 WriteH(int64_t addr, uint16_t value, Instruction* instr) argument
1503 WriteH(int64_t addr, int16_t value, Instruction* instr) argument
1554 Format(Instruction* instr, const char* format) argument
1599 SoftwareInterrupt(Instruction* instr) argument
1838 HandleStop(uint64_t code, Instruction* instr) argument
1850 IsStopInstruction(Instruction* instr) argument
1926 ConfigureTypeRegister(Instruction* instr, int64_t* alu_out, int64_t* i64hilo, uint64_t* u64hilo, int64_t* next_pc, int64_t* return_addr_reg, bool* do_interrupt, int64_t* i128resultH, int64_t* i128resultL) argument
2258 DecodeTypeRegister(Instruction* instr) argument
2806 DecodeTypeImmediate(Instruction* instr) argument
[all...]
H A Dassembler-mips64.h1077 static void instr_at_put(byte* pc, Instr instr) { argument
1078 *reinterpret_cast<Instr*>(pc) = instr;
1081 void instr_at_put(int pos, Instr instr) { argument
1082 *reinterpret_cast<Instr*>(buffer_ + pos) = instr;
1086 static bool IsBranch(Instr instr);
1087 static bool IsBeq(Instr instr);
1088 static bool IsBne(Instr instr);
1090 static bool IsJump(Instr instr);
1091 static bool IsJ(Instr instr);
1092 static bool IsLui(Instr instr);
[all...]
/external/chromium_org/ppapi/generators/
H A Didl_gen_pnacl.py224 def CleanString(instr):
225 instr = instr.strip()
226 instr = instr.split()
227 return ' '.join(instr)
243 instr = node.GetOneOf('Comment')
244 if not instr: continue
245 instr.Dump()
246 old.append(instr
[all...]
/external/elfutils/0.153/libcpu/
H A Di386_parse.y189 struct instruction *instr, int n);
279 instrs: instrs '\n' instr
280 | instr
283 instr: bytes ':' bitfieldopt kID bitfieldopt optargs label
771 struct instruction *instr, int n)
788 if (instr->operands[n].str != NULL)
793 instr->operands[n].str = runp->str;
836 if (instr->operands[n].off1 == 0)
837 instr->operands[n].off1 = bitoff;
838 else if (instr
[all...]
/external/chromium_org/third_party/lcov/bin/
H A Dgeninfo718 # instr<n>: Instrumentation flag for line n
845 my $instr; # Contents of graph file part 2
940 ($instr, $graph) = read_bbg($bb_filename);
944 ($instr, $graph) = read_bb($bb_filename);
949 ($instr, $graph) = read_gcno($bb_filename);
954 $base_dir = find_base_from_graph($base_dir, $instr, $graph);
957 ($instr, $graph) = adjust_graph_filenames($base_dir, $instr, $graph);
1060 @unprocessed = keys(%{$instr});
1099 @matches = match_filename($source, keys(%{$instr}));
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dinstruction-selector-tester.h72 Instruction* instr = *i; local
73 if (instr->opcode() < 0) continue;
75 switch (ArchOpcodeField::decode(instr->opcode())) {
85 code.push_back(instr);
/external/chromium_org/v8/src/compiler/x64/
H A Dcode-generator-x64.cc49 X64OperandConverter(CodeGenerator* gen, Instruction* instr) argument
50 : InstructionOperandConverter(gen, instr) {}
167 static bool HasImmediateInput(Instruction* instr, int index) { argument
168 return instr->InputAt(index)->IsImmediate();
174 if (HasImmediateInput(instr, 1)) { \
194 if (HasImmediateInput(instr, 1)) { \
203 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { argument
204 X64OperandConverter i(this, instr);
206 switch (ArchOpcodeField::decode(instr->opcode())) {
209 if (HasImmediateInput(instr,
620 AssembleArchBranch(Instruction* instr, FlagsCondition condition) argument
695 AssembleArchBoolean(Instruction* instr, FlagsCondition condition) argument
[all...]
/external/libunwind/src/arm/
H A DGstep.c249 unw_word_t instr, i; local
265 if (dwarf_get(&c->dwarf, DWARF_LOC(frame, 0), &instr) < 0)
269 instr -= 8;
270 if (dwarf_get(&c->dwarf, DWARF_LOC(instr, 0), &instr) < 0)
274 if ((instr & 0xFFFFD800) == 0xE92DD800)
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreaddwarf.c3031 DiCursor instr = instrIN; local
3032 UChar instr_0 = ML_(cur_step_UChar)(&instr);
3047 return ML_(cur_minus)(instr, instrIN);
3052 off = step_leb128( &instr, 0 );
3063 return ML_(cur_minus)(instr, instrIN);
3075 return ML_(cur_minus)(instr, instrIN);
3087 ctx->loc = read_Addr(&instr[i]) - ctx->initloc; i+= sizeof(Addr);
3092 ctx->loc = step_encoded_Addr(adi, &instr);
3097 delta = (UInt)ML_(cur_step_UChar)(&instr);
3105 delta = (UInt)ML_(cur_step_UShort)(&instr);
3436 DiCursor instr = instrIN; local
[all...]
/external/chromium_org/tools/valgrind/
H A Dsuppressions.py385 instr: The instruction to match.
389 def __init__(self, name, report_type, instr, stack, defined_at):
391 self.instr = instr
406 if instr:
407 regex += 'instruction=%s\n' % GlobToRegex(instr)
433 if self.instr:
434 text += "instruction=%s\n" % self.instr
488 instr = None
496 instr
[all...]
/external/yaffs2/yaffs2/mtdemul/
H A Dnandemul2k.c300 static int nand_erase (struct mtd_info *mtd, struct erase_info *instr);
532 static int nand_erase (struct mtd_info *mtd, struct erase_info *instr) argument
538 (unsigned int) instr->addr, (unsigned int) instr->len));
541 if (instr->addr & (mtd->erasesize - 1)) {
548 if (instr->len & (mtd->erasesize - 1)) {
555 if ((instr->len + instr->addr) > mtd->size) {
561 nBlocks = instr->len >> (NAND_SHIFT + BLK_SHIFT);
562 block = instr
[all...]
/external/vixl/src/a64/
H A Ddebugger-a64.cc647 void Debugger::VisitException(Instruction* instr) { argument
648 switch (instr->Mask(ExceptionMask)) {
650 DoBreakpoint(instr);
653 switch (instr->ImmException()) {
655 DoUnreachable(instr);
658 DoTrace(instr);
661 DoLog(instr);
665 default: Simulator::VisitException(instr);
764 void Debugger::DoBreakpoint(Instruction* instr) { argument
765 VIXL_ASSERT(instr
774 DoUnreachable(Instruction* instr) argument
784 DoTrace(Instruction* instr) argument
811 DoLog(Instruction* instr) argument
[all...]

Completed in 619 milliseconds

12345678910