comparison src/cpu/zero/vm/relocInfo_zero.cpp @ 11041:7875ea94bea5

8017308: Remove unused breakpoint relocation type Summary: remove unused breakpoint relocation type Reviewed-by: kvn
author goetz
date Mon, 24 Jun 2013 11:53:54 -0700
parents a3e2f723f2a5
children e16282db4946
comparison
equal deleted inserted replaced
11025:fc8a1a5de78e 11041:7875ea94bea5
50 address* Relocation::pd_address_in_code() { 50 address* Relocation::pd_address_in_code() {
51 // Relocations in Shark are just stored directly 51 // Relocations in Shark are just stored directly
52 return (address *) addr(); 52 return (address *) addr();
53 } 53 }
54 54
55 int Relocation::pd_breakpoint_size() {
56 ShouldNotCallThis();
57 }
58
59 void Relocation::pd_swap_in_breakpoint(address x,
60 short* instrs,
61 int instrlen) {
62 ShouldNotCallThis();
63 }
64
65 void Relocation::pd_swap_out_breakpoint(address x,
66 short* instrs,
67 int instrlen) {
68 ShouldNotCallThis();
69 }
70
71 void poll_Relocation::fix_relocation_after_move(const CodeBuffer* src, 55 void poll_Relocation::fix_relocation_after_move(const CodeBuffer* src,
72 CodeBuffer* dst) { 56 CodeBuffer* dst) {
73 ShouldNotCallThis(); 57 ShouldNotCallThis();
74 } 58 }
75 59