comparison src/cpu/zero/vm/icBuffer_zero.cpp @ 6926:a3e2f723f2a5

8000780: make Zero build and run with JDK8 Reviewed-by: coleenp, dholmes, twisti Contributed-by: Roman Kennke <rkennke@redhat.com>
author twisti
date Mon, 29 Oct 2012 11:08:48 -0700
parents da91efe96a93
children e16282db4946
comparison
equal deleted inserted replaced
6915:a516debe2cee 6926:a3e2f723f2a5
38 // NB set this once the functions below are implemented 38 // NB set this once the functions below are implemented
39 return 4; 39 return 4;
40 } 40 }
41 41
42 void InlineCacheBuffer::assemble_ic_buffer_code(address code_begin, 42 void InlineCacheBuffer::assemble_ic_buffer_code(address code_begin,
43 Metadata* cached_oop, 43 void* cached_oop,
44 address entry_point) { 44 address entry_point) {
45 // NB ic_stub_code_size() must return the size of the code we generate 45 // NB ic_stub_code_size() must return the size of the code we generate
46 ShouldNotCallThis(); 46 ShouldNotCallThis();
47 } 47 }
48 48
49 address InlineCacheBuffer::ic_buffer_entry_point(address code_begin) { 49 address InlineCacheBuffer::ic_buffer_entry_point(address code_begin) {
50 // NB ic_stub_code_size() must return the size of the code we generate 50 // NB ic_stub_code_size() must return the size of the code we generate
51 ShouldNotCallThis(); 51 ShouldNotCallThis();
52 } 52 }
53 53
54 Metadata* InlineCacheBuffer::ic_buffer_cached_oop(address code_begin) { 54 void* InlineCacheBuffer::ic_buffer_cached_value(address code_begin) {
55 // NB ic_stub_code_size() must return the size of the code we generate
56 ShouldNotCallThis(); 55 ShouldNotCallThis();
57 } 56 }