HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 801 - 825 of 1019) sorted by null

<<31323334353637383940>>

  /external/elfutils/src/
readelf.c 4719 unsigned int opcode = *linep++; local
5128 unsigned int opcode = *readp++; local
    [all...]
  /dalvik/vm/analysis/
Optimize.cpp 41 static void rewriteInstField(Method* method, u2* insns, Opcode quickOpc,
42 Opcode volatileOpc);
43 static void rewriteStaticField(Method* method, u2* insns, Opcode volatileOpc);
44 static void rewriteVirtualInvoke(Method* method, u2* insns, Opcode newOpc);
163 Opcode opc, quickOpc, volatileOpc;
371 * Update an instruction's opcode.
373 * If "opcode" is an 8-bit op, we just replace that portion. If it's a
374 * 16-bit op, we convert the opcode from "packed" form (e.g. 0x0108) to
377 static inline void updateOpcode(const Method* meth, u2* ptr, Opcode opcode)
    [all...]
  /external/elfutils/libdw/
libdwP.h 314 unsigned int opcode; member in struct:Dwarf_Macro_s
  /external/javassist/src/main/javassist/compiler/
MemberCodeGen.java 106 b.addOpcode(Opcode.GOTO);
111 protected boolean doit(Bytecode b, int opcode) {
112 switch (opcode) {
113 case Opcode.RETURN :
159 protected boolean doit(Bytecode b, int opcode) {
160 switch (opcode) {
161 case Opcode.RETURN :
182 b.addOpcode(Opcode.GOTO);
210 bc.addOpcode(Opcode.GOTO);
236 bc.addOpcode(Opcode.GOTO)
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 140 // Opcode Implementations
239 GenericValue executeCastOperation(Instruction::CastOps opcode, Value *SrcVal,
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 510 Instruction::CastOps opcode = Instruction::BitCast; local
515 opcode = Instruction::IntToPtr;
518 opcode = Instruction::PtrToInt;
526 NewCast = IC.Builder->CreateCast(opcode, SIOp0, CastDstTy,
InstCombineCalls.cpp 1147 Instruction::CastOps opcode = CastInst::getCastOpcode(*AI, local
1173 Instruction::CastOps opcode = local
1220 Instruction::CastOps opcode = local
    [all...]
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 142 switch (constantInstruction.opcode)
  /external/tcpdump/
print-smb.c 1093 int name_trn_id, response, opcode, nm_flags, rcode; local
1102 opcode = (data[2] >> 3) & 0xF;
1119 switch (opcode) {
1151 name_trn_id, opcode, nm_flags, rcode, qdcount, ancount, nscount,
    [all...]
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
ll.S 49 # eieio # coolest opcode of all time ;)
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmevent.h 329 uint8 opcode; /* see I/F opcode */ member in struct:wl_event_data_if
335 /* opcode in WLC_E_IF event */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
fuse.h 381 __u32 opcode; member in struct:fuse_in_header
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fuse.h 381 __u32 opcode; member in struct:fuse_in_header
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fuse.h 381 __u32 opcode; member in struct:fuse_in_header
  /system/core/libpixelflinger/codeflinger/
ARMAssembler.h 90 virtual void dataProcessing(int opcode, int cc, int s,
GGLAssembler.cpp 818 const int opcode = GGL_READ_NEEDS(LOGIC_OP, needs.n) | GGL_CLEAR; local
819 if (opcode == GGL_COPY)
831 switch(opcode) {
962 const int opcode = GGL_READ_NEEDS(LOGIC_OP, needs.n) | GGL_CLEAR; local
    [all...]
  /system/core/libpixelflinger/
picker.cpp 109 n |= GGL_BUILD_NEEDS(c->state.logic_op.opcode, LOGIC_OP);
  /dalvik/vm/mterp/armv5te/
footer.S 270 GET_INST_OPCODE(ip) @ extract opcode from rINST
389 GET_INST_OPCODE(ip) @ extract opcode from rINST
609 GET_PREFETCHED_OPCODE(ip, r9) @ extract prefetched opcode from r9
617 GET_PREFETCHED_OPCODE(ip, r9) @ extract prefetched opcode from r9
672 GET_INST_OPCODE(ip) @ extract opcode from rINST
776 GET_INST_OPCODE(ip) @ extract opcode from rINST
779 GET_INST_OPCODE(ip) @ extract opcode from rINST
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dops.java 54 * pseudo-opcode used for nonstandard formatted "instructions"
62 // BEGIN(dops); GENERATED AUTOMATICALLY BY opcode-gen
    [all...]
  /dalvik/vm/compiler/codegen/x86/
CodegenInterface.cpp 155 /* "0xFF 0xFF" is an invalid opcode for x86. */
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 531 bool Interpreter::isOpcode(Opcode opcode)
534 return opcode != HashTraits<Opcode>::emptyValue()
535 && !HashTraits<Opcode>::isDeletedValue(opcode)
536 && m_opcodeIDTable.contains(opcode);
538 return opcode >= 0 && opcode <= op_end;
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_tabl.cpp 84 Normally, to add an opcode/instruction, one only need to copy the whole
104 3. Fill out the mnemonic, opcode parameters parts
138 - a mapping between a hash value and an opcode description record for a given
142 The EncoderBase::opcodesHashMap is used for fast opcode selection basing on
156 As a grand total, the the whole operand's info needed for opcode selection
197 between a hash code value and opcode position for each given instruction.
199 Sounds a bit sophisticated, but in real is simple, the opcode gets selected
205 means 'invalid hash - no opcode with given characteristics'
242 The preparation is that opcode descriptions from the 'master' encoding table
244 First, the 'raw' opcode bytes are extracted. Here, 'raw' means the bytes tha
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 194 const char *NVPTXTargetLowering::getTargetNodeName(unsigned Opcode) const {
195 switch (Opcode) {
462 unsigned opcode = NVPTXISD::StoreParam; local
464 opcode = NVPTXISD::MoveToParam;
467 opcode = NVPTXISD::StoreParamU32;
469 opcode = NVPTXISD::StoreParamS32;
471 Chain = DAG.getNode(opcode, dl, CopyParamVTs, CopyParamOps, 5);
689 unsigned opcode; local
691 opcode = NVPTXISD::LastCallArg;
693 opcode = NVPTXISD::CallArg
    [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 
  /dalvik/vm/compiler/
SSATransformation.cpp 489 phi->dalvikInsn.opcode = (Opcode)kMirOpPhi;
510 if (mir->dalvikInsn.opcode != (Opcode)kMirOpPhi)

Completed in 2760 milliseconds

<<31323334353637383940>>