HomeSort by: relevance | last modified time | path
    Searched refs:any_isa (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Any.h 111 template <typename T> friend bool any_isa(const Any &Value);
119 template <typename T> bool any_isa(const Any &Value) { function in namespace:llvm
139 assert(Value && any_isa<T>(*Value) && "Bad any cast!");
140 if (!Value || !any_isa<U>(*Value))
147 assert(Value && any_isa<U>(*Value) && "Bad any cast!");
148 if (!Value || !any_isa<U>(*Value))
  /src/external/apache2/llvm/dist/llvm/lib/Passes/
StandardInstrumentations.cpp 193 if (any_isa<const Module *>(IR))
196 if (any_isa<const Function *>(IR)) {
204 if (any_isa<const LazyCallGraph::SCC *>(IR)) {
216 if (any_isa<const Loop *>(IR)) {
261 if (any_isa<const Module *>(IR))
264 if (any_isa<const Function *>(IR)) {
269 if (any_isa<const LazyCallGraph::SCC *>(IR)) {
274 if (any_isa<const Loop *>(IR)) {
302 if (any_isa<const Module *>(IR)) {
307 if (any_isa<const Function *>(IR))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachinePassManager.cpp 44 assert(any_isa<const MachineFunction *>(IR));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopPassManager.cpp 244 assert(any_isa<const Loop *>(IR) || any_isa<const LoopNest *>(IR));
245 const Loop *L = any_isa<const Loop *>(IR)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SampleProfileProbe.cpp 102 if (any_isa<const Module *>(IR))
104 else if (any_isa<const Function *>(IR))
106 else if (any_isa<const LazyCallGraph::SCC *>(IR))
108 else if (any_isa<const Loop *>(IR))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Debugify.cpp 992 if (any_isa<const Function *>(IR))
994 else if (any_isa<const Module *>(IR))
1001 if (any_isa<const Function *>(IR)) {
1007 } else if (any_isa<const Module *>(IR)) {

Completed in 18 milliseconds