/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 | 63 assert(F.hasGC()); in getFunctionInfo() 111 if (F.hasGC()) in runOnFunction()
|
D | GCRootLowering.cpp | 118 if (!I->isDeclaration() && I->hasGC()) in doInitialization() 187 if (!F.hasGC()) in runOnFunction() 333 if (!MF.getFunction()->hasGC()) in runOnMachineFunction()
|
D | ShadowStackGCLowering.cpp | 264 if (F.hasGC() && F.getGC() == std::string("shadow-stack")) { in doInitialization() 379 if (!F.hasGC() || in runOnFunction()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 279 bool hasGC() { return (effect_ & kCausesGC) != 0; } in hasGC() function in __anond932a49f0111::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/lib/IR/ |
D | Function.cpp | 377 bool Function::hasGC() const { in hasGC() function in Function 383 assert(hasGC() && "Function has no collector"); in getGC() 422 if (SrcF->hasGC()) in copyAttributesFrom()
|
D | Verifier.cpp | 3553 Assert(CS.getParent()->getParent()->hasGC(), in visitIntrinsicCallSite() 3620 Assert(CS.getParent()->getParent()->hasGC(), in visitIntrinsicCallSite() 3629 Assert(CS.getParent()->getParent()->hasGC(), in visitIntrinsicCallSite()
|
D | AsmWriter.cpp | 2613 if (F->hasGC()) in printFunction()
|
D | Core.cpp | 1725 return F->hasGC()? F->getGC() : nullptr; in LLVMGetGC()
|
/external/llvm/include/llvm/IR/ |
D | Function.h | 223 bool hasGC() const;
|
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 1207 if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC())) in compare() 1210 if (FnL->hasGC()) { in compare()
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 1062 if (CalledFunc->hasGC()) { in InlineFunction() 1063 if (!Caller->hasGC()) in InlineFunction()
|
/external/llvm/lib/Transforms/Scalar/ |
D | PlaceSafepoints.cpp | 501 if (F.hasGC()) { in shouldRewriteFunction()
|
D | RewriteStatepointsForGC.cpp | 2563 if (F.hasGC()) { in shouldRewriteStatepointsIn()
|
/external/llvm/docs/ |
D | MergeFunctions.rst | 291 ``cmpFlags(F1->hasGC(), F2->hasGC())``). Below is full list of function's
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 663 if (F.hasGC()) { in WriteModuleInfo() 751 Vals.push_back(F.hasGC() ? GCMap[F.getGC()] : 0); in WriteModuleInfo()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 1773 if (F->hasGC()) { in printFunctionHead()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGISel.cpp | 452 GFI = Fn.hasGC() ? &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn) : nullptr; in runOnMachineFunction()
|