Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AMDGPURegisterInfo.cpp 694B

123456789101112131415161718192021222324
  1. //===-- AMDGPURegisterInfo.cpp - TODO: Add brief description -------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. //
  10. // TODO: Add full description
  11. //
  12. //===----------------------------------------------------------------------===//
  13. #include "AMDGPURegisterInfo.h"
  14. #include "AMDGPUTargetMachine.h"
  15. using namespace llvm;
  16. AMDGPURegisterInfo::AMDGPURegisterInfo(AMDGPUTargetMachine &tm,
  17. const TargetInstrInfo &tii)
  18. : AMDILRegisterInfo(tm, tii),
  19. TM(tm),
  20. TII(tii)
  21. { }