This is an archive of the discontinued LLVM Phabricator instance.

Implement aarch64 neon instruction class SIMD Across - Clang
ClosedPublic

Authored by Jiangning on Oct 3 2013, 1:56 AM.

Details

Reviewers
t.p.northover

Diff Detail

Event Timeline

Hi,

This is the patch implementing aarch64 neon instruction class SIMD Across. Review, please!

Thanks,
-Jiangning

Hi Jiangning,

Ana's probably the expert on the NEONEmitter, though I didn't see anything obviously wrong. Just one other comment.

Cheers.

Tim.

lib/CodeGen/CGBuiltin.cpp
1958

Couldn't this block be:

if (AcrossVec) {
  ...
} else if (OverloadInt) {
  ...
} else
  ...

for(...) Ops.push_back(...)
Jiangning updated this revision to Unknown Object (????).Oct 4 2013, 2:30 AM

Tim,

OK, I get it changed accordingly.

Thanks,
-Jiangning

t.p.northover accepted this revision.Apr 3 2014, 4:50 AM
Eugene.Zelenko closed this revision.Oct 4 2016, 6:27 PM
Eugene.Zelenko added a subscriber: Eugene.Zelenko.

Committed in rL192029.