Searched refs:make (Results 1 - 25 of 65) sorted by relevance

123

/dalvik/dx/src/com/android/dx/rop/code/
H A DExceptions.java64 public static final StdTypeList LIST_Error = StdTypeList.make(TYPE_Error);
71 StdTypeList.make(TYPE_Error, TYPE_ArithmeticException);
78 StdTypeList.make(TYPE_Error, TYPE_ClassCastException);
85 StdTypeList.make(TYPE_Error, TYPE_NegativeArraySizeException);
92 StdTypeList.make(TYPE_Error, TYPE_NullPointerException);
100 StdTypeList.make(TYPE_Error,
111 StdTypeList.make(TYPE_Error,
123 StdTypeList.make(TYPE_Error,
H A DLocalItem.java40 public static LocalItem make(CstUtf8 name, CstUtf8 signature) { method in class:LocalItem
H A DRegisterSpecList.java37 public static RegisterSpecList make(RegisterSpec spec) { method in class:RegisterSpecList
50 public static RegisterSpecList make(RegisterSpec spec0, method in class:RegisterSpecList
66 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
84 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstInteger.java31 public static final CstInteger VALUE_M1 = make(-1);
34 public static final CstInteger VALUE_0 = make(0);
37 public static final CstInteger VALUE_1 = make(1);
40 public static final CstInteger VALUE_2 = make(2);
43 public static final CstInteger VALUE_3 = make(3);
46 public static final CstInteger VALUE_4 = make(4);
49 public static final CstInteger VALUE_5 = make(5);
58 public static CstInteger make(int value) { method in class:CstInteger
60 * Note: No need to synchronize, since we don't make any sort
77 * Constructs an instance. This constructor is private; use {@link #make}
[all...]
H A DCstLong.java28 public static final CstLong VALUE_0 = make(0);
31 public static final CstLong VALUE_1 = make(1);
39 public static CstLong make(long value) { method in class:CstLong
48 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstByte.java28 public static final CstByte VALUE_0 = make((byte) 0);
36 public static CstByte make(byte value) { method in class:CstByte
48 public static CstByte make(int value) { method in class:CstByte
56 return make(cast);
60 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstChar.java28 public static final CstChar VALUE_0 = make((char) 0);
36 public static CstChar make(char value) { method in class:CstChar
48 public static CstChar make(int value) { method in class:CstChar
56 return make(cast);
60 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstFloat.java28 public static final CstFloat VALUE_0 = make(Float.floatToIntBits(0.0f));
31 public static final CstFloat VALUE_1 = make(Float.floatToIntBits(1.0f));
34 public static final CstFloat VALUE_2 = make(Float.floatToIntBits(2.0f));
42 public static CstFloat make(int bits) { method in class:CstFloat
51 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstShort.java28 public static final CstShort VALUE_0 = make((short) 0);
37 public static CstShort make(short value) { method in class:CstShort
49 public static CstShort make(int value) { method in class:CstShort
57 return make(cast);
61 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstBoolean.java39 public static CstBoolean make(boolean value) { method in class:CstBoolean
50 public static CstBoolean make(int value) { method in class:CstBoolean
61 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstDouble.java41 public static CstDouble make(long bits) { method in class:CstDouble
50 * Constructs an instance. This constructor is private; use {@link #make}.
/dalvik/dx/src/com/android/dx/rop/type/
H A DStdTypeList.java30 public static final StdTypeList INT = StdTypeList.make(Type.INT);
33 public static final StdTypeList LONG = StdTypeList.make(Type.LONG);
36 public static final StdTypeList FLOAT = StdTypeList.make(Type.FLOAT);
39 public static final StdTypeList DOUBLE = StdTypeList.make(Type.DOUBLE);
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
46 = StdTypeList.make(Type.RETURN_ADDRESS);
50 StdTypeList.make(Type.THROWABLE);
54 StdTypeList.make(Type.INT, Type.INT);
58 StdTypeList.make(Type.LONG, Type.LONG);
62 StdTypeList.make(Typ
170 public static StdTypeList make(Type type) { method in class:StdTypeList
183 public static StdTypeList make(Type type0, Type type1) { method in class:StdTypeList
198 public static StdTypeList make(Type type0, Type type1, Type type2) { method in class:StdTypeList
215 public static StdTypeList make(Type type0, Type type1, Type type2, method in class:StdTypeList
[all...]
/dalvik/vm/compiler/template/
H A Drebuild.sh22 for arch in armv5te armv5te-vfp armv7-a armv7-a-neon; do TARGET_ARCH_EXT=$arch make -f Makefile-template; done
/dalvik/vm/mterp/
H A Drebuild.sh23 for arch in portstd portdbg allstubs armv4t armv5te armv5te-vfp armv7-a armv7-a-neon x86 x86-atom; do TARGET_ARCH_EXT=$arch make -f Makefile-mterp; done
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DPlatformAddressFactory.java66 private static PlatformAddress make(int value, long size) { method in class:PlatformAddressFactory
128 * We use make() and not on() here, for a couple reasons:
135 PlatformAddress newMemory = make(osAddress, size);
153 // See above for the make() vs. on() rationale.
154 PlatformAddress newMemory = make(osAddress, size);
/dalvik/vm/mterp/armv5te/
H A DOP_EXECUTE_INLINE_RANGE.S18 sub sp, sp, #8 @ make room for arg, +64 bit align
21 bl .L${opcode}_continue @ make call; will return after
H A DOP_EXECUTE_INLINE.S17 sub sp, sp, #8 @ make room for arg, +64 bit align
20 bl .L${opcode}_continue @ make call; will return after
/dalvik/dx/src/com/android/dx/dex/code/
H A DDalvCode.java109 positions = PositionList.make(insns, positionInfo);
110 locals = LocalList.make(insns);
/dalvik/
H A DAndroid.mk40 # DONT_INSTALL_DEX_FILES is already false, so a normal make takes care of it.
64 # so a normal make takes care of it.
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopperMachine.java310 dest = RegisterSpec.make(stackPointer, result(0));
373 RegisterSpec.make(dest.getNextReg(), Type.INT_ARRAY);
401 RegisterSpec.make(dest.getReg(), Type.CLASS);
416 * The component type is an object type, so just make a
440 RegisterSpec.make(dest.getReg(), Type.OBJECT);
444 pos, RegisterSpecList.make(classReg, dimsReg),
460 sources = RegisterSpecList.make(objectReg);
565 RegisterSpec.make(0, type),
616 RegisterSpecList.make(moveResult.getResult()), initValues,
645 sources.set(0, RegisterSpec.make(localInde
[all...]
/dalvik/dx/src/com/android/dx/ssa/back/
H A DRegisterAllocator.java157 * Get new register and make new move instruction.
161 RegisterSpec newRegSpec = RegisterSpec.make(ssaMeth.makeNewSsaReg(),
167 RegisterSpecList.make(reg)), block);
/dalvik/libcore/
H A DJavaLibrary.mk50 # Definitions to make the core library.
70 # Definitions to make the core-tests library.
150 # Definitions to make the core library.
168 # Definitions to make the core-tests library.
/dalvik/vm/mterp/x86/
H A DOP_EXECUTE_INLINE.S19 call .L${opcode}_continue # make call; will return after
H A DOP_SGET.S17 je .L${opcode}_resolve # if not, make it so
H A DOP_SGET_WIDE.S16 je .L${opcode}_resolve # if not, make it so

Completed in 902 milliseconds

123