summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/SystemZ/stackpointer.ll
AgeCommit message (Collapse)Author
2022-10-11[SystemZ][NFC] Opaque pointer migration.Kai Nacke
The LIT test cases were migrated with the script provided by Nikita Popov. No manual changes were made. Committed without review since no functional changes, after consultation with uweigand.
2020-02-10[SystemZ] Add implementation for the intrinsic llvm.read_registerKai Nacke
This change implements the llvm intrinsic llvm.read_register for the SystemZ platform which returns the value of the specified register (http://llvm.org/docs/LangRef.html#llvm-read-register-and-llvm-write-register-intrinsics). This implementation returns the value of the stack register, and can be extended to return the value of other registers. The implementation for this intrinsic exists on various other platforms including Power, x86, ARM, etc. but missing on SystemZ. Reviewers: uweigand Differential Revision: https://reviews.llvm.org/D73378