HomeSort by relevance Sort by last modified time
    Searched refs:PseudoSourceValue (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/CodeGen/
PseudoSourceValue.cpp 1 //===-- llvm/CodeGen/PseudoSourceValue.cpp ----------------------*- C++ -*-===//
10 // This file implements the PseudoSourceValue class.
15 #include "llvm/CodeGen/PseudoSourceValue.h"
30 PseudoSourceValue::PseudoSourceValue(PSVKind Kind) : Kind(Kind) {}
32 PseudoSourceValue::~PseudoSourceValue() {}
34 void PseudoSourceValue::printCustom(raw_ostream &O) const {
38 bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const {
43 llvm_unreachable("Unknown PseudoSourceValue!");
    [all...]
MIRPrinter.cpp 865 const PseudoSourceValue *PVal = Op.getPseudoValue();
868 case PseudoSourceValue::Stack:
871 case PseudoSourceValue::GOT:
874 case PseudoSourceValue::JumpTable:
877 case PseudoSourceValue::ConstantPool:
880 case PseudoSourceValue::FixedStack:
884 case PseudoSourceValue::GlobalValueCallEntry:
889 case PseudoSourceValue::ExternalSymbolCallEntry:
Android.mk 94 PseudoSourceValue.cpp \
MachineInstr.cpp 23 #include "llvm/CodeGen/PseudoSourceValue.h"
463 if (V.isNull() || V.is<const PseudoSourceValue*>()) return 0;
500 assert((PtrInfo.V.isNull() || PtrInfo.V.is<const PseudoSourceValue*>() ||
559 else if (const PseudoSourceValue *PSV = getPseudoValue())
    [all...]
StackSlotColoring.cpp 25 #include "llvm/CodeGen/PseudoSourceValue.h"
321 const PseudoSourceValue *NewSV = MF.getPSVManager().getFixedStack(NewFI);
ScheduleDAGInstrs.cpp 27 #include "llvm/CodeGen/PseudoSourceValue.h"
123 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
140 if (const PseudoSourceValue *PSV =
142 // Function that contain tail calls don't have unique PseudoSourceValue
    [all...]
MachineLICM.cpp 29 #include "llvm/CodeGen/PseudoSourceValue.h"
853 if (const PseudoSourceValue *PSV = (*I)->getPseudoValue()) {
    [all...]
MachineVerifier.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
PseudoSourceValue.h 1 //===-- llvm/CodeGen/PseudoSourceValue.h ------------------------*- C++ -*-===//
10 // This file contains the declaration of the PseudoSourceValue class.
34 class PseudoSourceValue {
51 /// Implement printing for PseudoSourceValue. This is called from
56 explicit PseudoSourceValue(PSVKind Kind);
58 virtual ~PseudoSourceValue();
67 /// Test whether the memory pointed to by this PseudoSourceValue has a
71 /// Test whether the memory pointed to by this PseudoSourceValue may also be
75 /// Return true if the memory pointed to by this PseudoSourceValue can ever
80 /// A specialized PseudoSourceValue for holding FixedStack values, which mus
    [all...]
MachineMemOperand.h 20 #include "llvm/CodeGen/PseudoSourceValue.h"
41 PointerUnion<const Value *, const PseudoSourceValue *> V;
49 explicit MachinePointerInfo(const PseudoSourceValue *v,
57 return MachinePointerInfo(V.get<const PseudoSourceValue*>(), Offset+O);
90 /// to describe lowered loads and stores. Also, the special PseudoSourceValue
133 /// PseudoSourceValue::getFixedStack(int), PseudoSourceValue::getStack, and
134 /// other PseudoSourceValue member functions which return objects which stand
139 const PseudoSourceValue *getPseudoValue() const {
140 return PtrInfo.V.dyn_cast<const PseudoSourceValue*>();
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 19 #include "llvm/CodeGen/PseudoSourceValue.h"
278 const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V);
279 if (PSV && PSV == PseudoSourceValue::getConstantPool()) {
  /external/llvm/lib/Target/Mips/
MipsOptimizePICCall.cpp 38 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
MipsDelaySlotFiller.cpp 27 #include "llvm/CodeGen/PseudoSourceValue.h"
146 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
429 if (const PseudoSourceValue *PSV =
483 if (const PseudoSourceValue *PSV =
  /external/llvm/lib/CodeGen/MIRParser/
MIParser.cpp 159 bool parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp 27 #include "llvm/CodeGen/PseudoSourceValue.h"
595 const PseudoSourceValue *PSV = MMO->getPseudoValue();
    [all...]

Completed in 856 milliseconds