| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | ADCE.cpp | 78 bool Live = false; member 87 bool Live = false; member 111 bool terminatorIsLive() const { return TerminatorLiveInfo->Live; } in terminatorIsLive() 131 bool isLive(BasicBlock *BB) { return BlockInfo[BB].Live; } in isLive() 135 bool isLive(Instruction *I) { return InstInfo[I].Live; } in isLive() 321 EntryInfo.Live = true; in initialize() 385 if (Info.Live) in markLive() 389 Info.Live = true; in markLive() 410 if (BBInfo.Live) in markLive() 413 BBInfo.Live = true; in markLive() [all …]
|
| H A D | RewriteStatepointsForGC.cpp | 2019 Function &F, DominatorTree &DT, ArrayRef<Value *> Live, in relocationViaAlloca() argument 2035 PromotableAllocas.reserve(Live.size()); in relocationViaAlloca() 2049 for (Value *V : Live) in relocationViaAlloca() 2201 assert(PromotableAllocas.size() == Live.size() + NumRematerializedValues && in relocationViaAlloca() 2842 SmallVector<Value *, 128> Live; in insertParsePoints() local 2849 llvm::append_range(Live, Info.StatepointToken->gc_live()); in insertParsePoints() 2869 unique_unsorted(Live); in insertParsePoints() 2873 for (auto *Ptr : Live) in insertParsePoints() 2878 relocationViaAlloca(F, DT, Live, Records); in insertParsePoints() 3258 static void checkBasicSSA(DominatorTree &DT, SetVector<Value *> &Live, in checkBasicSSA() argument [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DeadStoresChecker.cpp | 154 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { in isLive() argument 155 if (Live.isLive(D)) in isLive() 266 const LiveVariables::LivenessValues &Live) { in CheckVarDecl() argument 275 if (!isLive(Live, VD) && in CheckVarDecl() 286 const LiveVariables::LivenessValues& Live) { in CheckDeclRef() argument 288 CheckVarDecl(VD, DR, Val, dsk, Live); in CheckDeclRef() 315 const LiveVariables::LivenessValues &Live) override { in observeStmt() argument 354 CheckVarDecl(VD, DR, B->getRHS(), dsk, Live); in observeStmt() 368 CheckDeclRef(DR, U, DeadIncrement, Live); in observeStmt() 401 if (!isLive(Live, V) && in observeStmt()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | DeadArgumentElimination.cpp | 365 return Live; in markIfNotLive() 404 if (Result != Live) in surveyUse() 424 if (Result == Live) in surveyUse() 437 return Live; in surveyUse() 447 return Live; in surveyUse() 459 return Live; in surveyUse() 476 if (Result == Live) in surveyUses() 571 if (RetValLiveness[Idx] != Live) { in surveyFunction() 573 if (RetValLiveness[Idx] == Live) in surveyFunction() 580 if (surveyUse(&UU, MaybeLiveAggregateUses) == Live) { in surveyFunction() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/gpio/ |
| H A D | wd,mbl-gpio.txt | 1 Bindings for the Western Digital's MyBook Live memory-mapped GPIO controllers. 3 The Western Digital MyBook Live has two memory-mapped GPIO controllers.
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ModuleSummaryIndexYAML.h | 143 bool NotEligibleToImport, Live, IsLocal, CanAutoHide; 190 io.mapOptional("Live", summary.Live); 229 GVSum.NotEligibleToImport, GVSum.Live, GVSum.IsLocal, 272 static_cast<bool>(FSum->flags().Live), 285 static_cast<bool>(ASum->flags().Live),
|
| H A D | ModuleSummaryIndex.h | 489 unsigned Live : 1; 513 bool NotEligibleToImport, bool Live, bool IsLocal, 516 NotEligibleToImport(NotEligibleToImport), Live(Live), 594 bool isLive() const { return Flags.Live; } 596 void setLive(bool Live) { Flags.Live = Live; }
|
| /freebsd/sys/contrib/device-tree/src/arm/marvell/ |
| H A D | orion5x-linkstation-lsgl.dts | 3 * (also known as Buffalo Linkstation Pro/Live) 56 model = "Buffalo Linkstation Pro/Live";
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ModuleSummaryIndex.cpp | 645 if (Flags.Live && hasReadOnlyFlag(SummaryIt.second)) in exportToDot() 647 if (Flags.Live && hasWriteOnlyFlag(SummaryIt.second)) in exportToDot() 649 if (Flags.Live && hasConstantFlag(SummaryIt.second)) in exportToDot() 667 if (!Flags.Live) in exportToDot()
|
| H A D | AsmWriter.cpp | 3744 Out << ", live: " << GVFlags.Live; in printSummary()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LiveVariables.cpp | 461 SmallSet<unsigned, 32> Live; in HandlePhysRegDef() local 463 Live.insert_range(TRI->subregs_inclusive(Reg)); in HandlePhysRegDef() 472 if (Live.count(SubReg)) in HandlePhysRegDef() 475 Live.insert_range(TRI->subregs_inclusive(SubReg)); in HandlePhysRegDef() 484 if (!Live.count(SubReg)) in HandlePhysRegDef()
|
| H A D | RDFLiveness.cpp | 927 BitVector LiveIn(TRI.getNumRegs()), Live(TRI.getNumRegs()); in resetKills() local 930 CopyLiveIns(SI, Live); in resetKills() 948 Live.reset(SR); in resetKills() 958 if (!Live[(*AR).id()]) in resetKills() 966 Live.set(SR); in resetKills()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | DeadArgumentElimination.h | 73 enum Liveness { Live, MaybeLive }; enumerator
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonGenMux.cpp | 353 bool Live = !LPR.available(Op.getReg()); in genMuxInBlock() local 354 Op.setIsKill(!Live); in genMuxInBlock()
|
| /freebsd/contrib/libcbor/doc/source/ |
| H A D | development.rst | 123 Live preview of docs
|
| /freebsd/sys/i386/conf/ |
| H A D | GENERIC | 304 device snd_emu10kx # Creative SoundBlaster Live! and Audigy
|
| /freebsd/share/misc/ |
| H A D | usb_vendors | 1419 3040 SoundBlaster Live! 24-bit External SB0490 1465 4029 Webcam Live! 1469 4036 Webcam Live!/Live! Pro 1470 4037 Webcam Live! 1472 4039 Webcam Live! Effects 1475 403c Webcam Live! Ultra 1478 4041 Webcam Live! Motion 1480 4045 Live! Cam Voice 1481 4049 Live! Cam Voice 1482 4051 Live! Cam Notebook Pro [VF0250] [all …]
|
| /freebsd/sys/amd64/conf/ |
| H A D | GENERIC | 356 device snd_emu10kx # Creative SoundBlaster Live! and Audigy
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMBaseInstrInfo.cpp | 5697 bool Live = false; in isLRAvailable() local 5703 Live = false; in isLRAvailable() 5712 Live = true; in isLRAvailable() 5716 Live = true; in isLRAvailable() 5718 return !Live; in isLRAvailable()
|
| /freebsd/sys/contrib/device-tree/Bindings/fpga/ |
| H A D | fpga-region.txt | 349 Live Device Tree contains:
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | animation | 818 # Live or stored single AAC stream (used with MPEG-2 systems) 855 # Live MPEG-4 audio streams (instead of RTP FlexMux)
|
| H A D | console | 710 >0 belong 0 Microsoft Xbox 360 package (non-Xbox Live) 713 >0x104 belong 0 Microsoft Xbox 360 package (Xbox Live)
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExpr.cpp | 5396 const Expr *Live = E->getTrueExpr(), *Dead = E->getFalseExpr(); in HandleConditionalOperatorLValueSimpleCase() local 5398 std::swap(Live, Dead); in HandleConditionalOperatorLValueSimpleCase() 5407 if (auto *ThrowExpr = dyn_cast<CXXThrowExpr>(Live->IgnoreParens())) { in HandleConditionalOperatorLValueSimpleCase() 5415 return CGF.EmitLValue(Live); in HandleConditionalOperatorLValueSimpleCase()
|
| /freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 1170 bool Live = (RawFlags & 0x2) || Version < 3; in getDecodedGVSummaryFlags() local 1175 Live, Local, AutoHide, IK); in getDecodedGVSummaryFlags()
|
| /freebsd/sys/conf/ |
| H A D | NOTES | 2098 # snd_emu10kx: Creative SoundBlaster Live! and Audigy
|