Home
last modified time | relevance | path

Searched defs:opcodes (Results 1 – 25 of 136) sorted by relevance

123456

/aosp_15_r20/frameworks/libs/binary_translation/assembler/instructions/
Dinsn_def_x86.json21 "Adcb": { "opcodes": [ "80", "2" ] }, array
22 "Rclb": { "opcodes": [ "C0", "2" ] }, array
23 "Rcrb": { "opcodes": [ "C0", "3" ] }, array
24 "Sbbb": { "opcodes": [ "80", "3" ] } array
89 "Adcl": { "opcodes": [ "81", "2" ] }, array
90 "Sbbl": { "opcodes": [ "81", "3" ] } array
111 "AdclImm8": { "opcodes": [ "83", "2" ] }, array
112 "Rcll": { "opcodes": [ "C1", "2" ] }, array
113 "Rcrl": { "opcodes": [ "C1", "3" ] }, array
114 "SbblImm8": { "opcodes": [ "83", "3" ] } array
[all …]
Dinsn_def_x86_64.json43 "Adcq": { "opcodes": [ "81", "2" ] }, array
44 "Sbbq": { "opcodes": [ "81", "3" ] } array
54 "AdcqAccumulator": { "opcodes": [ "48", "15" ] }, array
55 "SbbqAccumulator": { "opcodes": [ "48", "1D" ] } array
65 "AdcqImm8": { "opcodes": [ "83", "2" ] }, array
66 "Rclq": { "opcodes": [ "C1", "2" ] }, array
67 "Rcrq": { "opcodes": [ "C1", "3" ] }, array
68 "SbbqImm8": { "opcodes": [ "83", "3" ] } array
80 "Btcq": { "opcodes": [ "0F", "BB" ], "type": "reg_to_rm" }, array
81 "Btrq": { "opcodes": [ "0F", "B3" ], "type": "reg_to_rm" }, array
[all …]
Dinsn_def_x86_32.json21 "Calll": { "opcodes": [ "FF", "2" ] } array
40 "Decw": { "opcodes": [ "66", "48" ] }, array
41 "Incw": { "opcodes": [ "66", "40" ] } array
50 "Jmpl": { "opcodes": [ "FF", "4" ] } array
58 "Popl": { "opcodes": [ "8F", "0" ] } array
67 "Pushl": { "opcodes": [ "FF", "6" ] } array
76 "Vmovapd": { "feature": "AVX", "opcodes": [ "C4", "01", "01", "28" ] }, array
77 "Vmovaps": { "feature": "AVX", "opcodes": [ "C4", "01", "00", "28" ] } array
86 "Vmovdqa": { "feature": "AVX", "opcodes": [ "C4", "01", "01", "6F" ] }, array
87 "Vmovdqu": { "feature": "AVX", "opcodes": [ "C4", "01", "02", "6F" ] } array
[all …]
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/
H A DDexBackedDexFile.java76 @Nonnull private final Opcodes opcodes; field in DexBackedDexFile
94 …DexBackedDexFile(@Nullable Opcodes opcodes, @Nonnull byte[] buf, int offset, boolean verifyMagic) { in DexBackedDexFile()
98 protected DexBackedDexFile(@Nullable Opcodes opcodes, in DexBackedDexFile()
180 public DexBackedDexFile(@Nullable Opcodes opcodes, @Nonnull DexBuffer buf) { in DexBackedDexFile()
184 public DexBackedDexFile(@Nullable Opcodes opcodes, @Nonnull byte[] buf, int offset) { in DexBackedDexFile()
188 public DexBackedDexFile(@Nullable Opcodes opcodes, @Nonnull byte[] buf) { in DexBackedDexFile()
193 … public static DexBackedDexFile fromInputStream(@Nullable Opcodes opcodes, @Nonnull InputStream is) in fromInputStream()
H A DCDexBackedDexFile.java43 …DexBackedDexFile(@Nullable Opcodes opcodes, @Nonnull byte[] buf, int offset, boolean verifyMagic) { in CDexBackedDexFile()
47 public CDexBackedDexFile(@Nullable Opcodes opcodes, @Nonnull DexBuffer buf) { in CDexBackedDexFile()
51 public CDexBackedDexFile(@Nullable Opcodes opcodes, @Nonnull byte[] buf, int offset) { in CDexBackedDexFile()
55 public CDexBackedDexFile(@Nullable Opcodes opcodes, @Nonnull byte[] buf) { in CDexBackedDexFile()
H A DZipDexContainer.java63 @Nullable private final Opcodes opcodes; field in ZipDexContainer
71 public ZipDexContainer(@Nonnull File zipFilePath, @Nullable Opcodes opcodes) { in ZipDexContainer()
/aosp_15_r20/art/compiler/debug/
H A Delf_debug_frame_writer.h47 dwarf::DebugFrameOpCodeWriter<> opcodes; in WriteCIE() local
70 dwarf::DebugFrameOpCodeWriter<> opcodes; in WriteCIE() local
93 dwarf::DebugFrameOpCodeWriter<> opcodes; in WriteCIE() local
118 dwarf::DebugFrameOpCodeWriter<> opcodes; in WriteCIE() local
142 dwarf::DebugFrameOpCodeWriter<> opcodes; in WriteCIE() local
/aosp_15_r20/art/compiler/debug/dwarf/
H A Ddwarf_test.cc43 DebugFrameOpCodeWriter<> opcodes; in TEST_F() local
138 DebugFrameOpCodeWriter<> opcodes; in TEST_F() local
155 DebugFrameOpCodeWriter<> opcodes; in TEST_F() local
195 DebugLineOpCodeWriter<> opcodes(is64bit, code_factor_bits); in TEST_F() local
253 DebugLineOpCodeWriter<> opcodes(is64bit, code_factor_bits); in TEST_F() local
/aosp_15_r20/external/tensorflow/tensorflow/lite/toco/tflite/
H A Dimport_test.cc130 auto opcodes = BuildOpCodes(); in BuildTestModel() local
192 auto opcodes = BuildOpCodes(); in TEST_F() local
206 auto opcodes = BuildOpCodes(); in TEST_F() local
220 auto opcodes = BuildOpCodes(); in TEST_F() local
234 auto opcodes = BuildOpCodes({static_cast<::tflite::BuiltinOperator>(-1), in TEST_F() local
249 auto opcodes = BuildOpCodes(); in TEST_F() local
/aosp_15_r20/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputFinisher.java412 Dop[] opcodes = makeOpcodesArray(); in finishProcessingAndGetList() local
454 private boolean reserveRegisters(Dop[] opcodes) { in reserveRegisters()
510 private int calculateReservedCount(Dop[] opcodes) { in calculateReservedCount()
624 private void massageInstructions(Dop[] opcodes) { in massageInstructions()
664 private ArrayList<DalvInsn> performExpansion(Dop[] opcodes) { in performExpansion()
843 private void align64bits(Dop[] opcodes) { in align64bits()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/immutable/
H A DImmutableDexFile.java45 @Nonnull private final Opcodes opcodes; field in ImmutableDexFile
47 …blic ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable Collection<? extends ClassDef> classes) { in ImmutableDexFile()
52 …ic ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable Set<? extends ImmutableClassDef> classes) { in ImmutableDexFile()
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.11.rst1626 .. _whatsnew311-replaced-opcodes:
1661 .. [#bytecode-jump] All jump opcodes are now relative, including the
1667 .. _whatsnew311-changed-opcodes:
1668 .. _whatsnew311-removed-opcodes:
1669 .. _whatsnew311-changed-removed-opcodes:
1687 .. _whatsnew311-deprecated:
1688 .. _whatsnew311-python-api-deprecated:
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Symbol/
DUnwindPlan.h154 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr()
192 const uint8_t *opcodes; member
244 void SetIsDWARFExpression(const uint8_t *opcodes, uint32_t len) { in SetIsDWARFExpression()
279 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr()
315 const uint8_t *opcodes; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/Symbol/
DUnwindPlan.h154 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr()
192 const uint8_t *opcodes; member
244 void SetIsDWARFExpression(const uint8_t *opcodes, uint32_t len) { in SetIsDWARFExpression()
279 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr()
315 const uint8_t *opcodes; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/lldb/Symbol/
DUnwindPlan.h154 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr()
192 const uint8_t *opcodes; member
244 void SetIsDWARFExpression(const uint8_t *opcodes, uint32_t len) { in SetIsDWARFExpression()
279 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr()
315 const uint8_t *opcodes; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/lldb/Symbol/
DUnwindPlan.h154 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr()
192 const uint8_t *opcodes; member
244 void SetIsDWARFExpression(const uint8_t *opcodes, uint32_t len) { in SetIsDWARFExpression()
279 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr()
315 const uint8_t *opcodes; member
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/
H A DDexFileFactory.java68 …public static DexBackedDexFile loadDexFile(@Nonnull String path, @Nullable Opcodes opcodes) throws… in loadDexFile()
89 …public static DexBackedDexFile loadDexFile(@Nonnull File file, @Nullable Opcodes opcodes) throws I… in loadDexFile()
186 @Nullable Opcodes opcodes) throws IOException { in loadDexEntry()
237 @Nonnull File file, @Nullable final Opcodes opcodes) throws IOException { in loadDexContainer()
/aosp_15_r20/art/libelffile/dwarf/
H A Dheaders.h43 const DebugFrameOpCodeWriter<Vector>& opcodes, in WriteCIE()
69 const ArrayRef<const uint8_t>& opcodes, in WriteFDE()
119 const DebugLineOpCodeWriter<Vector>& opcodes, in WriteDebugLineTable()
/aosp_15_r20/external/bpftool/src/
H A Dcfg.c385 bool opcodes, bool linum) in draw_bb_node()
434 bool opcodes, bool linum) in func_output_bb_def()
460 cfg_dump(struct cfg *cfg, struct dump_data *dd, bool opcodes, bool linum) in cfg_dump()
476 bool opcodes, bool linum) in dump_xlated_cfg()
H A Dxlated_dumper.c219 bool opcodes, bool linum) in dump_xlated_json()
304 bool opcodes, bool linum) in dump_xlated_plain()
369 bool opcodes, bool linum) in dump_xlated_for_graph()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/analysis/
H A DPathEntryLoader.java48 Opcodes opcodes; field in PathEntryLoader
61 public PathEntryLoader(Opcodes opcodes) { in PathEntryLoader()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/writer/
H A DInstructionWriter.java97 @Nonnull private final Opcodes opcodes; field in InstructionWriter
112 makeInstructionWriter( in makeInstructionWriter()
128 InstructionWriter(@Nonnull Opcodes opcodes, in InstructionWriter()
H A DDexWriter.java173 protected final Opcodes opcodes; field in DexWriter
227 protected DexWriter(Opcodes opcodes) { in DexWriter()
/aosp_15_r20/external/angle/third_party/spirv-tools/src/test/opt/
H A Ddef_use_test.cpp54 std::vector<spv::Op> opcodes; in GetUseOpcodes() local
1300 std::vector<spv::Op> opcodes = GetUseOpcodes(context, 6u); in TEST() local
1306 std::vector<spv::Op> opcodes = GetUseOpcodes(context, 7u); in TEST() local
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/opt/
Ddef_use_test.cpp54 std::vector<spv::Op> opcodes; in GetUseOpcodes() local
1300 std::vector<spv::Op> opcodes = GetUseOpcodes(context, 6u); in TEST() local
1306 std::vector<spv::Op> opcodes = GetUseOpcodes(context, 7u); in TEST() local

123456