Searched refs:hasGC (Results 1 – 15 of 15) sorted by relevance
/external/compiler-rt/BlocksRuntime/tests/ |
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 | 92 assert(F.hasGC()); in getFunctionInfo() 143 if (F.hasGC()) return false; in runOnFunction()
|
D | GCStrategy.cpp | 169 if (!I->isDeclaration() && I->hasGC()) in doInitialization() 257 if (!F.hasGC()) in runOnFunction() 405 if (!MF.getFunction()->hasGC()) in runOnMachineFunction()
|
/external/llvm/lib/IR/ |
D | Function.cpp | 291 bool Function::hasGC() const { in hasGC() function in Function 297 assert(hasGC() && "Function has no collector"); in getGC() 334 if (SrcF->hasGC()) in copyAttributesFrom()
|
D | AsmWriter.cpp | 1675 if (F->hasGC()) in printFunction()
|
D | Verifier.cpp | 2073 Assert1(CI.getParent()->getParent()->hasGC(), in visitIntrinsicFunctionCall()
|
D | Core.cpp | 1377 return F->hasGC()? F->getGC() : 0; in LLVMGetGC()
|
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 84 ID.AddBoolean(F->hasGC()); in profileFunction() 466 if (F1->hasGC() != F2->hasGC()) in compare() 469 if (F1->hasGC() && F1->getGC() != F2->getGC()) in compare()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 280 bool hasGC() { return (effect_ & kCausesGC) != 0; } in hasGC() function in __anon40ad6a050111::ExprEffect 336 Environment out = effect.hasGC() ? Environment() : Environment(*this); in ApplyEffect() 432 if (in.hasGC()) gc_.set(arg); in SetEffect() 482 Environment* a_env = b.hasGC() ? NULL : a.env(); in MergeSeq()
|
/external/llvm/include/llvm/IR/ |
D | Function.h | 202 bool hasGC() const;
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 519 if (CalledFunc->hasGC()) { in InlineFunction() 520 if (!Caller->hasGC()) in InlineFunction()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 481 if (F->hasGC()) { in WriteModuleInfo() 562 Vals.push_back(F->hasGC() ? GCMap[F->getGC()] : 0); in WriteModuleInfo()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 1735 if (F->hasGC()) { in printFunctionHead()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGISel.cpp | 360 GFI = Fn.hasGC() ? &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn) : 0; in runOnMachineFunction()
|