| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MatrixUtils.cpp | 30 BasicBlock *Body = BasicBlock::Create(Header->getContext(), Name + ".body", in CreateLoop() local 36 BranchInst::Create(Body, Header); in CreateLoop() 37 BranchInst::Create(Latch, Body); in CreateLoop() 53 {DominatorTree::Insert, Header, Body}, in CreateLoop() 54 {DominatorTree::Insert, Body, Latch}, in CreateLoop() 61 L->addBasicBlockToLoop(Body, LI); in CreateLoop() 63 return Body; in CreateLoop()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 29 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body, 80 Stmt *Body; variable 88 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { } in ObjCAtCatchStmt() 93 const Stmt *getCatchBody() const { return Body; } in getCatchBody() 94 Stmt *getCatchBody() { return Body; } in getCatchBody() 95 void setCatchBody(Stmt *S) { Body = S; } in setCatchBody() 111 SourceLocation getEndLoc() const LLVM_READONLY { return Body->getEndLoc(); } in getEndLoc() 119 child_range children() { return child_range(&Body, &Body + 1); } in children() 122 return const_child_range(&Body, &Body + 1); in children()
|
| H A D | StmtCXX.h | 149 Stmt *Body, SourceLocation FL, SourceLocation CAL, 322 Body, ///< The body of the coroutine. enumerator 349 Stmt *Body = nullptr; member 381 return cast<CompoundStmt>(getStoredStmts()[SubStmt::Body]); in getBody() 447 return child_range(getStoredStmts() + SubStmt::Body + 1, in childrenExclBody() 452 return const_child_range(getStoredStmts() + SubStmt::Body + 1, in childrenExclBody()
|
| H A D | ExprConcepts.h | 509 RequiresExprBodyDecl *Body; variable 519 RequiresExprBodyDecl *Body, SourceLocation LParenLoc, 529 RequiresExprBodyDecl *Body, 543 RequiresExprBodyDecl *getBody() const { return Body; } in getBody()
|
| /freebsd/contrib/llvm-project/lldb/tools/lldb-instr/ |
| H A D | Instrument.cpp | 57 Stmt *Body = Decl->getBody(); in VisitCXXMethodDecl() local 58 for (auto &C : Body->children()) { in VisitCXXMethodDecl() 66 Body->getBeginLoc(), 0, MyRewriter.getSourceMgr(), in VisitCXXMethodDecl() 98 Stmt *Body = Decl->getBody(); in ShouldSkip() local 99 if (!Body) in ShouldSkip()
|
| /freebsd/sys/contrib/dev/acpica/compiler/ |
| H A D | prmacros.c | 390 char *Body; in PrAddMacro() local 536 if (strcmp (DefineInfo->Body, BodyInSource) || in PrAddMacro() 555 Body = UtLocalCalloc (strlen (BodyInSource) + 1); in PrAddMacro() 556 strcpy (Body, BodyInSource); in PrAddMacro() 558 DefineInfo->Body = Body; in PrAddMacro() 605 strcpy (AslGbl_MacroTokenBuffer, DefineInfo->Body); in PrDoMacroInvocation()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConcepts.cpp | 115 RequiresExprBodyDecl *Body, SourceLocation LParenLoc, in RequiresExpr() argument 122 NumRequirements(Requirements.size()), Body(Body), LParenLoc(LParenLoc), in RequiresExpr() 167 ASTContext &C, SourceLocation RequiresKWLoc, RequiresExprBodyDecl *Body, in Create() argument 176 RequiresExpr(C, RequiresKWLoc, Body, LParenLoc, LocalParameters, in Create()
|
| H A D | StmtCXX.cpp | 51 Stmt *Body, SourceLocation FL, in CXXForRangeStmt() argument 63 SubExprs[BODY] = Body; in CXXForRangeStmt() 113 SubStmts[CoroutineBodyStmt::Body] = Args.Body; in CoroutineBodyStmt()
|
| H A D | StmtObjC.cpp | 21 Stmt *Body, SourceLocation FCL, in ObjCForCollectionStmt() argument 26 SubExprs[BODY] = Body; in ObjCForCollectionStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | RefCntblBaseVirtualDtorChecker.cpp | 39 bool VisitBody(const Stmt *Body) { in VisitBody() argument 40 if (!Body) in VisitBody() 43 auto [It, IsNew] = VisitedBody.insert(Body); in VisitBody() 47 return Visit(Body); in VisitBody() 59 if (auto *Body = Decl->getBody()) in HasSpecializedDelete() local 60 return VisitBody(Body); in HasSpecializedDelete()
|
| H A D | ASTUtils.cpp | 288 auto *Body = Callee->getBody(); in isACallToEnsureFn() local 289 if (!Body || Callee->isVirtualAsWritten()) in isACallToEnsureFn() 293 CacheIt->second = EnsureFunctionVisitor().Visit(Body); in isACallToEnsureFn()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 94 Stmt *Body = FD->getBody(); in getBody() local 95 if (auto *CoroBody = dyn_cast_or_null<CoroutineBodyStmt>(Body)) in getBody() 96 Body = CoroBody->getBody(); in getBody() 100 Body = SynthesizedBody; in getBody() 104 return Body; in getBody() 107 Stmt *Body = MD->getBody(); in getBody() local 111 Body = SynthesizedBody; in getBody() 115 return Body; in getBody() 137 Stmt *Body = getBody(Tmp); in isBodyAutosynthesizedFromModelFile() local 138 return Tmp && Body->getBeginLoc().isValid(); in isBodyAutosynthesizedFromModelFile()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyTIL.h | 677 : SExpr(COP_Function), VarDecl(Vd), Body(Bd) { in Function() 682 : SExpr(F), VarDecl(Vd), Body(Bd) { in Function() 691 SExpr *body() { return Body; } in body() 692 const SExpr *body() const { return Body; } in body() 700 auto E1 = Vs.traverse(Body, Vs.declCtx(Ctx)); in traverse() 719 SExpr* Body; variable 728 : SExpr(COP_SFunction), VarDecl(Vd), Body(B) { in SFunction() 735 : SExpr(F), VarDecl(Vd), Body(B) { in SFunction() 746 SExpr *body() { return Body; } in body() 747 const SExpr *body() const { return Body; } in body() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | MacroExpander.cpp | 34 SmallVector<FormatToken *, 8> Body; member 99 Def.Body.push_back(Current); in parseTail() 102 Def.Body.push_back(Current); in parseTail() 217 for (FormatToken *Tok : Def.Body) { in expand()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAsmMacro.h | 137 StringRef Body; member 145 : Name(N), Body(B), Parameters(std::move(P)) {} in MCAsmMacro() 148 : Name(N), Body(B), Parameters(std::move(P)), Locals(std::move(L)), in MCAsmMacro()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Passes/ |
| H A D | StandardInstrumentations.h | 333 raw_string_ostream SS(Body); in BlockDataT() 338 raw_string_ostream SS(Body); in BlockDataT() 342 bool operator==(const BlockDataT &That) const { return Body == That.Body; } 343 bool operator!=(const BlockDataT &That) const { return Body != That.Body; } 348 StringRef getBody() const { return Body; } in getBody() 355 std::string Body; variable
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ASTResultSynthesizer.cpp | 213 bool ASTResultSynthesizer::SynthesizeBodyResult(CompoundStmt *Body, in SynthesizeBodyResult() argument 219 if (!Body) in SynthesizeBodyResult() 222 if (Body->body_empty()) in SynthesizeBodyResult() 225 Stmt **last_stmt_ptr = Body->body_end() - 1; in SynthesizeBodyResult() 229 if (last_stmt_ptr != Body->body_begin()) { in SynthesizeBodyResult()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DirectIvarAssignment.cpp | 146 const Stmt *Body = M->getBody(); in checkASTDecl() local 149 assert(Body); in checkASTDecl() 153 MC.VisitStmt(Body); in checkASTDecl()
|
| /freebsd/sys/contrib/device-tree/Bindings/opp/ |
| H A D | ti-omap5-opp-supply.txt | 9 Also, some supplies may have an associated vbb-supply which is an Adaptive Body 20 - vbb-supply: phandle to regulator controlling Body Bias supply 21 (Usually Adaptive Body Bias regulator)
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | ASTOps.cpp | 192 auto *Body = dyn_cast_or_null<CompoundStmt>(MethodDecl->getBody()); in getMemberForAccessor() local 193 if (!Body || Body->size() != 1) in getMemberForAccessor() 195 if (auto *RS = dyn_cast<ReturnStmt>(*Body->body_begin())) in getMemberForAccessor()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 283 void checkForBadMacro(SMLoc DirectiveLoc, StringRef Name, StringRef Body, 2479 StringRef Body = Macro.Body; in expandMacro() local 2480 size_t I = 0, End = Body.size(); in expandMacro() 2482 if (Body[I] == '\\' && I + 1 != End) { in expandMacro() 2484 if (EnableAtPseudoVariable && Body[I + 1] == '@') { in expandMacro() 2489 if (Body[I + 1] == '+') { in expandMacro() 2494 if (Body[I + 1] == '(' && Body[I + 2] == ')') { in expandMacro() 2500 while (I != End && isIdentifierChar(Body[I])) in expandMacro() 2502 StringRef Argument(Body.data() + Pos, I - Pos); in expandMacro() 2503 if (AltMacroMode && I != End && Body[I] == '&') in expandMacro() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/ |
| H A D | ObjectFileJSON.h | 98 struct Body { struct 121 bool fromJSON(const llvm::json::Value &value, ObjectFileJSON::Body &body, argument
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | VarBypassDetector.cpp | 21 void VarBypassDetector::Init(CodeGenModule &CGM, const Stmt *Body) { in Init() argument 27 AlwaysBypassed = !BuildScopeInformation(CGM, Body, ParentScope); in Init()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | RefactoringCallbacks.cpp | 129 const Stmt *Body = PickTrueBranch ? Node->getThen() : Node->getElse(); in run() local 130 if (Body) { in run() 132 Replace.add(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body)); in run()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1696 StmtResult Body(ParseStatement(TrailingElseLoc)); in ParseSwitchStatement() local 1702 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get()); in ParseSwitchStatement() 1767 StmtResult Body(ParseStatement(TrailingElseLoc)); in ParseWhileStatement() local 1769 if (Body.isUsable()) in ParseWhileStatement() 1775 if (Cond.isInvalid() || Body.isInvalid()) in ParseWhileStatement() 1778 return Actions.ActOnWhileStmt(WhileLoc, LParen, Cond, RParen, Body.get()); in ParseWhileStatement() 1812 StmtResult Body(ParseStatement()); in ParseDoStatement() local 1818 if (!Body.isInvalid()) { in ParseDoStatement() 1852 if (Cond.isInvalid() || Body.isInvalid()) in ParseDoStatement() 1855 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement() [all …]
|