/art/test/122-npe/src/ |
D | Main.java | 46 } catch (NullPointerException e) { in methodTwo() 47 npe = e; in methodTwo() 54 } catch (NullPointerException e) { in methodTwo() 55 npe = e; in methodTwo() 62 } catch (NullPointerException e) { in methodTwo() 63 npe = e; in methodTwo() 69 } catch (NullPointerException e) { in methodTwo() 70 npe = e; in methodTwo() 76 } catch (NullPointerException e) { in methodTwo() 77 npe = e; in methodTwo() [all …]
|
/art/test/044-proxy/src/ |
D | ReturnsAndArgPassing.java | 87 } catch (Exception e) { in invoke() 88 throw new Error("return type = " + returnType, e); in invoke() 188 } catch (NullPointerException e) { in testProxyReturns() 196 } catch (NullPointerException e) { in testProxyReturns() 204 } catch (NullPointerException e) { in testProxyReturns() 212 } catch (NullPointerException e) { in testProxyReturns() 220 } catch (NullPointerException e) { in testProxyReturns() 228 } catch (NullPointerException e) { in testProxyReturns() 236 } catch (NullPointerException e) { in testProxyReturns() 244 } catch (NullPointerException e) { in testProxyReturns() [all …]
|
/art/test/405-optimizing-long-allocator/src/ |
D | Main.java | 91 long e = 0; in $opt$TestMultipleLive() local 99 e += 3; in $opt$TestMultipleLive() 124 long e = 0; in $opt$testSpillInIf() local 129 e += 3; in $opt$testSpillInIf() 132 return a - b - c - d - e; in $opt$testSpillInIf() 135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1() argument 138 long j = e - f; in $opt$TestAgressiveLive1() 153 return a - b - c - d - e - f - g - h - i - j - k; in $opt$TestAgressiveLive1() 156 …public static long $opt$TestAgressiveLive2(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive2() argument 159 long j = e - f; in $opt$TestAgressiveLive2() [all …]
|
/art/test/404-optimizing-allocator/src/ |
D | Main.java | 85 int e = 0; in $opt$reg$TestMultipleLive() local 93 e += 3; in $opt$reg$TestMultipleLive() 118 int e = 0; in $opt$reg$testSpillInIf() local 123 e += 3; in $opt$reg$testSpillInIf() 126 return a - b - c - d - e; in $opt$reg$testSpillInIf() 129 public static int $opt$reg$TestAgressiveLive1(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive1() argument 132 int j = e - f; in $opt$reg$TestAgressiveLive1() 147 return a - b - c - d - e - f - g - h - i - j - k; in $opt$reg$TestAgressiveLive1() 150 public static int $opt$reg$TestAgressiveLive2(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive2() argument 153 int j = e - f; in $opt$reg$TestAgressiveLive2() [all …]
|
/art/compiler/utils/ |
D | assembler_thumb_test_expected.cc.inc | 36 " 2e: 4388 bics r0, r1\n", 43 " 3e: 42c8 cmn r0, r1\n", 54 " e: f001 0055 and.w r0, r1, #85 ; 0x55\n", 58 " 1e: f141 0055 adc.w r0, r1, #85 ; 0x55\n", 62 " 2e: f090 0f55 teq r0, #85 ; 0x55\n", 68 " 3e: f07f 0055 mvns.w r0, #85 ; 0x55\n", 106 " e: 0968 lsrs r0, r5, #5\n", 118 " e: 9b06 ldr r3, [sp, #24]\n", 141 " e: f854 3d18 ldr.w r3, [r4, #-24]!\n", 150 " 2e: f834 3f18 ldrh.w r3, [r4, #24]!\n", [all …]
|
/art/test/401-optimizing-compiler/src/ |
D | Main.java | 25 } catch (Error e) { in main() 26 error = e; in main() 93 } catch (NullPointerException e) { in main() 94 exception = e; in main() 128 static int $opt$TestInvokeWith5Parameters(int a, int b, int c, int d, int e) { in $opt$TestInvokeWith5Parameters() argument 129 return a - b - c - d - e; in $opt$TestInvokeWith5Parameters() 132 static int $opt$TestInvokeWith7Parameters(int a, int b, int c, int d, int e, int f, int g) { in $opt$TestInvokeWith7Parameters() argument 133 return a - b - c - d - e - f - g; in $opt$TestInvokeWith7Parameters() 176 public static void printStaticMethodWith5Args(int a, int b, int c, int d, int e) { in printStaticMethodWith5Args() argument 178 + a + " " + b + " " + c + " " + d + " " + e); in printStaticMethodWith5Args() [all …]
|
/art/test/700-LoadArgRegs/ |
D | expected.txt | 25 a, b, c, d, e 26 a, b, c, d, e, f 27 a, b, c, d, e, f, g 32 11, b, true, 12, e 33 11, b, true, 12, e, false 34 11, b, true, 12, e, false, 13
|
/art/test/105-invoke/src/ |
D | Main.java | 35 int virI_IIIII(int a, int b, int c, int d, int e) { in virI_IIIII() argument 36 return a + b + c + d + e + 1010; in virI_IIIII() 39 int virI_IIIIII(int a, int b, int c, int d, int e, int f) { in virI_IIIIII() argument 40 return a + b + c + d + e + f + 2020; in virI_IIIIII() 59 static int statI_IIIII(int a, int b, int c, int d, int e) { in statI_IIIII() argument 60 return a + b + c + d + e + 1010; in statI_IIIII() 63 static int statI_IIIIII(int a, int b, int c, int d, int e, int f) { in statI_IIIIII() argument 64 return a + b + c + d + e + f + 2020; in statI_IIIIII()
|
/art/test/131-structural-change/src/ |
D | Main.java | 33 } catch (Exception e) { in run() 34 e.printStackTrace(System.out); in run() 42 } catch (Exception e) { in run() 43 e.printStackTrace(System.out); in run()
|
/art/compiler/optimizing/ |
D | code_generator.cc | 49 for (size_t i = 0, e = blocks.Size(); i < e; ++i) { in CompileBaseline() local 78 for (size_t i = 0, e = blocks.Size(); i < e; ++i) { in CompileOptimized() local 96 for (size_t i = 0, e = slow_paths_.Size(); i < e; ++i) { in GenerateSlowPaths() local 150 for (size_t i = 0, e = GetNumberOfRegisters(); i < e; ++i) { in AllocateRegistersLocally() local 155 for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) { in AllocateRegistersLocally() local 164 for (size_t i = 0, e = locations->GetTempCount(); i < e; ++i) { in AllocateRegistersLocally() local 176 for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) { in AllocateRegistersLocally() local 198 for (size_t i = 0, e = locations->GetTempCount(); i < e; ++i) { in AllocateRegistersLocally() local 236 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) { in InitLocations() local
|
D | register_allocator.cc | 52 for (size_t i = 0, e = graph.GetBlocks().Size(); i < e; ++i) { in CanAllocateRegistersFor() local 215 for (size_t i = 0, e = physical_register_intervals_.Size(); i < e; ++i) { in ValidateInternal() local 244 for (size_t i = 0, e = intervals.Size(); i < e; ++i) { in ValidateIntervals() local 378 for (size_t i = 0, e = inactive_.Size(); i < e; ++i) { in TryAllocateFreeReg() local 388 for (size_t i = 0, e = active_.Size(); i < e; ++i) { in TryAllocateFreeReg() local 446 for (size_t i = 0, e = active_.Size(); i < e; ++i) { in AllocateBlockedReg() local 463 for (size_t i = 0, e = inactive_.Size(); i < e; ++i) { in AllocateBlockedReg() local 502 for (size_t i = 0, e = active_.Size(); i < e; ++i) { in AllocateBlockedReg() local 603 for (size_t e = spill_slots_.Size(); slot < e; ++slot) { in AllocateTwoSpillSlots() local 609 && (slot == (e - 1) || spill_slots_.Get(slot + 1) < parent->GetStart())) { in AllocateTwoSpillSlots() [all …]
|
D | find_loops_test.cc | 48 for (size_t i = 0, e = graph->GetBlocks().Size(); i < e; ++i) { in TEST() local 60 for (size_t i = 0, e = graph->GetBlocks().Size(); i < e; ++i) { in TEST() local 75 for (size_t i = 0, e = graph->GetBlocks().Size(); i < e; ++i) { in TEST() local 91 for (size_t i = 0, e = graph->GetBlocks().Size(); i < e; ++i) { in TEST() local 105 for (size_t i = 0, e = graph->GetBlocks().Size(); i < e; ++i) { in TEST() local
|
D | ssa_liveness_analysis.cc | 175 for (size_t i = 0, e = block->GetSuccessors().Size(); i < e; ++i) { in ComputeLiveRanges() local 205 for (size_t i = 0, e = current->InputCount(); i < e; ++i) { in ComputeLiveRanges() local 218 for (size_t i = 0, e = environment->Size(); i < e; ++i) { in ComputeLiveRanges() local 277 for (size_t i = 0, e = block.GetSuccessors().Size(); i < e; ++i) { in UpdateLiveOut() local
|
D | graph_visualizer.cc | 87 for (size_t i = 0, e = block->GetPredecessors().Size(); i < e; ++i) { in PrintPredecessors() local 97 for (size_t i = 0, e = block->GetSuccessors().Size(); i < e; ++i) { in PrintSuccessors() local 126 for (size_t i = 0, e = instruction->NumMoves(); i < e; ++i) { in VisitParallelMove() local 131 if (i + 1 != e) { in VisitParallelMove()
|
/art/test/StaticLeafMethods/ |
D | StaticLeafMethods.java | 35 static int sum(int a, int b, int c, int d, int e) { in sum() argument 36 return a + b + c + d + e; in sum() 50 static double sum(double a, double b, double c, double d, double e) { in sum() argument 51 return a + b + c + d + e; in sum()
|
/art/test/NonStaticLeafMethods/ |
D | NonStaticLeafMethods.java | 37 int sum(int a, int b, int c, int d, int e) { in sum() argument 38 return a + b + c + d + e; in sum() 52 double sum(double a, double b, double c, double d, double e) { in sum() argument 53 return a + b + c + d + e; in sum()
|
/art/test/ExceptionHandle/ |
D | ExceptionHandle.java | 23 } catch (IOException e) { in f() 25 } catch (Exception e) { in f() 30 } catch (IOException e) { in f()
|
/art/test/099-vmdebug/src/ |
D | Main.java | 35 } catch (IOException e) { in testMethodTracing() 81 } catch (Exception e) { in testMethodTracing() 89 } catch (Exception e) { in testMethodTracing() 97 } catch (Exception e) { in testMethodTracing() 115 } catch (Exception e) { 116 throw new RuntimeException(e);
|
/art/test/106-exceptions2/src/ |
D | Main.java | 148 Main e = null; in nullCheckTestThrow() local 151 return base.checkThrow(a,b,c,d,e,f); in nullCheckTestThrow() 167 } catch (ArrayIndexOutOfBoundsException e) { in checkAIOBE() 175 } catch (ArrayIndexOutOfBoundsException e) { in checkAIOBE() 191 } catch (ArrayIndexOutOfBoundsException e) { in checkDivZero() 193 } catch (ArithmeticException e) { in checkDivZero()
|
/art/test/022-interface/src/ |
D | Main.java | 64 public CharSequence subSequence(int s, int e) { in objectOverrideTests() 65 return toString().subSequence(s, e); in objectOverrideTests() 81 public CharSequence subSequence(int s, int e) { in subSequence() argument
|
/art/test/054-uncaught/src/ |
D | ThreadDeathHandler.java | 29 public void uncaughtException(Thread t, Throwable e) { in uncaughtException() argument 31 e.printStackTrace(); in uncaughtException()
|
/art/test/050-sync-test/src/ |
D | ThreadDeathHandler.java | 29 public void uncaughtException(Thread t, Throwable e) { in uncaughtException() argument 31 e.printStackTrace(); in uncaughtException()
|
/art/test/407-arrays/src/ |
D | Main.java | 102 } catch (ArrayIndexOutOfBoundsException e) { in ensureThrows() 103 exception = e; in ensureThrows() 112 } catch (ArrayIndexOutOfBoundsException e) { in ensureThrows() 113 exception = e; in ensureThrows()
|
/art/test/111-unresolvable-exception/src/ |
D | Main.java | 33 } catch (TestException e) { // This handler will have an unresolvable class. in check() 34 } catch (Exception e) { // General-purpose handler in check()
|
/art/test/078-polymorphic-virtual/src/ |
D | Main.java | 31 } catch (Exception e) { in main() 32 System.out.println(e); in main()
|