shark build failure on icedtea7 trunk
Andrew John Hughes
ahughes at redhat.com
Mon Jul 12 09:36:51 PDT 2010
On 12 July 2010 11:43, Gary Benson <gbenson at redhat.com> wrote:
> Matthias Klose wrote:
>> On 12.07.2010 10:41, Gary Benson wrote:
>> > Matthias Klose wrote:
>> > > after fixing the zero build failure, shark fails to build (llvm-2.7):
>> > >
>> > > In file included from ../generated/incls/_sharkBuilder.cpp.incl:10,
>> > > from
>> > > build/zerovm/openjdk/hotspot/src/share/vm/shark/sharkBuilder.cpp:27:
>> > > build/zerovm/openjdk/hotspot/src/share/vm/shark/sharkBuilder.hpp: In
>> > > member function 'llvm::Value* SharkBuilder::CreateInlineOop(ciObject*,
>> > > const char*)':
>> > > build/zerovm/openjdk/hotspot/src/share/vm/shark/sharkBuilder.hpp:195:
>> > > error: 'class ciObject' has no member named 'encoding'
>> >
>> > It should be constant_encoding, or something like that.
>> > The names were changed in some version or another of HotSpot.
>> > Hopefully when it's upstream all of this will go away :)
>>
>> ok, thanks. The following fixes the build. ok to checkin this and the
>> other zero fix?
>
> It's ok by me if it's ok with Andrew (Hughes).
>
> Cheers,
> Gary
>
>>
>> diff -r b18f5ecf2522 ports/hotspot/src/share/vm/shark/sharkBuilder.hpp
>> --- a/ports/hotspot/src/share/vm/shark/sharkBuilder.hpp Mon Jul 12
>> 11:24:29 2010 +0200
>> +++ b/ports/hotspot/src/share/vm/shark/sharkBuilder.hpp Mon Jul 12
>> 12:27:52 2010 +0200
>> @@ -192,7 +192,7 @@
>> llvm::Value* code_buffer_address(int offset);
>> llvm::Value* CreateInlineOop(jobject object, const char* name = "");
>> llvm::Value* CreateInlineOop(ciObject* object, const char* name = "") {
>> - return CreateInlineOop(object->encoding(), name);
>> + return CreateInlineOop(object->constant_encoding(), name);
>> }
>> llvm::Value* CreateInlineData(void* data,
>> size_t size,
>>
>>
>
> --
> http://gbenson.net/
>
Ok by me, it's just the missing part of
http://icedtea.classpath.org/hg/shark/hotspot/rev/3236ce90f188
--
Andrew :-)
Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)
Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net
PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint: F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
More information about the distro-pkg-dev
mailing list