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

  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instruction.cpp 313 /// mayReadFromMemory - Return true if this instruction may read memory.
315 bool Instruction::mayReadFromMemory() const {
320 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
  /external/llvm/lib/IR/
Instruction.cpp 479 /// mayReadFromMemory - Return true if this instruction may read memory.
481 bool Instruction::mayReadFromMemory() const {
486 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 464 bool mayReadFromMemory() const {
466 return Inst->mayReadFromMemory();
671 if (Inst->mayReadFromMemory() &&
672 !(MemInst.isValid() && !MemInst.mayReadFromMemory()))
704 assert(Inst->mayReadFromMemory() && "relied on to prevent DSE above");
    [all...]

Completed in 423 milliseconds