提交 1a2be965 编写于 作者: G goetz

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
上级 92a7032b
...@@ -2143,6 +2143,11 @@ const bool Matcher::misaligned_vectors_ok() { ...@@ -2143,6 +2143,11 @@ const bool Matcher::misaligned_vectors_ok() {
return false; return false;
} }
// PPC AES support not yet implemented
const bool Matcher::pass_original_key_for_aes() {
return false;
}
// RETURNS: whether this branch offset is short enough that a short // RETURNS: whether this branch offset is short enough that a short
// branch can be used. // branch can be used.
// //
......
...@@ -2052,6 +2052,10 @@ class StubGenerator: public StubCodeGenerator { ...@@ -2052,6 +2052,10 @@ class StubGenerator: public StubCodeGenerator {
// arraycopy stubs used by compilers // arraycopy stubs used by compilers
generate_arraycopy_stubs(); generate_arraycopy_stubs();
if (UseAESIntrinsics) {
guarantee(!UseAESIntrinsics, "not yet implemented.");
}
// PPC uses stubs for safefetch. // PPC uses stubs for safefetch.
generate_safefetch("SafeFetch32", sizeof(int), &StubRoutines::_safefetch32_entry, generate_safefetch("SafeFetch32", sizeof(int), &StubRoutines::_safefetch32_entry,
&StubRoutines::_safefetch32_fault_pc, &StubRoutines::_safefetch32_fault_pc,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册