Lines Matching refs:a

35     int a = 0;  in $opt$reg$TestLostCopy()  local
38 b = a; in $opt$reg$TestLostCopy()
39 a++; in $opt$reg$TestLostCopy()
40 } while (a != 5); in $opt$reg$TestLostCopy()
45 int a = 0; in $opt$reg$TestTwoLive() local
48 a++; in $opt$reg$TestTwoLive()
50 } while (a != 5); in $opt$reg$TestTwoLive()
51 return a - b; in $opt$reg$TestTwoLive()
55 int a = 0; in $opt$reg$TestThreeLive() local
59 a++; in $opt$reg$TestThreeLive()
62 } while (a != 5); in $opt$reg$TestThreeLive()
63 return a - b - c; in $opt$reg$TestThreeLive()
67 int a = 0; in $opt$reg$TestFourLive() local
72 a++; in $opt$reg$TestFourLive()
76 } while (a != 5); in $opt$reg$TestFourLive()
81 int a = 0; in $opt$reg$TestMultipleLive() local
89 a++; in $opt$reg$TestMultipleLive()
96 } while (a != 5); in $opt$reg$TestMultipleLive()
101 int a = 0; in $opt$reg$TestWithBreakAndContinue() local
104 a++; in $opt$reg$TestWithBreakAndContinue()
105 if (a == 2) { in $opt$reg$TestWithBreakAndContinue()
109 if (a == 5) { in $opt$reg$TestWithBreakAndContinue()
113 return a - b; in $opt$reg$TestWithBreakAndContinue()
116 public static int $opt$reg$testSpillInIf(int a, int b, int c) { in $opt$reg$testSpillInIf() argument
119 if (a == 5) { 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
130 int h = a - b; in $opt$reg$TestAgressiveLive1()
133 int k = 42 + g - a; 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
151 int h = a - b; in $opt$reg$TestAgressiveLive2()
154 int k = 42 + g - a; in $opt$reg$TestAgressiveLive2()
158 return a - b - c - d - e - f - g - h - i - j - k; in $opt$reg$TestAgressiveLive2()