comparison src/cpu/ppc/vm/ppc.ad @ 17800:c4178a748df9

8033117: PPC64: Adapt to 8002074: Support for AES on SPARC Summary: Implement missing function Matcher::pass_original_key_for_aes() in ppc64 ad file. Reviewed-by: kvn
author goetz
date Wed, 29 Jan 2014 12:22:13 +0100
parents c668f307a4c0
children 0f19095fd8c1
comparison
equal deleted inserted replaced
17799:752ba2e5f6d0 17800:c4178a748df9
2138 return max_vector_size(bt); // Same as max. 2138 return max_vector_size(bt); // Same as max.
2139 } 2139 }
2140 2140
2141 // PPC doesn't support misaligned vectors store/load. 2141 // PPC doesn't support misaligned vectors store/load.
2142 const bool Matcher::misaligned_vectors_ok() { 2142 const bool Matcher::misaligned_vectors_ok() {
2143 return false;
2144 }
2145
2146 // PPC AES support not yet implemented
2147 const bool Matcher::pass_original_key_for_aes() {
2143 return false; 2148 return false;
2144 } 2149 }
2145 2150
2146 // RETURNS: whether this branch offset is short enough that a short 2151 // RETURNS: whether this branch offset is short enough that a short
2147 // branch can be used. 2152 // branch can be used.