Searched defs:opcodes (Results 1 - 25 of 43) sorted by relevance

12

/external/mesa3d/src/compiler/nir/
H A Dnir_builder_opcodes_h.py37 % for name, opcode in sorted(opcodes.iteritems()):
47 from nir_opcodes import opcodes namespace
50 print Template(template).render(opcodes=opcodes)
H A Dnir_opcodes_c.py27 from nir_opcodes import opcodes namespace
34 % for name, opcode in sorted(opcodes.iteritems()):
55 print template.render(opcodes=opcodes)
H A Dnir_opcodes_h.py32 <% opcode_names = sorted(opcodes.iterkeys()) %>
44 from nir_opcodes import opcodes namespace
47 print Template(template).render(opcodes=opcodes)
H A Dnir_constant_expressions.py268 % for name, op in sorted(opcodes.iteritems()):
395 % for name in sorted(opcodes.iterkeys()):
404 from nir_opcodes import opcodes namespace
407 print Template(template).render(opcodes=opcodes, type_sizes=type_sizes,
H A Dnir_opcodes.py104 # global dictionary of opcodes
105 opcodes = {} variable
109 assert name not in opcodes
110 opcodes[name] = Opcode(name, output_size, output_type, input_sizes,
H A Dnir_algebraic.py36 from nir_opcodes import opcodes namespace
341 nir_op = opcodes[val.opcode]
375 nir_op = opcodes[val.opcode]
414 nir_op = opcodes[val.opcode]
451 nir_op = opcodes[val.opcode]
/external/emma/core/java12/com/vladium/jcd/opcodes/
H A DIOpcodeVisitor.java9 package com.vladium.jcd.opcodes;
/external/llvm/test/tools/llvm-readobj/ARM/
H A Dunwind.s52 .section .opcodes
54 .type opcodes,%function
55 opcodes: label
215 @ CHECK: SectionName: .ARM.exidx.opcodes
219 @ CHECK: FunctionName: opcodes
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableDexFile.java46 @Nonnull private final Opcodes opcodes; field in class:ImmutableDexFile
48 public ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable Collection<? extends ClassDef> classes) { argument
50 this.opcodes = opcodes;
53 public ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable ImmutableSet<? extends ImmutableClassDef> classes) { argument
55 this.opcodes = opcodes;
66 @Nonnull @Override public Opcodes getOpcodes() { return opcodes; }
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedOdexFile.java52 public DexBackedOdexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] odexBuf, byte[] dexBuf) { argument
53 super(opcodes, dexBuf);
87 @Nonnull public static DexBackedOdexFile fromInputStream(@Nonnull Opcodes opcodes, @Nonnull InputStream is) argument
101 return new DexBackedOdexFile(opcodes, odexBuf, dexBuf);
H A DZipDexContainer.java61 private final Opcodes opcodes; field in class:ZipDexContainer
67 * @param opcodes The Opcodes instance to use when loading dex files from this container
69 public ZipDexContainer(@Nonnull File zipFilePath, @Nonnull Opcodes opcodes) { argument
71 this.opcodes = opcodes;
75 return opcodes;
150 protected ZipDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf, @Nonnull String entryName) { argument
151 super(opcodes, buf, 0);
193 return new ZipDexFile(opcodes, buf, zipEntry.getName());
H A DDexBackedDexFile.java57 @Nonnull private final Opcodes opcodes; field in class:DexBackedDexFile
72 protected DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf, int offset, boolean verifyMagic) { argument
75 this.opcodes = opcodes;
95 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) { argument
96 this(opcodes, buf.buf, buf.baseOffset);
99 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf, int offset) { argument
100 this(opcodes, buf, offset, false);
103 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) { argument
104 this(opcodes, bu
108 fromInputStream(@onnull Opcodes opcodes, @Nonnull InputStream is) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DRawDexFile.java50 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) { argument
51 super(opcodes, buf);
55 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) { argument
56 super(opcodes, buf);
/external/javassist/src/main/javassist/bytecode/
H A DInstructionPrinter.java28 private final static String opcodes[] = Mnemonic.OPCODE; field in class:InstructionPrinter
62 if (opcode > opcodes.length || opcode < 0)
65 String opstring = opcodes[opcode];
164 return opcodes[opcode] + " " + index;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_debug_fp.c34 static const char *opcodes[0x20] = { variable
252 printf("%s ", opcodes[opcode]);
280 printf("%s ", opcodes[opcode]);
293 printf("%s ", opcodes[opcode]);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_debug_fp.c49 static const char *opcodes[0x20] = { variable
268 PRINTF(stream, "%s ", opcodes[opcode]);
297 PRINTF(stream, "%s ", opcodes[opcode]);
325 PRINTF(stream, "%s ", opcodes[opcode]);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DDexFileFactory.java61 public static DexBackedDexFile loadDexFile(@Nonnull String path, @Nonnull Opcodes opcodes) throws IOException { argument
62 return loadDexFile(new File(path), opcodes);
72 * @param opcodes The set of opcodes to use
82 public static DexBackedDexFile loadDexFile(@Nonnull File file, @Nonnull Opcodes opcodes) throws IOException { argument
88 ZipDexContainer container = new ZipDexContainer(file, opcodes);
97 return DexBackedDexFile.fromInputStream(opcodes, inputStream);
103 return DexBackedOdexFile.fromInputStream(opcodes, inputStream);
169 * @param opcodes The set of opcodes t
178 loadDexEntry(@onnull File file, @Nonnull String dexEntry, boolean exactMatch, @Nonnull Opcodes opcodes) argument
232 loadDexContainer( @onnull File file, @Nonnull final Opcodes opcodes) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DClassPathResolver.java58 private final Opcodes opcodes; field in class:ClassPathResolver
112 opcodes = dexFile.getOpcodes();
115 bootClassPathEntries = getDefaultBootClassPath(dexFile, opcodes.api);
227 container = DexFileFactory.loadDexContainer(entryFile, opcodes);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DSyntheticAccessorResolver.java76 public SyntheticAccessorResolver(@Nonnull Opcodes opcodes, @Nonnull Iterable<? extends ClassDef> classDefs) { argument
77 this.syntheticAccessorFSM = new SyntheticAccessorFSM(opcodes);
H A DSyntheticAccessorFSM.java216 @Nonnull private final Opcodes opcodes; field in class:SyntheticAccessorFSM
218 public SyntheticAccessorFSM(@Nonnull Opcodes opcodes) { argument
219 this.opcodes = opcodes;
281 if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) < _SyntheticAccessorFSM_trans_keys[_mid] )
283 else if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) > _SyntheticAccessorFSM_trans_keys[_mid] )
304 if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) < _SyntheticAccessorFSM_trans_keys[_mid] )
306 else if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) > _SyntheticAccessorFSM_trans_keys[_mid+1] )
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DInstructionWriter.java59 @Nonnull private final Opcodes opcodes; field in class:InstructionWriter
71 @Nonnull Opcodes opcodes,
79 opcodes, writer, stringSection, typeSection, fieldSection, methodSection, protoSection);
82 InstructionWriter(@Nonnull Opcodes opcodes, argument
89 this.opcodes = opcodes;
99 Short value = opcodes.getOpcodeValue(opcode);
101 throw new ExceptionWithContext("Instruction %s is invalid for api %d", opcode.name, opcodes.api);
70 makeInstructionWriter( @onnull Opcodes opcodes, @Nonnull DexDataWriter writer, @Nonnull StringSection<?, StringRef> stringSection, @Nonnull TypeSection<?, ?, TypeRef> typeSection, @Nonnull FieldSection<?, ?, FieldRefKey, ?> fieldSection, @Nonnull MethodSection<?, ?, ?, MethodRefKey, ?> methodSection, @Nonnull ProtoSection<?, ?, ProtoRefKey, ?> protoSection) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DDexPool.java65 public DexPool(Opcodes opcodes) { argument
66 super(opcodes);
/external/v8/src/wasm/
H A Dfunction-body-decoder.h15 #include "src/wasm/wasm-opcodes.h"
138 // opcodes.
161 base::iterator_range<opcode_iterator> opcodes() { function in class:v8::internal::wasm::BytecodeIterator
/external/c-ares/
H A Dadig.c170 static const char *opcodes[] = { variable
462 printf("opcode: %s\n", opcodes[opcode]);
/external/iptables/iptables/
H A Dnft-arp.c32 char *opcodes[] = variable
543 printf("--opcode %s", opcodes[tmp-1]);

Completed in 623 milliseconds

12