/art/compiler/optimizing/ |
D | scheduler_arm64.h | 67 #define FOR_EACH_SCHEDULED_COMMON_INSTRUCTION(M) \ argument 68 M(ArrayGet , unused) \ 69 M(ArrayLength , unused) \ 70 M(ArraySet , unused) \ 71 M(BoundsCheck , unused) \ 72 M(Div , unused) \ 73 M(InstanceFieldGet , unused) \ 74 M(InstanceOf , unused) \ 75 M(LoadString , unused) \ 76 M(Mul , unused) \ [all …]
|
D | scheduler_arm.h | 64 #define FOR_EACH_SCHEDULED_ARM_INSTRUCTION(M) \ argument 65 M(ArrayGet, unused) \ 66 M(ArrayLength, unused) \ 67 M(ArraySet, unused) \ 68 M(Add, unused) \ 69 M(Sub, unused) \ 70 M(And, unused) \ 71 M(Or, unused) \ 72 M(Ror, unused) \ 73 M(Xor, unused) \ [all …]
|
D | nodes.h | 1478 #define FOR_EACH_CONCRETE_INSTRUCTION_SCALAR_COMMON(M) \ argument 1479 M(Above, Condition) \ 1480 M(AboveOrEqual, Condition) \ 1481 M(Abs, UnaryOperation) \ 1482 M(Add, BinaryOperation) \ 1483 M(And, BinaryOperation) \ 1484 M(ArrayGet, Instruction) \ 1485 M(ArrayLength, Instruction) \ 1486 M(ArraySet, Instruction) \ 1487 M(Below, Condition) \ [all …]
|
/art/runtime/ |
D | class_root.h | 58 #define CLASS_MIRROR_ROOT_LIST(M) … argument 59 …M(kJavaLangClass, "Ljava/lang/Class;", mirror::Cl… 60 …M(kJavaLangObject, "Ljava/lang/Object;", mirror::Ob… 61 …M(kClassArrayClass, "[Ljava/lang/Class;", mirror::Ob… 62 …M(kObjectArrayClass, "[Ljava/lang/Object;", mirror::Ob… 63 …M(kJavaLangString, "Ljava/lang/String;", mirror::St… 64 …M(kJavaLangDexCache, "Ljava/lang/DexCache;", mirror::De… 65 …M(kJavaLangRefReference, "Ljava/lang/ref/Reference;", mirror::Re… 66 …M(kJavaLangReflectConstructor, "Ljava/lang/reflect/Constructor;", mirror::Co… 67 …M(kJavaLangReflectField, "Ljava/lang/reflect/Field;", mirror::Fi… [all …]
|
D | parsed_options.cc | 73 using M = RuntimeArgumentMap; in MakeParser() typedef 90 .IntoKey(M::ClassPath) in MakeParser() 93 .IntoKey(M::PropertiesList) in MakeParser() 97 .IntoKey(M::Verbose) in MakeParser() 100 .IntoKey(M::Help) in MakeParser() 102 .IntoKey(M::ShowVersion) in MakeParser() 110 .IntoKey(M::AgentPath) in MakeParser() 114 .IntoKey(M::BootClassPath) in MakeParser() 116 .IntoKey(M::CheckJni) in MakeParser() 119 .IntoKey(M::MemoryInitialSize) in MakeParser() [all …]
|
/art/libartpalette/include/palette/ |
D | palette_method_list.h | 27 #define PALETTE_METHOD_LIST(M) \ argument 28 M(PaletteSchedSetPriority, int32_t tid, int32_t java_priority) \ 29 M(PaletteSchedGetPriority, int32_t tid, /*out*/int32_t* java_priority) \ 30 M(PaletteWriteCrashThreadStacks, const char* stacks, size_t stacks_len) \ 31 M(PaletteTraceEnabled, /*out*/bool* enabled) \ 32 M(PaletteTraceBegin, const char* name) \ 33 M(PaletteTraceEnd) \ 34 M(PaletteTraceIntegerValue, const char* name, int32_t value) \ 35 M(PaletteAshmemCreateRegion, const char* name, size_t size, int* fd) \ 36 M(PaletteAshmemSetProtRegion, int, int) \ [all …]
|
/art/dex2oat/ |
D | dex2oat_options.cc | 53 using M = Dex2oatArgumentMap; typedef 64 .IntoKey(M::DexFiles) in AddInputMappings() 73 .IntoKey(M::DexLocations) in AddInputMappings() 78 .IntoKey(M::ZipFd) in AddInputMappings() 83 .IntoKey(M::ZipLocation) in AddInputMappings() 99 .IntoKey(M::BootImage); in AddInputMappings() 107 .IntoKey(M::InputVdexFd) in AddGeneratedArtifactMappings() 111 .IntoKey(M::InputVdex) in AddGeneratedArtifactMappings() 115 .IntoKey(M::OutputVdexFd) in AddGeneratedArtifactMappings() 119 .IntoKey(M::OutputVdex) in AddGeneratedArtifactMappings() [all …]
|
D | dex2oat.cc | 1023 using M = Dex2oatArgumentMap; in ParseArgs() typedef 1025 std::unique_ptr<M> args_uptr = M::Parse(argc, const_cast<const char**>(argv), &error_msg); in ParseArgs() 1031 M& args = *args_uptr; in ParseArgs() 1035 AssignIfExists(args, M::CompactDexLevel, &compact_dex_level_); in ParseArgs() 1036 AssignIfExists(args, M::DexFiles, &dex_filenames_); in ParseArgs() 1037 AssignIfExists(args, M::DexLocations, &dex_locations_); in ParseArgs() 1038 AssignIfExists(args, M::OatFile, &oat_filenames_); in ParseArgs() 1039 AssignIfExists(args, M::OatSymbols, &parser_options->oat_symbols); in ParseArgs() 1040 AssignTrueIfExists(args, M::Strip, &strip_); in ParseArgs() 1041 AssignIfExists(args, M::ImageFilename, &image_filenames_); in ParseArgs() [all …]
|
/art/cmdline/ |
D | cmdline_parser_test.cc | 131 using M = RuntimeArgumentMap; typedef in art::CmdlineParserTest 225 EXPECT_SINGLE_PARSE_EXISTS("-Xzygote", M::Zygote); in TEST_F() 228 M::BootClassPath); in TEST_F() 231 M::BootClassPath); in TEST_F() 232 EXPECT_SINGLE_PARSE_VALUE_STR("/hello/world", "-classpath /hello/world", M::ClassPath); in TEST_F() 233 EXPECT_SINGLE_PARSE_VALUE(Memory<1>(234), "-Xss234", M::StackSize); in TEST_F() 234 EXPECT_SINGLE_PARSE_VALUE(MemoryKiB(1234*MB), "-Xms1234m", M::MemoryInitialSize); in TEST_F() 235 EXPECT_SINGLE_PARSE_VALUE(true, "-XX:EnableHSpaceCompactForOOM", M::EnableHSpaceCompactForOOM); in TEST_F() 236 EXPECT_SINGLE_PARSE_VALUE(false, "-XX:DisableHSpaceCompactForOOM", M::EnableHSpaceCompactForOOM); in TEST_F() 237 EXPECT_SINGLE_PARSE_VALUE(0.5, "-XX:HeapTargetUtilization=0.5", M::HeapTargetUtilization); in TEST_F() [all …]
|
/art/test/646-checker-simd-hadd/src/ |
D | HaddOther.java | 19 private static final int M = N + 31; field in HaddOther 126 short[] sA = new short[M]; in main() 127 short[] sB = new short[M]; in main() 128 short[] sOut = new short[M]; in main() 129 int[] iA = new int[M]; in main() 130 int[] iB = new int[M]; in main() 131 int[] iOut = new int[M]; in main() 146 for (int i = 0; i < M; i++) { in main() 154 for (int i = 0; i < M; i++) { in main() 159 for (int i = 0; i < M; i++) { in main() [all …]
|
D | HaddAltChar.java | 26 private static final int M = N + 31; field in HaddAltChar 28 static char[] sB1 = new char[M]; 29 static char[] sB2 = new char[M]; 30 static char[] sBo = new char[M]; 323 for (int i = 0; i < M; i++) { in main() 332 for (int i = 0; i < M; i++) { in main() 337 for (int i = 0; i < M; i++) { in main() 342 for (int i = 0; i < M; i++) { in main() 347 for (int i = 0; i < M; i++) { in main() 352 for (int i = 0; i < M; i++) { in main() [all …]
|
D | HaddAltShort.java | 26 private static final int M = N + 31; field in HaddAltShort 28 static short[] sB1 = new short[M]; 29 static short[] sB2 = new short[M]; 30 static short[] sBo = new short[M]; 316 for (int i = 0; i < M; i++) { in main() 325 for (int i = 0; i < M; i++) { in main() 330 for (int i = 0; i < M; i++) { in main() 335 for (int i = 0; i < M; i++) { in main() 340 for (int i = 0; i < M; i++) { in main() 345 for (int i = 0; i < M; i++) { in main() [all …]
|
D | HaddChar.java | 23 private static final int M = N + 31; field in HaddChar 25 static char[] sB1 = new char[M]; 26 static char[] sB2 = new char[M]; 27 static char[] sBo = new char[M]; 317 for (int i = 0; i < M; i++) { in main() 324 for (int i = 0; i < M; i++) { in main() 329 for (int i = 0; i < M; i++) { in main() 334 for (int i = 0; i < M; i++) { in main() 339 for (int i = 0; i < M; i++) { in main() 344 for (int i = 0; i < M; i++) { in main() [all …]
|
D | HaddAltByte.java | 26 private static final int M = N * N + 15; field in HaddAltByte 28 static byte[] sB1 = new byte[M]; 29 static byte[] sB2 = new byte[M]; 30 static byte[] sBo = new byte[M]; 314 expectEquals(k, M); in main() 320 for (int i = 0; i < M; i++) { in main() 325 for (int i = 0; i < M; i++) { in main() 330 for (int i = 0; i < M; i++) { in main() 335 for (int i = 0; i < M; i++) { in main() 340 for (int i = 0; i < M; i++) { in main() [all …]
|
D | HaddByte.java | 23 private static final int M = N * N + 15; field in HaddByte 25 static byte[] sB1 = new byte[M]; 26 static byte[] sB2 = new byte[M]; 27 static byte[] sBo = new byte[M]; 311 expectEquals(k, M); in main() 315 for (int i = 0; i < M; i++) { in main() 320 for (int i = 0; i < M; i++) { in main() 325 for (int i = 0; i < M; i++) { in main() 330 for (int i = 0; i < M; i++) { in main() 335 for (int i = 0; i < M; i++) { in main() [all …]
|
D | HaddShort.java | 23 private static final int M = N + 31; field in HaddShort 25 static short[] sB1 = new short[M]; 26 static short[] sB2 = new short[M]; 27 static short[] sBo = new short[M]; 539 for (int i = 0; i < M; i++) { in main() 546 for (int i = 0; i < M; i++) { in main() 551 for (int i = 0; i < M; i++) { in main() 556 for (int i = 0; i < M; i++) { in main() 561 for (int i = 0; i < M; i++) { in main() 566 for (int i = 0; i < M; i++) { in main() [all …]
|
/art/test/661-checker-simd-reduc/src/ |
D | Main.java | 23 static final int M = 100; field in Main 597 byte[] xpb = new byte[M]; in main() 598 short[] xps = new short[M]; in main() 599 char[] xpc = new char[M]; in main() 600 int[] xpi = new int[M]; in main() 601 long[] xpl = new long[M]; in main() 602 for (int i = 0, k = 3; i < M; i++, k++) { in main() 611 byte[] xnb = new byte[M]; in main() 612 short[] xns = new short[M]; in main() 613 int[] xni = new int[M]; in main() [all …]
|
/art/test/960-default-smali/ |
D | expected-stdout.txt | 94 Testing for type M 95 M-interface Foo.bar()='BAZ!' 96 M-interface Fooer.bar()='BAZ!' 97 M-virtual K.bar()='BAZ!' 98 M-virtual L.bar()='BAZ!' 99 M-virtual M.bar()='BAZ!' 100 End testing for type M
|
/art/libartbase/base/ |
D | bit_struct_detail.h | 136 template <typename T, typename M> 137 M GetMemberType(M T:: *);
|
/art/test/570-checker-osr-locals/ |
D | run | 18 exec ${RUN} "$@" --runtime-option -Xjitinitialsize:32M
|
/art/test/960-default-smali/src/ |
D | M.java | 17 class M extends L implements Fooer { class
|
/art/test/570-checker-osr/ |
D | run | 18 exec ${RUN} "$@" --runtime-option -Xjitinitialsize:32M
|
/art/test/566-polymorphic-inlining/ |
D | run | 19 --runtime-option -Xjitinitialsize:32M \
|
/art/test/667-jit-jni-stub/ |
D | run | 19 ${RUN} "${@}" --no-prebuild --runtime-option -Xjitinitialsize:32M
|
/art/test/1935-get-set-current-frame-jit/ |
D | run | 18 ./default-run "$@" --jvmti --runtime-option -Xjitinitialsize:32M
|