HomeSort by relevance Sort by last modified time
    Searched defs:MemDepResult (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 51 class MemDepResult {
61 /// In a default-constructed MemDepResult object, the type will be Invalid
66 /// desired value. The pointer member of the MemDepResult pair holds the
78 /// MemDepResult pair holds the instruction that defines the memory.
126 explicit MemDepResult(ValueTy V) : Value(V) {}
129 MemDepResult() = default;
132 /// MemDepResult kinds.
133 static MemDepResult getDef(Instruction *Inst) {
135 return MemDepResult(ValueTy::create<Def>(Inst));
137 static MemDepResult getClobber(Instruction *Inst)
    [all...]
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 40 class MemDepResult {
50 /// In a default-constructed MemDepResult object, the type will be Invalid
55 /// desired value. The pointer member of the MemDepResult pair holds the
67 /// MemDepResult pair holds the instruction that defines the memory.
115 explicit MemDepResult(ValueTy V) : Value(V) {}
118 MemDepResult() : Value() {}
121 /// MemDepResult kinds.
122 static MemDepResult getDef(Instruction *Inst) {
124 return MemDepResult(ValueTy::create<Def>(Inst));
126 static MemDepResult getClobber(Instruction *Inst)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
MemoryDependenceAnalysis.h 38 /// MemDepResult - A memory dependence query can return one of three different
40 class MemDepResult {
46 /// clobbers the desired value. The pointer member of the MemDepResult
59 /// the MemDepResult pair holds the instruction that defines the memory.
99 explicit MemDepResult(PairTy V) : Value(V) {}
101 MemDepResult() : Value(0, Invalid) {}
104 /// MemDepResult kinds.
105 static MemDepResult getDef(Instruction *Inst) {
107 return MemDepResult(PairTy(Inst, Def));
109 static MemDepResult getClobber(Instruction *Inst)
    [all...]

Completed in 2203 milliseconds