/freebsd/contrib/llvm-project/llvm/tools/bugpoint/ |
H A D | CrashDebugger.cpp | 87 BugDriver &BD; member in llvm::ReducePassList 90 ReducePassList(BugDriver &bd) : BD(bd) {} in ReducePassList() 108 if (BD.runPasses(BD.getProgram(), Prefix, PrefixOutput)) in doTest() 111 OrigProgram = std::move(BD.Program); in doTest() 113 BD.Program = parseInputFile(PrefixOutput, BD.getContext()); in doTest() 114 if (BD.Program == nullptr) { in doTest() 115 errs() << BD.getToolName() << ": Error reading bitcode file '" in doTest() 125 if (BD.runPasses(BD.getProgram(), Suffix)) in doTest() 130 BD.Program = std::move(OrigProgram); in doTest() 141 BugDriver &BD; member in __anon1e075dd70211::ReduceCrashingGlobalInitializers [all …]
|
H A D | Miscompilation.cpp | 47 BugDriver &BD; member in __anon0fc5bc690111::ReduceMiscompilingPasses 50 ReduceMiscompilingPasses(BugDriver &bd) : BD(bd) {} in ReduceMiscompilingPasses() 69 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false /*delete*/, in doTest() 73 BD.setPassesToRun(Suffix); in doTest() 74 BD.EmitProgressBitcode(BD.getProgram(), "pass-error", false); in doTest() 76 if (Error E = BD.debugOptimizerCrash()) in doTest() 82 Expected<bool> Diff = BD.diffProgram(BD.getProgram(), BitcodeResult, "", in doTest() 89 errs() << BD.getToolName() << ": I'm confused: the test fails when " in doTest() 111 if (BD.runPasses(BD.getProgram(), Prefix, BitcodeResult, false /*delete*/, in doTest() 115 BD.setPassesToRun(Prefix); in doTest() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Attr.h | 67 if (const auto *BD = dyn_cast<BlockDecl>(D)) in getFunctionOrMethodNumParams() local 68 return BD->getNumParams(); in getFunctionOrMethodNumParams() 78 if (const auto *BD = dyn_cast<BlockDecl>(D)) in getFunctionOrMethodParam() local 79 return BD->getParamDecl(Idx); in getFunctionOrMethodParam() 86 if (const auto *BD = dyn_cast<BlockDecl>(D)) in getFunctionOrMethodParamType() local 87 return BD->getParamDecl(Idx)->getType(); in getFunctionOrMethodParamType() 115 if (const auto *BD = dyn_cast<BlockDecl>(D)) in isFunctionOrMethodVariadic() local 116 return BD->isVariadic(); in isFunctionOrMethodVariadic()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | AnalysisDeclContext.h | 174 getReferencedBlockVars(const BlockDecl *BD); 188 const BlockDecl *BD, const void *Data); 356 const BlockDecl *BD; variable 362 const LocationContext *ParentLC, const BlockDecl *BD, in BlockInvocationContext() argument 364 : LocationContext(Block, ADC, ParentLC, ID), BD(BD), Data(Data) {} in BlockInvocationContext() 369 const BlockDecl *getBlockDecl() const { return BD; } in getBlockDecl() 376 const LocationContext *ParentLC, const BlockDecl *BD, in Profile() argument 378 ProfileCommon(ID, Block, ADC, ParentLC, BD); in Profile() 419 const BlockDecl *BD, const void *Data);
|
H A D | AnyCall.h | 152 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) { in parameters() local 153 return BD->parameters(); in parameters()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | AnalysisDeclContext.cpp | 118 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) in getBody() local 119 return BD->getBody(); in getBody() 151 if (const auto *BD = dyn_cast<BlockDecl>(D)) { in getSelfDecl() local 153 for (const auto &I : BD->captures()) { in getSelfDecl() 319 const LocationContext *ParentLC, const BlockDecl *BD, const void *Data) { in getBlockInvocationContext() argument 321 BD, Data); in getBlockInvocationContext() 420 Profile(ID, getAnalysisDeclContext(), getParent(), BD, Data); in Profile() 444 const BlockDecl *BD, const void *Data) { in getBlockInvocationContext() argument 446 BlockInvocationContext::Profile(ID, ADC, ParentLC, BD, Data); in getBlockInvocationContext() 452 L = new BlockInvocationContext(ADC, ParentLC, BD, Data, ++NewID); in getBlockInvocationContext() [all …]
|
H A D | LiveVariables.cpp | 74 for (const BindingDecl *BD : DD->bindings()) in isLive() local 75 alive |= liveBindings.contains(BD); in isLive() 350 if (const BindingDecl* BD = dyn_cast<BindingDecl>(D)) { in VisitBinaryOperator() local 351 Killed = !BD->getType()->isReferenceType(); in VisitBinaryOperator() 353 if (const auto *HV = BD->getHoldingVar()) in VisitBinaryOperator() 356 val.liveBindings = LV.BSetFact.remove(val.liveBindings, BD); in VisitBinaryOperator() 383 if (const auto *BD = dyn_cast<BindingDecl>(D)) { in VisitDeclRefExpr() local 385 if (const auto *HV = BD->getHoldingVar()) in VisitDeclRefExpr() 388 val.liveBindings = LV.BSetFact.add(val.liveBindings, BD); in VisitDeclRefExpr() 399 for (const auto *BD : DD->bindings()) { in VisitDeclStmt() local [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Mangle.cpp | 38 const BlockDecl *BD, in mangleFunctionBlock() argument 40 unsigned discriminator = Context.getBlockId(BD, true); in mangleFunctionBlock() 258 void MangleContext::mangleGlobalBlock(const BlockDecl *BD, in mangleGlobalBlock() argument 261 unsigned discriminator = getBlockId(BD, false); in mangleGlobalBlock() 276 CXXCtorType CT, const BlockDecl *BD, in mangleCtorBlock() argument 281 mangleFunctionBlock(*this, Buffer, BD, ResStream); in mangleCtorBlock() 285 CXXDtorType DT, const BlockDecl *BD, in mangleDtorBlock() argument 290 mangleFunctionBlock(*this, Buffer, BD, ResStream); in mangleDtorBlock() 293 void MangleContext::mangleBlock(const DeclContext *DC, const BlockDecl *BD, in mangleBlock() argument 309 mangleCtorBlock(CD, /*CT*/ Ctor_Complete, BD, Out); in mangleBlock() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Program.cpp | 278 auto GetBaseDesc = [this](const RecordDecl *BD, in getOrCreateRecord() 282 return allocateDescriptor(BD, BR, std::nullopt, /*isConst=*/false, in getOrCreateRecord() 299 const RecordDecl *BD = RT->getDecl(); in getOrCreateRecord() argument 300 const Record *BR = getOrCreateRecord(BD); in getOrCreateRecord() 302 const Descriptor *Desc = GetBaseDesc(BD, BR); in getOrCreateRecord() 307 Bases.push_back({BD, BaseSize, Desc, BR}); in getOrCreateRecord() 316 const RecordDecl *BD = RT->getDecl(); in getOrCreateRecord() local 317 const Record *BR = getOrCreateRecord(BD); in getOrCreateRecord() 319 const Descriptor *Desc = GetBaseDesc(BD, BR); in getOrCreateRecord() 324 VirtBases.push_back({BD, VirtSize, Desc, BR}); in getOrCreateRecord()
|
/freebsd/sys/powerpc/powerpc/ |
H A D | db_disasm.c | 690 int BD; in disasm_fields() local 691 BD = extract_field(instr, 31 - 29, 14); in disasm_fields() 692 BD = BD << 18; in disasm_fields() 693 BD = BD >> 16; in disasm_fields() 694 BD += loc; in disasm_fields() 695 if ((vm_offset_t)BD < loc) in disasm_fields() 886 int BD; in disasm_fields() local 887 BD = extract_field(instr, 31 - 29, 14); in disasm_fields() 888 BD = BD << 18; in disasm_fields() 889 BD = BD >> 16; in disasm_fields() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
H A D | ASTOps.h | 125 bool TraverseBindingDecl(BindingDecl *BD) { in TraverseBindingDecl() argument 128 if (VarDecl *HoldingVar = BD->getHoldingVar()) in TraverseBindingDecl() 130 return RecursiveASTVisitor<Derived>::TraverseBindingDecl(BD); in TraverseBindingDecl()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Mangle.h | 84 unsigned getBlockId(const BlockDecl *BD, bool Local) { in getBlockId() argument 88 Result = BlockIds.insert(std::make_pair(BD, BlockIds.size())); in getBlockId() 148 void mangleGlobalBlock(const BlockDecl *BD, 152 const BlockDecl *BD, raw_ostream &Out); 154 const BlockDecl *BD, raw_ostream &Out); 155 void mangleBlock(const DeclContext *DC, const BlockDecl *BD,
|
H A D | MangleNumberingContext.h | 42 virtual unsigned getManglingNumber(const BlockDecl *BD) = 0;
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | MemRegion.cpp | 206 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) { in getDecl() local 207 assert(Index < BD->param_size()); in getDecl() 208 return BD->parameters()[Index]; in getDecl() 367 const BlockDecl *BD, CanQualType, in ProfileRegion() argument 371 ID.AddPointer(BD); in ProfileRegion() 375 BlockCodeRegion::ProfileRegion(ID, BD, locTy, AC, superRegion); in Profile() 1015 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) { in getVarRegion() local 1016 if (Index < BD->param_size() && BD->parameters()[Index] == PVD) in getVarRegion() 1070 else if (const auto *BD = dyn_cast<BlockDecl>(STCD)) { in getVarRegion() local 1076 if (const TypeSourceInfo *TSI = BD->getSignatureAsWritten()) in getVarRegion() [all …]
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | NormalizationTest.txt | 74 00BD;00BD;00BD;0031 2044 0032;0031 2044 0032; # (½; ½; ½; 1⁄2; 1⁄2; ) VULGAR FRACTION ONE HALF 1383 24BD;24BD;24BD;0048;0048; # (Ⓗ; Ⓗ; Ⓗ; H; H; ) CIRCLED LATIN CAPITAL LETTER H 1694 30BE;30BE;30BD 3099;30BE;30BD 3099; # (ゾ; ゾ; ソ◌゙; ゾ; ソ◌゙; ) KATAKANA LETTER ZO 1999 32BD;32BD;32BD;0034 0038;0034 0038; # (㊽; ㊽; ㊽; 48; 48; ) CIRCLED NUMBER FORTY EIGHT 2032 32DE;32DE;32DE;30BD;30BD; # (㋞; ㋞; ㋞; ソ; ソ; ) CIRCLED KATAKANA SO 2120 3337;3337;3337;30DA 30BD;30D8 309A 30BD; # (㌷; ㌷; ㌷; ペソ; ヘ◌゚ソ; ) SQUARE PESO 2254 33BD;33BD;33BD;006D 0057;006D 0057; # (㎽; ㎽; ㎽; mW; mW; ) SQUARE MW 2343 AC16;AC16;1100 1161 11BD;AC16;1100 1161 11BD; # (갖; 갖; 갖; 갖; 갖; ) HANGUL SYLLABLE GAJ 2371 AC32;AC32;1100 1162 11BD;AC32;1100 1162 11BD; # (갲; 갲; 갲; 갲; 갲; ) HANGUL SYLLABLE GAEJ 2399 AC4E;AC4E;1100 1163 11BD;AC4E;1100 1163 11BD; # (걎; 걎; 걎; 걎; 걎; ) HANGUL SYLLABLE GYAJ [all …]
|
/freebsd/crypto/openssl/test/certs/ |
H A D | embeddedSCTs3.sct | 15 Log ID : 56:14:06:9A:2F:D7:C2:EC:D3:F5:E1:BD:44:B2:3E:C7: 32 30:45:02:20:2B:06:42:0F:D9:71:BD:21:42:A5:F9:C5:
|
H A D | embeddedSCTs1.sct | 4 79:59:E8:F7:C6:D3:88:FC:00:2E:0B:BD:3F:74:D7:64
|
/freebsd/contrib/llvm-project/llvm/lib/Passes/ |
H A D | StandardInstrumentations.cpp | 1792 DotCfgDiffNode(DotCfgDiff &G, unsigned N, const BlockDataT<DCData> &BD, in DotCfgDiffNode() argument 1794 : Graph(G), N(N), Data{&BD, nullptr}, Colour(Colour) {} in DotCfgDiffNode() 1888 void createNode(StringRef Label, const BlockDataT<DCData> &BD, StringRef C) { in createNode() argument 1890 Nodes.emplace_back(*this, Pos, BD, C); in createNode() 1984 const BlockDataT<DCData> &BD = B.getValue(); in DotCfgDiff() local 1985 createNode(Label, BD, BeforeColour); in DotCfgDiff() 1989 for (StringMap<std::string>::const_iterator Sink = BD.getData().begin(), in DotCfgDiff() 1990 E = BD.getData().end(); in DotCfgDiff() 1993 BD.getData().getSuccessorLabel(Sink->getKey()).str(); in DotCfgDiff() 2001 const BlockDataT<DCData> &BD = A.getValue(); in DotCfgDiff() local [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCInstrInfo.td | 1358 class BCC_class : BForm<16, 0, 0, (outs), (ins (pred $BIBO, $CR):$cond, condbrtarget:$BD), 1359 "b${cond:cc}${cond:pm} ${cond:reg}, $BD" 1360 /*[(PPCcondbranch crrc:$crS, imm:$opc, bb:$BD)]*/>; 1367 def BCCA : BForm<16, 1, 0, (outs), (ins (pred $BIBO, $CR):$cond, abscondbrtarget:$BD), 1368 "b${cond:cc}a${cond:pm} ${cond:reg}, $BD">; 1376 let Pattern = [(brcond i1:$BI, bb:$BD)] in 1377 def BC : BForm_4<16, 12, 0, 0, (outs), (ins crbitrc:$BI, condbrtarget:$BD), 1378 "bc 12, $BI, $BD">; 1380 let Pattern = [(brcond (not i1:$BI), bb:$BD)] in 1381 def BCn : BForm_4<16, 4, 0, 0, (outs), (ins crbitrc:$BI, condbrtarget:$BD), [all …]
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read_support_filter_lz4.c | 157 unsigned char flag, BD; in lz4_reader_bid() local 170 BD = buffer[5]; in lz4_reader_bid() 172 if (((BD & 0x70) >> 4) < 4) in lz4_reader_bid() 175 if (BD & ~0x70) in lz4_reader_bid()
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | bluetooth.txt | 3 - local-bd-address: array of 6 bytes, specifies the BD address that was
|
/freebsd/usr.bin/jot/tests/ |
H A D | regress.x.out | 1 …,87,89,8B,8D,8F,91,93,95,97,99,9B,9D,9F,A1,A3,A5,A7,A9,AB,AD,AF,B1,B3,B5,B7,B9,BB,BD,BF,C1,C3,C5,C8
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
H A D | AnalysisConsumer.cpp | 332 bool VisitBlockDecl(BlockDecl *BD) { in VisitBlockDecl() argument 333 if (BD->hasBody()) { in VisitBlockDecl() 337 if (!BD->isDependentContext()) { in VisitBlockDecl() 338 HandleCode(BD, RecVisitorMode); in VisitBlockDecl()
|
/freebsd/crypto/openssl/test/ct/ |
H A D | tls1.sct | 4 79:59:E8:F7:C6:D3:88:FC:00:2E:0B:BD:3F:74:D7:64
|
/freebsd/share/vt/fonts/ |
H A D | terminus-b32.hex | 128 00BD:000000000000000000000000180038007806180E181C1838187018E019C0038007000E7C1CFE38C670C6600C001800… 344 02BD:00000180018001C000C000600000000000000000000000000000000000000000000000000000000000000000000000… 419 03BD:000000000000000000000000000000000000000000000000300C300C300C1818181818180C300C300C300660066003… 838 23BD:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000… 1217 28BD:0000000018181818181818180000000000000000001800180018001800000000000000001818181818181818000000…
|