Home
last modified time | relevance | path

Searched refs:Body (Results 1 – 25 of 125) sorted by relevance

12345

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp30 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-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtObjC.h29 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 DStmtCXX.h149 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 DExprConcepts.h516 RequiresExprBodyDecl *Body; variable
530 RequiresExprBodyDecl *Body, SourceLocation LParenLoc,
540 RequiresExprBodyDecl *Body,
554 RequiresExprBodyDecl *getBody() const { return Body; } in getBody()
/freebsd-14.2/contrib/llvm-project/lldb/tools/lldb-instr/
H A DInstrument.cpp56 Stmt *Body = Decl->getBody(); in VisitCXXMethodDecl() local
57 for (auto &C : Body->children()) { in VisitCXXMethodDecl()
65 Body->getBeginLoc(), 0, MyRewriter.getSourceMgr(), in VisitCXXMethodDecl()
97 Stmt *Body = Decl->getBody(); in ShouldSkip() local
98 if (!Body) in ShouldSkip()
/freebsd-14.2/sys/contrib/dev/acpica/compiler/
H A Dprmacros.c390 char *Body; in PrAddMacro() local
535 if (strcmp (DefineInfo->Body, BodyInSource) || in PrAddMacro()
554 Body = UtLocalCalloc (strlen (BodyInSource) + 1); in PrAddMacro()
555 strcpy (Body, BodyInSource); in PrAddMacro()
557 DefineInfo->Body = Body; in PrAddMacro()
603 strcpy (AslGbl_MacroTokenBuffer, DefineInfo->Body); in PrDoMacroInvocation()
/freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransUnusedInitDelegate.cpp34 Stmt *Body; member in __anonc5dd3ec90111::UnusedInitRewriter
41 : Body(nullptr), Pass(pass) { } in UnusedInitRewriter()
44 Body = body; in transformBody()
H A DTransUnbridgedCasts.cpp64 Stmt *Body; member in __anon9f0efc380111::UnbridgedCastRewriter
69 : Pass(pass), ParentD(nullptr), Body(nullptr) { in UnbridgedCastRewriter()
75 Body = body; in transformBody()
324 collectRemovables(Body, *Removables); in tryRemoving()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeStmtGen.cpp233 if (const auto *Body = F->getBody()) in visitFunc() local
234 if (!visitStmt(Body)) in visitFunc()
413 const Stmt *Body = S->getBody(); in visitWhileStmt() local
428 if (!this->visitLoopBody(Body)) in visitWhileStmt()
442 const Stmt *Body = S->getBody(); in visitDoStmt() local
454 if (!this->visitLoopBody(Body)) in visitDoStmt()
473 const Stmt *Body = S->getBody(); in visitForStmt() local
494 if (Body && !this->visitLoopBody(Body)) in visitForStmt()
512 const Stmt *Body = S->getBody(); in visitCXXForRangeStmt() local
548 if (!this->visitLoopBody(Body)) in visitCXXForRangeStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExprConcepts.cpp120 RequiresExprBodyDecl *Body, SourceLocation LParenLoc, in RequiresExpr() argument
127 NumRequirements(Requirements.size()), Body(Body), LParenLoc(LParenLoc), in RequiresExpr()
174 ASTContext &C, SourceLocation RequiresKWLoc, RequiresExprBodyDecl *Body, in Create() argument
183 RequiresExpr(C, RequiresKWLoc, Body, LParenLoc, LocalParameters, in Create()
H A DStmtCXX.cpp51 Stmt *Body, SourceLocation FL, in CXXForRangeStmt() argument
63 SubExprs[BODY] = Body; in CXXForRangeStmt()
113 SubStmts[CoroutineBodyStmt::Body] = Args.Body; in CoroutineBodyStmt()
H A DStmtObjC.cpp21 Stmt *Body, SourceLocation FCL, in ObjCForCollectionStmt() argument
26 SubExprs[BODY] = Body; in ObjCForCollectionStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp96 Stmt *Body = FD->getBody(); in getBody() local
97 if (auto *CoroBody = dyn_cast_or_null<CoroutineBodyStmt>(Body)) in getBody()
98 Body = CoroBody->getBody(); in getBody()
102 Body = SynthesizedBody; in getBody()
106 return Body; in getBody()
109 Stmt *Body = MD->getBody(); in getBody() local
113 Body = SynthesizedBody; in getBody()
117 return Body; in getBody()
139 Stmt *Body = getBody(Tmp); in isBodyAutosynthesizedFromModelFile() local
140 return Tmp && Body->getBeginLoc().isValid(); in isBodyAutosynthesizedFromModelFile()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h690 SExpr *body() { return Body; } in body()
718 SExpr* Body; variable
745 SExpr *body() { return Body; } in body()
770 SExpr* Body; variable
785 SExpr *body() { return Body; } in body()
805 SExpr* Body; variable
813 : SExpr(C), Range(R), Body(B) {} in Field()
820 SExpr *body() { return Body; } in body()
840 SExpr* Body; variable
1879 SExpr *body() { return Body; } in body()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DMacroExpander.cpp37 SmallVector<FormatToken *, 8> Body; member
102 Def.Body.push_back(Current); in parseTail()
105 Def.Body.push_back(Current); in parseTail()
219 for (FormatToken *Tok : Def.Body) { in expand()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmMacro.h144 StringRef Body; member
151 : Name(N), Body(B), Parameters(std::move(P)) {} in MCAsmMacro()
154 : Name(N), Body(B), Parameters(std::move(P)), Locals(std::move(L)), in MCAsmMacro()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp146 const Stmt *Body = M->getBody(); in checkASTDecl() local
149 assert(Body); in checkASTDecl()
153 MC.VisitStmt(Body); in checkASTDecl()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h312 raw_string_ostream SS(Body); in BlockDataT()
316 bool operator==(const BlockDataT &That) const { return Body == That.Body; }
317 bool operator!=(const BlockDataT &That) const { return Body != That.Body; }
322 StringRef getBody() const { return Body; } in getBody()
329 std::string Body; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp221 bool ASTResultSynthesizer::SynthesizeBodyResult(CompoundStmt *Body, in SynthesizeBodyResult() argument
227 if (!Body) in SynthesizeBodyResult()
230 if (Body->body_empty()) in SynthesizeBodyResult()
233 Stmt **last_stmt_ptr = Body->body_end() - 1; in SynthesizeBodyResult()
237 if (last_stmt_ptr != Body->body_begin()) { in SynthesizeBodyResult()
/freebsd-14.2/sys/contrib/device-tree/Bindings/opp/
H A Dti-omap5-opp-supply.txt9 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-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2515 while (!Body.empty()) { in expandMacro()
2537 OS << Body.slice(0, Pos); in expandMacro()
2544 switch (Body[Pos + 1]) { in expandMacro()
2592 if (Body[Pos + 1] == '(' && Body[Pos + 2] == ')') in expandMacro()
2630 Body = Body.substr(Pos); in expandMacro()
2895 StringRef Body = M->Body; in handleMacroEntry() local
4680 while (!Body.empty()) { in checkForBadMacro()
4702 if (Body[Pos] == '$') { in checkForBadMacro()
4703 switch (Body[Pos + 1]) { in checkForBadMacro()
4733 if (Body[Pos + 1] == '(' && Body[Pos + 2] == ')') in checkForBadMacro()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DVarBypassDetector.cpp20 void VarBypassDetector::Init(const Stmt *Body) { in Init() argument
26 AlwaysBypassed = !BuildScopeInformation(Body, ParentScope); in Init()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.h98 struct Body { struct
121 bool fromJSON(const llvm::json::Value &value, ObjectFileJSON::Body &body, argument
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp129 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-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LowerAMXIntrinsics.cpp110 BasicBlock *Body = in createLoop() local
116 BranchInst::Create(Body, Header); in createLoop()
117 BranchInst::Create(Latch, Body); in createLoop()
133 {DominatorTree::Insert, Header, Body}, in createLoop()
134 {DominatorTree::Insert, Body, Latch}, in createLoop()
141 L->addBasicBlockToLoop(Body, *LI); in createLoop()
144 return Body; in createLoop()

12345