blob: c62e49a4b0823cdf51051b9c6d75eb4fd78f5abb (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 | //===-- llvm/CodeGen/PseudoSourceValue.cpp ----------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the PseudoSourceValue class.
//
//===----------------------------------------------------------------------===//
#include "llvm/CodeGen/PseudoSourceValue.h"
#include "llvm/DerivedTypes.h"
#include "llvm/Support/ManagedStatic.h"
namespace llvm {
  static ManagedStatic<PseudoSourceValue[5]> PSVs;
  const PseudoSourceValue *PseudoSourceValue::getFixedStack()
  { return &(*PSVs)[0]; }
  const PseudoSourceValue *PseudoSourceValue::getStack()
  { return &(*PSVs)[1]; }
  const PseudoSourceValue *PseudoSourceValue::getGOT()
  { return &(*PSVs)[2]; }
  const PseudoSourceValue *PseudoSourceValue::getConstantPool()
  { return &(*PSVs)[3]; }
  const PseudoSourceValue *PseudoSourceValue::getJumpTable()
  { return &(*PSVs)[4]; }
  static const char *const PSVNames[] = {
    "FixedStack",
    "Stack",
    "GOT",
    "ConstantPool",
    "JumpTable"
  };
  PseudoSourceValue::PseudoSourceValue() :
    Value(PointerType::getUnqual(Type::Int8Ty), PseudoSourceValueVal) {}
  void PseudoSourceValue::print(std::ostream &OS) const {
    OS << PSVNames[this - *PSVs];
  }
}
 |