/dalvik/vm/mterp/arm-vfp/ |
funop.S | 2 * Generic 32-bit unary floating-point operation. Provide an "instr" 14 $instr @ s1<- op
|
funopNarrower.S | 3 * "instr" line that specifies an instruction that performs "s0 = op d0". 14 $instr @ s0<- op
|
funopWider.S | 3 * "instr" line that specifies an instruction that performs "d0 = op s0". 14 $instr @ d0<- op
|
/dalvik/vm/mterp/armv5te/ |
binopLit16.S | 3 * Generic 32-bit "lit16" binary operation. Provide an "instr" line 26 $instr @ $result<- op, r0-r3 changed
|
unop.S | 3 * Generic 32-bit unary operation. Provide an "instr" line that 17 $instr @ r0<- op, r0-r3 changed
|
/dalvik/vm/mterp/armv6t2/ |
binopLit16.S | 3 * Generic 32-bit "lit16" binary operation. Provide an "instr" line 25 $instr @ $result<- op, r0-r3 changed
|
unop.S | 3 * Generic 32-bit unary operation. Provide an "instr" line that 16 $instr @ r0<- op, r0-r3 changed
|
unopNarrower.S | 3 * Generic 64bit-to-32bit unary operation. Provide an "instr" line 19 $instr @ r0<- op, r0-r3 changed
|
unopWider.S | 3 * Generic 32bit-to-64bit unary operation. Provide an "instr" line 16 $instr @ r0<- op, r0-r3 changed
|
/dalvik/vm/mterp/mips/ |
binop.S | 3 * Generic 32-bit binary operation. Provide an "instr" line that 30 $instr # $result <- op, a0-a3 changed
|
binop2addr.S | 3 * Generic 32-bit "/2addr" binary operation. Provide an "instr" line 26 $instr # $result <- op, a0-a3 changed
|
binopLit16.S | 3 * Generic 32-bit "lit16" binary operation. Provide an "instr" line 26 $instr # $result <- op, a0-a3 changed
|
unflop.S | 3 * Generic 32-bit unary operation. Provide an "instr" line that 20 $instr # a0 <- op, a0-a3 changed
|
unopWide.S | 3 * Generic 64-bit unary operation. Provide an "instr" line that 17 $instr # a0/a1 <- op, a2-a3 changed
|
unopWider.S | 3 * Generic 32bit-to-64bit unary operation. Provide an "instr" line 16 $instr # result <- op, a0-a3 changed
|
/external/chromium_org/v8/src/ |
hydrogen-escape-analysis.h | 54 void CollectIfNoEscapingUses(HInstruction* instr); 56 void AnalyzeDataFlow(HInstruction* instr);
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/ |
AndroidJUnit3Builder.java | 36 public AndroidJUnit3Builder(Instrumentation instr, Bundle bundle, boolean skipExecution) { 37 mInstr = instr;
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/ |
AndroidJUnit4Builder.java | 39 public AndroidJUnit4Builder(Instrumentation instr, Bundle bundle, boolean skipExecution) { 40 mInstrumentation = instr;
|
/external/chromium_org/ppapi/generators/ |
idl_gen_pnacl.py | 218 def CleanString(instr): 219 instr = instr.strip() 220 instr = instr.split() 221 return ' '.join(instr) 237 instr = node.GetOneOf('Comment') 238 if not instr: continue 239 instr.Dump() 240 old.append(instr.GetName() [all...] |
/external/elfutils/libcpu/ |
i386_parse.y | 188 struct instruction *instr, int n); 278 instrs: instrs '\n' instr 279 | instr 282 instr: bytes ':' bitfieldopt kID bitfieldopt optargs label 770 struct instruction *instr, int n) 787 if (instr->operands[n].str != NULL) 792 instr->operands[n].str = runp->str; 835 if (instr->operands[n].off1 == 0) 836 instr->operands[n].off1 = bitoff; 837 else if (instr->operands[n].off2 == 0 [all...] |
/art/compiler/sea_ir/code_gen/ |
code_gen.cc | 119 std::string instr = instruction->GetInstruction()->DumpString(NULL); local 124 std::string instr = instruction->GetInstruction()->DumpString(NULL); local 125 std::cout << "1.Instruction: " << instr << std::endl; 131 std::string instr = instruction->GetInstruction()->DumpString(NULL); local 132 std::cout << "1.Instruction: " << instr << std::endl; 137 std::string instr = instruction->GetInstruction()->DumpString(NULL); local 138 std::cout << "2.Instruction: " << instr << std::endl; 144 std::string instr = instruction->GetInstruction()->DumpString(NULL); local 145 std::cout << "3.Instruction: " << instr << std::endl; 165 std::string instr = instruction->GetInstruction()->DumpString(NULL) 177 std::string instr = instruction->GetInstruction()->DumpString(NULL); local 195 std::string instr = invoke->GetInstruction()->DumpString(NULL); local 219 std::string instr = instruction->GetInstruction()->DumpString(NULL); local 231 std::string instr = instruction->GetInstruction()->DumpString(NULL); local 239 std::string instr = instruction->GetInstruction()->DumpString(NULL); local [all...] |
/external/v8/src/arm/ |
assembler-arm.h | 426 // instructions instr is ignored. 427 bool is_single_instruction(Instr instr = 0) const; 602 extern const Instr kMovLrPc; 603 extern const Instr kLdrPCMask; 604 extern const Instr kLdrPCPattern; 605 extern const Instr kBlxRegMask; 606 extern const Instr kBlxRegPattern; 607 extern const Instr kBlxIp; 609 extern const Instr kMovMvnMask [all...] |
/development/samples/SpinnerTest/src/com/android/example/spinner/test/ |
SpinnerActivityTest.java | 298 Instrumentation instr = this.getInstrumentation(); local 314 instr.callActivityOnPause(mActivity); 329 instr.callActivityOnResume(mActivity);
|
/external/chromium_org/v8/src/arm/ |
constants-arm.h | 48 inline int DecodeConstantPoolLength(int instr) { 49 ASSERT((instr & kConstantPoolMarkerMask) == kConstantPoolMarker); 50 return ((instr >> 4) & 0xfff0) | (instr & 0xf); 75 // General constants are in an anonymous enum in class Instr. 140 // Instr is merely used by the Assembler to distinguish 32bit integers 144 typedef int32_t Instr; 433 extern const Instr kPopInstruction; 437 extern const Instr kPushRegPattern; 441 extern const Instr kPopRegPattern [all...] |
/external/v8/src/ |
hydrogen.cc | 106 void HBasicBlock::AddInstruction(HInstruction* instr) { 108 ASSERT(!instr->IsLinked()); 115 instr->InsertAfter(last_); 116 last_ = instr; 126 HDeoptimize* instr = new(zone()) HDeoptimize(environment->length()); local 129 instr->AddEnvironmentValue(val); 132 return instr; 145 HSimulate* instr = new(zone()) HSimulate(ast_id, pop_count); local 147 instr->AddPushedValue(environment->ExpressionStackAt(i)); 151 instr->AddAssignedValue(index, environment->Lookup(index)) 174 HGoto* instr = new(zone()) HGoto(block); local 188 HGoto* instr = new(zone()) HGoto(target); local 735 HInstruction* instr = blocks()->at(i)->first(); local 1038 HInstruction* instr = block->first(); local 1346 HInstruction* instr = dominator->first(); local 1483 HInstruction* instr = block->first(); local 1546 HInstruction* instr = block->first(); local 1674 HInstruction* instr = block->first(); local 2500 HReturn* instr = new(zone()) HReturn(graph()->GetConstantUndefined()); local 2581 HInstruction* instr = blocks()->at(i)->first(); local 3488 HFunctionLiteral* instr = local 3587 HConstant* instr = local 3604 HLoadGlobalCell* instr = local 3611 HLoadGlobalGeneric* instr = local 3635 HLoadContextSlot* instr = new(zone()) HLoadContextSlot(context, variable); local 3649 HConstant* instr = local 3661 HRegExpLiteral* instr = new(zone()) HRegExpLiteral(context, local 4057 HInstruction* instr = local 4075 HInstruction* instr = BuildStoreNamedGeneric(object, name, value); local 4113 HInstruction* instr = NULL; local 4176 HInstruction* instr = local 4185 HStoreGlobalGeneric* instr = local 4267 HStoreContextSlot* instr = local 4304 HInstruction* instr = BuildBinaryOperation(operation, left, right); local 4336 HInstruction* instr = BuildBinaryOperation(operation, left, right); local 4469 HStoreContextSlot* instr = new(zone()) HStoreContextSlot( local 4499 HThrow* instr = new(zone()) HThrow(context, value); local 4756 HInstruction* instr = NULL; local 4896 HInstruction* instr = NULL; local 4985 HInstruction* instr = NULL; local 6154 HDeleteProperty* instr = new(zone()) HDeleteProperty(context, obj, key); local 6190 HInstruction* instr = new(zone()) HTypeof(context, value); local 6199 HInstruction* instr = local 6209 HInstruction* instr = local 6232 HInstruction* instr = new(zone()) HBitNot(value); local 6307 HInstruction* instr = new(zone()) HAdd(context, Top(), delta); local 6380 HStoreContextSlot* instr = local 6494 HInstruction* instr = NULL; local 6689 HInstruction* instr = BuildBinaryOperation(expr, left, right); local 6729 HTypeofIsAndBranch* instr = new(zone()) HTypeofIsAndBranch(value, check); local 6807 HClassOfTestAndBranch* instr = local 6960 HIsNilAndBranch* instr = new(zone()) HIsNilAndBranch(value, kind, nil); local [all...] |