Home
last modified time | relevance | path

Searched refs:hasGC (Results 1 – 15 of 15) sorted by relevance

/external/compiler-rt/test/BlocksRuntime/
Dtestfilerunner.h85 bool hasGC; local
99 @property bool hasObjC, hasRR, hasGC, hasCPlusPlus, wantsC99, supposedToNotCompile, open, wants32, …
Dtestfilerunner.m245 @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/
DGCMetadata.cpp88 assert(F.hasGC()); in getFunctionInfo()
136 if (F.hasGC()) return false; in runOnFunction()
DGCStrategy.cpp160 if (!I->isDeclaration() && I->hasGC()) in doInitialization()
248 if (!F.hasGC()) in runOnFunction()
397 if (!MF.getFunction()->hasGC()) in runOnMachineFunction()
/external/llvm/lib/IR/
DFunction.cpp333 bool Function::hasGC() const { in hasGC() function in Function
339 assert(hasGC() && "Function has no collector"); in getGC()
376 if (SrcF->hasGC()) in copyAttributesFrom()
DAsmWriter.cpp1682 if (F->hasGC()) in printFunction()
DVerifier.cpp2500 Assert1(CI.getParent()->getParent()->hasGC(), in visitIntrinsicFunctionCall()
DCore.cpp1570 return F->hasGC()? F->getGC() : nullptr; in LLVMGetGC()
/external/chromium_org/v8/tools/gcmole/
Dgcmole.cc279 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/
DFunction.h217 bool hasGC() const;
/external/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp977 if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC())) in compare()
980 if (FnL->hasGC()) { in compare()
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp550 if (CalledFunc->hasGC()) { in InlineFunction()
551 if (!Caller->hasGC()) in InlineFunction()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp601 if (F.hasGC()) { in WriteModuleInfo()
685 Vals.push_back(F.hasGC() ? GCMap[F.getGC()] : 0); in WriteModuleInfo()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp1777 if (F->hasGC()) { in printFunctionHead()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp422 GFI = Fn.hasGC() ? &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn) : nullptr; in runOnMachineFunction()