aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/sparc-stubgenerator.diff
blob: fe11a0d07471cc2845315628a4a2b7e5d052c331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Author: Damien Raude-Morvan <drazzib@debian.org>
Description: Fix FTBFS on sparc on stubGenerator_sparc.cpp by using explicit class typedef.

--- openjdk/hotspot/src/cpu/sparc/vm/stubGenerator_sparc.cpp.orig	2012-02-15 08:26:53.000000000 +0000
+++ openjdk/hotspot/src/cpu/sparc/vm/stubGenerator_sparc.cpp	2012-02-26 10:26:11.000000000 +0000
@@ -1126,7 +1126,7 @@
                                               Label& L_loop, bool use_prefetch, bool use_bis);
 
   void disjoint_copy_core(Register from, Register to, Register count, int log2_elem_size,
-                          int iter_size, CopyLoopFunc copy_loop_func) {
+                          int iter_size, StubGenerator::CopyLoopFunc copy_loop_func) {
     Label L_copy;
 
     assert(log2_elem_size <= 3, "the following code should be changed");
@@ -1277,7 +1277,8 @@
     __ inc(from, 8);
     __ sllx(O3, left_shift,  O3);
 
-    disjoint_copy_core(from, to, count, log2_elem_size, 16, copy_16_bytes_shift_loop);
+    StubGenerator::CopyLoopFunc aFunction = &StubGenerator::copy_16_bytes_shift_loop;
+    disjoint_copy_core(from, to, count, log2_elem_size, 16, aFunction);
 
     __ inccc(count, count_dec>>1 ); // + 8 bytes
     __ brx(Assembler::negative, true, Assembler::pn, L_copy_last_bytes);
@@ -2156,7 +2157,8 @@
       __ dec(count, 4);   // The cmp at the beginning guaranty count >= 4
       __ sllx(O3, 32,  O3);
 
-      disjoint_copy_core(from, to, count, 2, 16, copy_16_bytes_loop);
+      StubGenerator::CopyLoopFunc aFunction = &StubGenerator::copy_16_bytes_loop;
+      disjoint_copy_core(from, to, count, 2, 16, aFunction);
 
       __ br(Assembler::always, false, Assembler::pt, L_copy_4_bytes);
       __ delayed()->inc(count, 4); // restore 'count'
@@ -2437,7 +2439,8 @@
     // count >= 0 (original count - 8)
     __ mov(from, from64);
 
-    disjoint_copy_core(from64, to64, count, 3, 64, copy_64_bytes_loop);
+    StubGenerator::CopyLoopFunc aFunction = &StubGenerator::copy_64_bytes_loop;
+    disjoint_copy_core(from64, to64, count, 3, 64, aFunction);
 
       // Restore O4(offset0), O5(offset8)
       __ sub(from64, from, offset0);