Searched refs:hasGC (Results 1 – 15 of 15) sorted by relevance
/external/compiler-rt/test/BlocksRuntime/ |
D | testfilerunner.h | 85 bool hasGC; local 99 @property bool hasObjC, hasRR, hasGC, hasCPlusPlus, wantsC99, supposedToNotCompile, open, wants32, …
|
D | testfilerunner.m | 245 @synthesize hasObjC, hasRR, hasGC, hasCPlusPlus, wantsC99, supposedToNotCompile, open, wants32, wan… 313 if (!hasGC && (options & (DoGC|DoGCRR))) return nil; // not smart enough 442 if (strstr(line, "GC")) item.hasGC = true; 477 if (item.hasGC || item.hasRR) item.hasObjC = true; 523 result.hasGC = true; 531 result.hasGC = true; 555 hasGC ? " GC" : "",
|
/external/llvm/lib/CodeGen/ |
D | GCMetadata.cpp | 88 assert(F.hasGC()); in getFunctionInfo() 136 if (F.hasGC()) return false; in runOnFunction()
|
D | GCStrategy.cpp | 160 if (!I->isDeclaration() && I->hasGC()) in doInitialization() 248 if (!F.hasGC()) in runOnFunction() 397 if (!MF.getFunction()->hasGC()) in runOnMachineFunction()
|
/external/llvm/lib/IR/ |
D | Function.cpp | 333 bool Function::hasGC() const { in hasGC() function in Function 339 assert(hasGC() && "Function has no collector"); in getGC() 376 if (SrcF->hasGC()) in copyAttributesFrom()
|
D | AsmWriter.cpp | 1682 if (F->hasGC()) in printFunction()
|
D | Verifier.cpp | 2500 Assert1(CI.getParent()->getParent()->hasGC(), in visitIntrinsicFunctionCall()
|
D | Core.cpp | 1570 return F->hasGC()? F->getGC() : nullptr; in LLVMGetGC()
|
/external/chromium_org/v8/tools/gcmole/ |
D | gcmole.cc | 279 bool hasGC() { return (effect_ & kCausesGC) != 0; } in hasGC() function in __anon34989fd00111::ExprEffect 335 Environment out = effect.hasGC() ? Environment() : Environment(*this); in ApplyEffect() 431 if (in.hasGC()) gc_.set(arg); in SetEffect() 481 Environment* a_env = b.hasGC() ? NULL : a.env(); in MergeSeq()
|
/external/llvm/include/llvm/IR/ |
D | Function.h | 217 bool hasGC() const;
|
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 977 if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC())) in compare() 980 if (FnL->hasGC()) { in compare()
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 550 if (CalledFunc->hasGC()) { in InlineFunction() 551 if (!Caller->hasGC()) in InlineFunction()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 601 if (F.hasGC()) { in WriteModuleInfo() 685 Vals.push_back(F.hasGC() ? GCMap[F.getGC()] : 0); in WriteModuleInfo()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 1777 if (F->hasGC()) { in printFunctionHead()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGISel.cpp | 422 GFI = Fn.hasGC() ? &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn) : nullptr; in runOnMachineFunction()
|