[PATCH] D44533: [AMDGPU] Fix codegen for inline assembly

2018-03-23 Thread Yaxun Liu via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rC328359: [AMDGPU] Fix codegen for inline assembly (authored by yaxunl, committed by ). Repository: rC Clang https://reviews.llvm.org/D44533 Files: lib/Basic/Targets/AMDGPU.h lib/CodeGen/CGStmt.cpp

[PATCH] D44533: [AMDGPU] Fix codegen for inline assembly

2018-03-23 Thread Matt Arsenault via Phabricator via cfe-commits
arsenm accepted this revision. arsenm added a comment. This revision is now accepted and ready to land. LGTM https://reviews.llvm.org/D44533 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

[PATCH] D44533: [AMDGPU] Fix codegen for inline assembly

2018-03-21 Thread Yaxun Liu via Phabricator via cfe-commits
yaxunl added a comment. Ping https://reviews.llvm.org/D44533 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[PATCH] D44533: [AMDGPU] Fix codegen for inline assembly

2018-03-16 Thread Yaxun Liu via Phabricator via cfe-commits
yaxunl updated this revision to Diff 138768. yaxunl marked an inline comment as done. yaxunl added a comment. Fix the comment. https://reviews.llvm.org/D44533 Files: lib/Basic/Targets/AMDGPU.h lib/CodeGen/CGStmt.cpp test/CodeGenOpenCL/inline-asm-amdgcn.cl

[PATCH] D44533: [AMDGPU] Fix codegen for inline assembly

2018-03-16 Thread Matt Arsenault via Phabricator via cfe-commits
arsenm added inline comments. Comment at: lib/Basic/Targets/AMDGPU.h:288 + // Constraint parm will be left pointing at the last character of + // the constraint. In practice, it won't be changed unless the parm? https://reviews.llvm.org/D44533

[PATCH] D44533: [AMDGPU] Fix codegen for inline assembly

2018-03-15 Thread Yaxun Liu via Phabricator via cfe-commits
yaxunl created this revision. yaxunl added reviewers: arsenm, rampitec, b-sumner. Herald added subscribers: eraman, t-tye, tpr, dstuttard, nhaehnle, wdng, kzhuravl. Need to override convertConstraint to recognise amdgpu specific register names. https://reviews.llvm.org/D44533 Files: