Home
last modified time | relevance | path

Searched defs:opcode (Results 1 – 25 of 575) sorted by relevance

12345678910>>...23

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DInstructionFactory.java45 Instruction makeInstruction10t(@Nonnull Opcode opcode, int codeOffset); in makeInstruction10t()
46 Instruction makeInstruction10x(@Nonnull Opcode opcode); in makeInstruction10x()
47 Instruction makeInstruction11n(@Nonnull Opcode opcode, int registerA, int literal); in makeInstruction11n()
48 Instruction makeInstruction11x(@Nonnull Opcode opcode, int registerA); in makeInstruction11x()
49 Instruction makeInstruction12x(@Nonnull Opcode opcode, int registerA, int registerB); in makeInstruction12x()
50 …ruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref reference); in makeInstruction20bc()
51 Instruction makeInstruction20t(@Nonnull Opcode opcode, int codeOffset); in makeInstruction20t()
52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); in makeInstruction21c()
53 Instruction makeInstruction21ih(@Nonnull Opcode opcode, int registerA, int literal); in makeInstruction21ih()
54 Instruction makeInstruction21lh(@Nonnull Opcode opcode, int registerA, long literal); in makeInstruction21lh()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
DImmutableInstructionFactory.java49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode, in makeInstruction10t()
54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) { in makeInstruction10x()
58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode, in makeInstruction11n()
64 public ImmutableInstruction11x makeInstruction11x(@Nonnull Opcode opcode, in makeInstruction11x()
69 public ImmutableInstruction12x makeInstruction12x(@Nonnull Opcode opcode, in makeInstruction12x()
75 public ImmutableInstruction20bc makeInstruction20bc(@Nonnull Opcode opcode, in makeInstruction20bc()
81 public ImmutableInstruction20t makeInstruction20t(@Nonnull Opcode opcode, in makeInstruction20t()
86 public ImmutableInstruction21c makeInstruction21c(@Nonnull Opcode opcode, in makeInstruction21c()
92 public ImmutableInstruction21ih makeInstruction21ih(@Nonnull Opcode opcode, in makeInstruction21ih()
98 public ImmutableInstruction21lh makeInstruction21lh(@Nonnull Opcode opcode, in makeInstruction21lh()
[all …]
/external/v8/src/wasm/
Dwasm-opcodes.cc15 const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) { in OpcodeName()
17 #define DECLARE_NAME_CASE(name, opcode, sig) \ in OpcodeName() argument
28 const char* WasmOpcodes::ShortOpcodeName(WasmOpcode opcode) { in ShortOpcodeName()
30 #define DECLARE_NAME_CASE(name, opcode, sig) \ in ShortOpcodeName() argument
41 bool WasmOpcodes::IsPrefixOpcode(WasmOpcode opcode) { in IsPrefixOpcode()
43 #define CHECK_PREFIX(name, opcode) \ in IsPrefixOpcode() argument
95 #define SET_SIG_TABLE(name, opcode, sig) \ in InitSigTables() argument
99 #define SET_ASMJS_SIG_TABLE(name, opcode, sig) \ in InitSigTables() argument
104 #define SET_SIG_TABLE(name, opcode, sig) \ in InitSigTables() argument
110 #define SET_ATOMIC_SIG_TABLE(name, opcode, sig) \ in InitSigTables() argument
[all …]
/external/javassist/src/main/javassist/bytecode/analysis/
DUtil.java27 int opcode = iter.byteAt(pos); in getJumpTarget() local
32 public static boolean isJumpInstruction(int opcode) { in isJumpInstruction()
36 public static boolean isGoto(int opcode) { in isGoto()
40 public static boolean isJsr(int opcode) { in isJsr()
44 public static boolean isReturn(int opcode) { in isReturn()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DDuplicateFrameEliminator.java44 public void visitInsn(final int opcode) { in visitInsn()
50 public void visitIntInsn(final int opcode, final int operand) { in visitIntInsn()
56 public void visitVarInsn(final int opcode, final int var) { in visitVarInsn()
62 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn()
68 public void visitFieldInsn(final int opcode, final String owner, in visitFieldInsn()
75 public void visitMethodInsn(final int opcode, final String owner, in visitMethodInsn()
89 public void visitJumpInsn(final int opcode, final Label label) { in visitJumpInsn()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_info.c222 tgsi_get_opcode_info( uint opcode ) in tgsi_get_opcode_info()
242 tgsi_get_opcode_name( uint opcode ) in tgsi_get_opcode_name()
269 tgsi_opcode_infer_src_type( uint opcode ) in tgsi_opcode_infer_src_type()
317 tgsi_opcode_infer_dst_type( uint opcode ) in tgsi_opcode_infer_dst_type()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DDexBackedInstruction.java45 @Nonnull public final Opcode opcode; field in DexBackedInstruction
49 @Nonnull Opcode opcode, in DexBackedInstruction()
67 Opcode opcode = reader.dexBuf.getOpcodes().getOpcodeByValue(opcodeValue); in readFrom() local
74 …c DexBackedInstruction buildInstruction(@Nonnull DexBackedDexFile dexFile, @Nullable Opcode opcode, in buildInstruction()
/external/syslinux/gpxe/src/include/gpxe/
Dtftp.h38 uint16_t opcode; member
44 uint16_t opcode; member
51 uint16_t opcode; member
57 uint16_t opcode; member
64 uint16_t opcode; member
70 uint16_t opcode; member
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DLabelFlowAnalyzer.java82 public void visitJumpInsn(final int opcode, final Label label) { in visitJumpInsn()
137 public void visitInsn(final int opcode) { in visitInsn()
158 public void visitIntInsn(final int opcode, final int operand) { in visitIntInsn()
164 public void visitVarInsn(final int opcode, final int var) { in visitVarInsn()
170 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn()
176 public void visitFieldInsn(final int opcode, final String owner, in visitFieldInsn()
183 public void visitMethodInsn(final int opcode, final String owner, in visitMethodInsn()
/external/valgrind/VEX/priv/
Dguest_s390_helpers.c962 #define S390_CC_FOR_BINARY(opcode,cc_dep1,cc_dep2) \ argument
972 #define S390_CC_FOR_TERNARY_SUBB(opcode,cc_dep1,cc_dep2,cc_ndep) \ argument
987 #define S390_CC_FOR_TERNARY_ADDC(opcode,cc_dep1,cc_dep2,cc_ndep) \ argument
1003 #define S390_CC_FOR_BFP_RESULT(opcode,cc_dep1) \ argument
1025 #define S390_CC_FOR_BFP_CONVERT_AUX(opcode,cc_dep1,rounding_mode) \ argument
1035 #define S390_CC_FOR_BFP_CONVERT(opcode,cc_dep1,cc_dep2) \ argument
1057 #define S390_CC_FOR_BFP_UCONVERT_AUX(opcode,cc_dep1,rounding_mode) \ argument
1067 #define S390_CC_FOR_BFP_UCONVERT(opcode,cc_dep1,cc_dep2) \ argument
1089 #define S390_CC_FOR_BFP128_CONVERT_AUX(opcode,hi,lo,rounding_mode) \ argument
1101 #define S390_CC_FOR_BFP128_CONVERT(opcode,cc_dep1,cc_dep2,cc_ndep) \ argument
[all …]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodAnalyzer.java125 public void visitInsn(final int opcode) { in visitInsn()
130 public void visitIntInsn(final int opcode, final int operand) { in visitIntInsn()
135 public void visitVarInsn(final int opcode, final int var) { in visitVarInsn()
140 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn()
145 public void visitFieldInsn(final int opcode, final String owner, in visitFieldInsn()
151 public void visitMethodInsn(final int opcode, final String owner, in visitMethodInsn()
163 public void visitJumpInsn(final int opcode, final Label label) { in visitJumpInsn()
215 public void visitJumpInsnWithProbe(final int opcode, final Label label, in visitJumpInsnWithProbe()
222 public void visitInsnWithProbe(final int opcode, final int probeId) { in visitInsnWithProbe()
/external/valgrind/none/tests/s390x/
Ddfptest.c19 #define TEST_128(opcode, d, n) \ argument
31 #define TEST_64(opcode, d, n) \ argument
43 #define TEST_32(opcode, d, n) \ argument
/external/mesa3d/src/glx/
Dglx_query.c46 __glXQueryServerString(Display * dpy, int opcode, CARD32 screen, CARD32 name) in __glXQueryServerString()
70 __glXGetString(Display * dpy, int opcode, CARD32 contextTag, CARD32 name) in __glXGetString()
119 __glXGetStringFromServer(Display * dpy, int opcode, CARD32 glxCode, in __glXGetStringFromServer()
164 __glXQueryServerString(Display * dpy, int opcode, CARD32 screen, CARD32 name) in __glXQueryServerString()
171 __glXGetString(Display * dpy, int opcode, CARD32 contextTag, CARD32 name) in __glXGetString()
Dpackrender.h76 #define __GLX_BEGIN_VARIABLE(opcode,size) \ argument
83 #define __GLX_BEGIN_VARIABLE_LARGE(opcode,size) \ argument
88 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL(opcode,size) \ argument
98 #define __GLX_BEGIN_VARIABLE_LARGE_WITH_PIXEL(opcode,size) \ argument
106 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL_3D(opcode,size) \ argument
116 #define __GLX_BEGIN_VARIABLE_LARGE_WITH_PIXEL_3D(opcode,size) \ argument
131 #define __GLX_BEGIN(opcode,size) \ argument
Dindirect_glx.c63 SendMakeCurrentRequest(Display * dpy, CARD8 opcode, in SendMakeCurrentRequest()
135 int opcode = __glXSetupForCommand(dpy); in indirect_bind_context() local
165 int opcode = __glXSetupForCommand(dpy); in indirect_unbind_context() local
254 CARD8 opcode; in indirect_bind_tex_image() local
303 CARD8 opcode; in indirect_release_tex_image() local
350 CARD8 opcode; in indirect_create_context() local
/external/mesa3d/src/gallium/drivers/i915/
Di915_debug_fp.c258 unsigned opcode, const unsigned * program) in print_arith_op()
292 unsigned opcode, const unsigned * program) in print_tex_op()
310 unsigned opcode, const unsigned * program) in print_texkil_op()
323 unsigned opcode, const unsigned * program) in print_dcl_op()
344 unsigned opcode = program[0] & (0x1f << 24); in i915_disassemble_program() local
/external/mesa3d/src/mesa/drivers/dri/i915/
Di915_debug_fp.c242 print_arith_op(GLuint opcode, const GLuint * program) in print_arith_op()
275 print_tex_op(GLuint opcode, const GLuint * program) in print_tex_op()
291 print_dcl_op(GLuint opcode, const GLuint * program) in print_dcl_op()
311 GLuint opcode = program[0] & (0x1f << 24); in i915_disassemble_program() local
/external/mesa3d/src/mesa/program/
Dprog_instruction.c257 _mesa_num_inst_src_regs(gl_inst_opcode opcode) in _mesa_num_inst_src_regs()
270 _mesa_num_inst_dst_regs(gl_inst_opcode opcode) in _mesa_num_inst_dst_regs()
280 _mesa_is_tex_instruction(gl_inst_opcode opcode) in _mesa_is_tex_instruction()
344 _mesa_opcode_string(gl_inst_opcode opcode) in _mesa_opcode_string()
/external/proguard/src/proguard/classfile/instruction/
DVariableInstruction.java52 public VariableInstruction(byte opcode) in VariableInstruction()
58 public VariableInstruction(byte opcode, in VariableInstruction()
65 public VariableInstruction(byte opcode, in VariableInstruction()
97 private static int embeddedVariable(byte opcode) in embeddedVariable()
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc49 bool CanBeMemoryOperand(InstructionCode opcode, Node* node, Node* input, in CanBeMemoryOperand()
176 ArchOpcode opcode = kArchNop; in GetLoadOpcode() local
214 ArchOpcode opcode = GetLoadOpcode(load_rep); in VisitLoad() local
229 ArchOpcode opcode = GetLoadOpcode(load_rep); in VisitProtectedLoad() local
290 ArchOpcode opcode = kArchNop; in VisitStore() local
345 ArchOpcode opcode = kArchNop; in VisitCheckedLoad() local
400 ArchOpcode opcode = kArchNop; in VisitCheckedStore() local
453 InstructionCode opcode, FlagsContinuation* cont) { in VisitBinop()
514 InstructionCode opcode) { in VisitBinop()
575 ArchOpcode opcode) { in VisitWord32Shift()
[all …]
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_compiler.c119 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in rc_calculate_inputs_outputs() local
145 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in rc_move_input() local
177 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in rc_move_output() local
200 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in rc_copy_output() local
300 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in rc_transform_fragment_wpos() local
344 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in rc_transform_fragment_face() local
Dr3xx_vertprog.c568 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in allocate_temporary_registers() local
591 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in allocate_temporary_registers() local
626 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in allocate_temporary_registers() local
667 const struct rc_opcode_info *opcode = rc_get_opcode_info(inst->U.I.Opcode); in transform_nonnative_modifiers() local
706 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in transform_source_conflicts() local
778 static int swizzle_is_native(rc_opcode opcode, struct rc_src_register reg) in swizzle_is_native()
812 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in transform_negative_addressing() local
827 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); in rc_emulate_negative_addressing() local
/external/javassist/src/main/javassist/convert/
DTransformAccessArrayField.java126 int opcode, String signature) throws BadBytecode { in replace()
165 private String getMethodName(int opcode) { in getMethodName()
224 private String getLoadReplacementSignature(int opcode) throws BadBytecode { in getLoadReplacementSignature()
247 private String getStoreReplacementSignature(int opcode) throws BadBytecode { in getStoreReplacementSignature()
/external/smali/smalidea/src/main/java/org/jf/smalidea/findUsages/
DSmaliUsageTypeProvider.java121 Opcode opcode = ((SmaliInstruction) element).getOpcode(); in findClassUsageType() local
167 Opcode opcode = ((SmaliInstruction) element).getOpcode(); in findFieldUsageType() local
190 Opcode opcode = ((SmaliInstruction) element).getOpcode(); in findMethodUsageType() local
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DBuilderInstruction.java43 @Nonnull protected final Opcode opcode; field in BuilderInstruction
47 protected BuilderInstruction(@Nonnull Opcode opcode) { in BuilderInstruction()

12345678910>>...23