Searched refs:AST (Results 26 - 42 of 42) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DDiagnosticIDs.cpp86 VALIDATE_DIAG_SIZE(AST)
150 CATEGORY(AST, PARSE)
151 CATEGORY(COMMENT, AST)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp338 Node *AST = Parser.parse(); local
340 if (AST == nullptr)
346 AST->print(S);
378 // Demangle MangledName into an AST, storing it into this->RootNode.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp514 : DL(Dl), TheLoop(TheLoop), AST(*AA), LI(LI), DepCands(DA),
520 AST.add(Ptr, LocationSize::unknown(), Loc.AATags);
529 AST.add(Ptr, LocationSize::unknown(), Loc.AATags);
601 AliasSetTracker AST; member in class:__anon3374::AccessAnalysis
719 for (auto &AS : AST) {
856 LLVM_DEBUG(dbgs() << " AST: "; AST.dump());
869 for (auto &AS : AST) {
/freebsd-13-stable/sys/mips/mips/
H A Dexception.S271 SAVE_REG(AT, AST, sp) ;\
333 RESTORE_REG(AT, AST, sp) ;\
430 SAVE_U_PCB_REG(AT, AST, k1)
558 RESTORE_U_PCB_REG(AT, AST, k1)
695 SAVE_U_PCB_REG(AT, AST, k1)
767 * On SMP kernels the AST processing might trigger IPI to other processors.
768 * If that processor is also doing AST processing with interrupts disabled
837 RESTORE_U_PCB_REG(AT, AST, k1)
H A Dswtch.S99 RESTORE_U_PCB_REG(AT, AST, k1)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLICM.cpp165 AliasSetTracker *AST, MemorySSAUpdater *MSSAU);
392 // Build an AST using MSSA.
1001 /// Return true if all of the alias sets within this AST are known not to
1397 AliasSetTracker *AST, MemorySSAUpdater *MSSAU) {
1398 if (AST)
1399 AST->deleteValue(&I);
1710 AliasSetTracker &AST; member in class:__anon4646::LoopPromoter
1745 PredCache(PIC), AST(ast), MSSAU(MSSAU), LI(li), DL(std::move(dl)),
1797 AST.copyValue(LI, V);
1801 AST
1396 eraseInstruction(Instruction &I, ICFLoopSafetyInfo &SafetyInfo, AliasSetTracker *AST, MemorySSAUpdater *MSSAU) argument
[all...]
H A DLoopRerollPass.cpp1221 AliasSetTracker AST(*AA);
1294 AST.add(I);
1318 for (auto &K : AST) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSMTAPI.h135 /// straight from clang's AST, through the from* methods.
177 // Returns an appropriate sort for the given AST.
178 virtual SMTSortRef getSort(const SMTExprRef &AST) = 0;
/freebsd-13-stable/sys/dev/bhnd/tools/
H A Dnvram_map_gen.awk288 ArrayType = class_new("ArrayType", AST)
352 # AST node classes
354 AST = class_new("AST")
355 class_add_prop(AST, p_line, "line")
357 SymbolContext = class_new("SymbolContext", AST)
371 RevRange = class_new("RevRange", AST)
376 StringConstant = class_new("StringConstant", AST)
381 Var = class_new("Var", AST)
394 SromContext = class_new("SromContext", AST)
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DASTUnit.h17 #include "clang/AST/ASTContext.h"
88 /// Utility class for loading a ASTContext from an AST file.
129 /// The AST consumer that received information about the translation
141 /// Fake module loader: the AST unit doesn't need to load any modules.
144 // OnlyLocalDecls - when true, walking this AST should only visit declarations
145 // that come from the AST itself, not from included precompiled headers.
152 /// Track whether the main file was loaded from an AST or not.
155 /// What kind of translation unit this AST represents.
256 ASTUnit &AST, CaptureDiagsKind CaptureDiagnostics);
448 /// and AST come
[all...]
/freebsd-13-stable/tools/lua/
H A Dtemplate.lua88 local AST = byte("*")
402 elseif t == AST then
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp265 const ARMSubtarget &AST = local
267 const bool CanUseBFC = AST.hasV6T2Ops() || AST.hasV7Ops();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFG.h19 #include "clang/AST/ExprCXX.h"
20 #include "clang/AST/ExprObjC.h"
559 /// AST node that has control-flow: if-statements, breaks, loops, etc.
1223 /// CFGBlocks which are simply containers of Stmt*'s in the AST the CFG
1273 /// Builds a CFG from an AST.
1274 static std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *AST, ASTContext *C,
1342 /// The CFG uses synthetic DeclStmts when a single AST DeclStmt contains
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DRecursiveASTVisitor.h1 //===--- RecursiveASTVisitor.h - Recursive AST Visitor ----------*- C++ -*-===//
10 // traverses the entire AST.
16 #include "clang/AST/Attr.h"
17 #include "clang/AST/Decl.h"
18 #include "clang/AST/DeclarationName.h"
19 #include "clang/AST/DeclBase.h"
20 #include "clang/AST/DeclCXX.h"
21 #include "clang/AST/DeclFriend.h"
22 #include "clang/AST/DeclObjC.h"
23 #include "clang/AST/DeclOpenM
195 TraverseAST(ASTContext &AST) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp14 #include "clang/AST/APValue.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/Attr.h"
17 #include "clang/AST/AttrIterator.h"
18 #include "clang/AST/CharUnits.h"
19 #include "clang/AST/Decl.h"
20 #include "clang/AST/DeclBase.h"
21 #include "clang/AST/DeclCXX.h"
22 #include "clang/AST/DeclObjC.h"
23 #include "clang/AST/DeclarationNam
[all...]
H A DTreeTransform.h9 // AST and rebuilds it, possibly transforming some nodes in the process.
18 #include "clang/AST/Decl.h"
19 #include "clang/AST/DeclObjC.h"
20 #include "clang/AST/DeclTemplate.h"
21 #include "clang/AST/Expr.h"
22 #include "clang/AST/ExprConcepts.h"
23 #include "clang/AST/ExprCXX.h"
24 #include "clang/AST/ExprObjC.h"
25 #include "clang/AST/ExprOpenMP.h"
26 #include "clang/AST/OpenMPClaus
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1 //===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===//
17 #include "clang/AST/ASTConcept.h"
18 #include "clang/AST/ASTFwd.h"
19 #include "clang/AST/Attr.h"
20 #include "clang/AST/Availability.h"
21 #include "clang/AST/ComparisonCategories.h"
22 #include "clang/AST/DeclTemplate.h"
23 #include "clang/AST/DeclarationName.h"
24 #include "clang/AST/Expr.h"
25 #include "clang/AST/ExprCX
[all...]

Completed in 205 milliseconds

12