Home
last modified time | relevance | path

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

12345

/freebsd/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/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()
/freebsd/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/sys/contrib/dev/acpica/compiler/
H A Dprmacros.c390 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/ARCMigrate/
H A DTransUnusedInitDelegate.cpp34 Stmt *Body; member in __anonb7cafbd30111::UnusedInitRewriter
41 : Body(nullptr), Pass(pass) { } in UnusedInitRewriter()
44 Body = body; in transformBody()
H A DTransUnbridgedCasts.cpp64 Stmt *Body; member in __anon8323c4420111::UnbridgedCastRewriter
69 : Pass(pass), ParentD(nullptr), Body(nullptr) { in UnbridgedCastRewriter()
75 Body = body; in transformBody()
324 collectRemovables(Body, *Removables); in tryRemoving()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRefCntblBaseVirtualDtorChecker.cpp39 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()
/freebsd/contrib/llvm-project/clang/lib/AST/
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/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/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h676 : SExpr(COP_Function), VarDecl(Vd), Body(Bd) { in Function()
681 : SExpr(F), VarDecl(Vd), Body(Bd) { in Function()
690 SExpr *body() { return Body; } in body()
691 const SExpr *body() const { return Body; } in body()
699 auto E1 = Vs.traverse(Body, Vs.declCtx(Ctx)); in traverse()
718 SExpr* Body; variable
727 : SExpr(COP_SFunction), VarDecl(Vd), Body(B) { in SFunction()
734 : SExpr(F), VarDecl(Vd), Body(B) { in SFunction()
745 SExpr *body() { return Body; } in body()
746 const SExpr *body() const { return Body; } in body()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h318 raw_string_ostream SS(Body); in BlockDataT()
323 raw_string_ostream SS(Body); in BlockDataT()
327 bool operator==(const BlockDataT &That) const { return Body == That.Body; }
328 bool operator!=(const BlockDataT &That) const { return Body != That.Body; }
333 StringRef getBody() const { return Body; } in getBody()
340 std::string Body; variable
/freebsd/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/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmMacro.h144 StringRef Body; member
152 : Name(N), Body(B), Parameters(std::move(P)) {} in MCAsmMacro()
155 : Name(N), Body(B), Parameters(std::move(P)), Locals(std::move(L)), in MCAsmMacro()
/freebsd/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/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DASTOps.cpp185 auto *Body = dyn_cast_or_null<CompoundStmt>(MethodDecl->getBody()); in getMemberForAccessor() local
186 if (!Body || Body->size() != 1) in getMemberForAccessor()
188 if (auto *RS = dyn_cast<ReturnStmt>(*Body->body_begin())) in getMemberForAccessor()
/freebsd/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/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/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/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp296 void checkForBadMacro(SMLoc DirectiveLoc, StringRef Name, StringRef Body,
2538 StringRef Body = Macro.Body; in expandMacro() local
2539 size_t I = 0, End = Body.size(); in expandMacro()
2541 if (Body[I] == '\\' && I + 1 != End) { in expandMacro()
2543 if (EnableAtPseudoVariable && Body[I + 1] == '@') { in expandMacro()
2548 if (Body[I + 1] == '+') { in expandMacro()
2553 if (Body[I + 1] == '(' && Body[I + 2] == ')') { in expandMacro()
2559 while (I != End && isIdentifierChar(Body[I])) in expandMacro()
2561 StringRef Argument(Body.data() + Pos, I - Pos); in expandMacro()
2562 if (AltMacroMode && I != End && Body[I] == '&') in expandMacro()
[all …]
/freebsd/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/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/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()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1797 StmtResult Body(ParseStatement(TrailingElseLoc)); in ParseSwitchStatement() local
1803 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get()); in ParseSwitchStatement()
1867 StmtResult Body(ParseStatement(TrailingElseLoc)); in ParseWhileStatement() local
1869 if (Body.isUsable()) in ParseWhileStatement()
1875 if (Cond.isInvalid() || Body.isInvalid()) in ParseWhileStatement()
1878 return Actions.ActOnWhileStmt(WhileLoc, LParen, Cond, RParen, Body.get()); in ParseWhileStatement()
1911 StmtResult Body(ParseStatement()); in ParseDoStatement() local
1917 if (!Body.isInvalid()) { in ParseDoStatement()
1955 if (Cond.isInvalid() || Body.isInvalid()) in ParseDoStatement()
1958 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
[all …]

12345