OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:instruction
(Results
1 - 25
of
327
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/proguard/src/proguard/classfile/instruction/
InstructionFactory.java
21
package proguard.classfile.
instruction
;
24
* This class provides methods to create and reuse
Instruction
objects.
31
* Creates a new
Instruction
from the data in the byte array, starting
34
public static
Instruction
create(byte[] code, int offset)
36
Instruction
instruction
;
local
168
instruction
= new SimpleInstruction();
192
instruction
= new ConstantInstruction();
251
instruction
= new VariableInstruction(wide);
277
instruction
= new BranchInstruction()
[
all
...]
InstructionUtil.java
21
package proguard.classfile.
instruction
;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
InstructionWriter.java
35
import org.jf.dexlib2.iface.
instruction
.ReferenceInstruction;
36
import org.jf.dexlib2.iface.
instruction
.SwitchElement;
37
import org.jf.dexlib2.iface.
instruction
.formats.*;
80
public void write(@Nonnull Instruction10t
instruction
) {
82
writer.write(
instruction
.getOpcode().value);
83
writer.write(
instruction
.getCodeOffset());
89
public void write(@Nonnull Instruction10x
instruction
) {
91
writer.write(
instruction
.getOpcode().value);
98
public void write(@Nonnull Instruction11n
instruction
) {
100
writer.write(
instruction
.getOpcode().value)
[
all
...]
/art/disassembler/
disassembler_arm64.cc
35
uint32_t
instruction
= ReadU32(begin);
local
36
decoder.Decode(reinterpret_cast<vixl::
Instruction
*>(&
instruction
));
38
<< StringPrintf(": %08x\t%s\n",
instruction
, disasm.GetOutput());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
37
import org.jf.dexlib2.iface.
instruction
.
Instruction
;
43
public abstract class DexBackedInstruction implements
Instruction
{
60
public static
Instruction
readFrom(@Nonnull DexReader reader) {
69
Instruction
instruction
= buildInstruction(reader.dexBuf, opcode, reader.getOffset());
local
70
reader.moveRelative(
instruction
.getCodeUnits()*2);
71
return
instruction
;
DexBackedInstruction10x.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction10x;
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java
35
import org.jf.dexlib2.iface.
instruction
.*;
109
RegisterRangeInstruction
instruction
= (RegisterRangeInstruction)analyzedInstruction.getInstruction();
local
111
registers.set(
instruction
.getStartRegister(),
112
instruction
.getStartRegister() +
instruction
.getRegisterCount());
114
FiveRegisterInstruction
instruction
= (FiveRegisterInstruction)analyzedInstruction.getInstruction();
local
115
int regCount =
instruction
.getRegisterCount();
118
registers.set(
instruction
.getRegisterG());
121
registers.set(
instruction
.getRegisterF());
124
registers.set(
instruction
.getRegisterE())
133
ThreeRegisterInstruction
instruction
= (ThreeRegisterInstruction)analyzedInstruction.getInstruction();
local
138
TwoRegisterInstruction
instruction
= (TwoRegisterInstruction)analyzedInstruction.getInstruction();
local
142
OneRegisterInstruction
instruction
= (OneRegisterInstruction)analyzedInstruction.getInstruction();
local
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
FieldOffsetInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
34
public interface FieldOffsetInstruction extends
Instruction
{
HatLiteralInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
34
public interface HatLiteralInstruction extends
Instruction
{
InlineIndexInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
34
public interface InlineIndexInstruction extends
Instruction
{
LongHatLiteralInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
NarrowHatLiteralInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
NarrowLiteralInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
OffsetInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
34
public interface OffsetInstruction extends
Instruction
{
OneRegisterInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
34
public interface OneRegisterInstruction extends
Instruction
{
PayloadInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
37
public interface PayloadInstruction extends
Instruction
{
RegisterRangeInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
SwitchPayload.java
32
package org.jf.dexlib2.iface.
instruction
;
ThreeRegisterInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
TwoRegisterInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
VariableRegisterInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
34
public interface VariableRegisterInstruction extends
Instruction
{
VerificationErrorInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
34
public interface VerificationErrorInstruction extends
Instruction
{
VtableIndexInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
34
public interface VtableIndexInstruction extends
Instruction
{
WideLiteralInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
34
public interface WideLiteralInstruction extends
Instruction
{
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
Instruction10t.java
32
package org.jf.dexlib2.iface.
instruction
.formats;
34
import org.jf.dexlib2.iface.
instruction
.OffsetInstruction;
Completed in 2257 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>