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

  /external/llvm/lib/CodeGen/
SafeStack.cpp 1 //===-- SafeStack.cpp - Safe Stack Insertion ------------------------------===//
10 // This pass splits the stack into the safe stack (kept as-is for LLVM backend)
57 static cl::opt<UnsafeStackPtrStorageVal> USPStorage("safe-stack-usp-storage",
101 /// The SafeStack pass splits the stack of each function into the safe
102 /// stack, which is only accessed through memory safe dereferences (as
105 /// be safe.
236 bool Safe = AllocaRange.contains(AccessRange);
247 << " " << (Safe ? "safe" : "unsafe") << "\n");
249 return Safe;
    [all...]
MachineLICM.cpp 119 // If a MBB does not dominate loop exiting blocks then it may not safe
389 // safe to hoist.
413 // register, then this is not safe. Two defs is indicated by setting a
502 bool Safe = true;
511 // not safe to hoist.
512 Safe = false;
516 if (Safe)
540 /// safe to hoist, this instruction is called to do the dirty work.
563 /// may not be safe to hoist.
856 /// e.g. If the instruction is a call, then it's obviously not safe to hoist it
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineLICM.cpp 106 // If a MBB does not dominate loop exiting blocks then it may not safe
162 /// operands that is safe to hoist, this instruction is called to do the
178 /// obviously not safe to hoist it.
215 /// If not then a load from this mbb may not be safe to hoist.
265 /// that is safe to hoist, this instruction is called to do the dirty work.
416 // safe to hoist.
441 // register, then this is not safe.
512 bool Safe = true;
520 // not safe to hoist.
521 Safe = false
    [all...]

Completed in 269 milliseconds