| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyMachineFunctionInfo.h | 37 std::vector<MVT> Locals; variable 92 void setNumLocals(size_t NumLocals) { Locals.resize(NumLocals, MVT::i32); } in setNumLocals() 93 void setLocal(size_t i, MVT VT) { Locals[i] = VT; } in setLocal() 94 void addLocal(MVT VT) { Locals.push_back(VT); } in addLocal() 95 const std::vector<MVT> &getLocals() const { return Locals; } in getLocals()
|
| H A D | WebAssemblyAsmPrinter.cpp | 635 SmallVector<wasm::ValType, 16> Locals; in emitFunctionBodyStart() local 636 valTypesFromMVTs(MFI->getLocals(), Locals); in emitFunctionBodyStart() 637 getTargetStreamer()->emitLocal(Locals); in emitFunctionBodyStart()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/ |
| H A D | guarded_pool_allocator_tls.h | 49 alignas(8) static GWP_ASAN_TLS_INITIAL_EXEC ThreadLocalPackedVariables Locals; in getThreadLocals() 50 return &Locals; in getThreadLocals()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | EvalEmitter.h | 114 llvm::SmallVector<std::unique_ptr<char[]>> Locals; variable 117 assert(Index < Locals.size()); in getLocal() 118 return reinterpret_cast<Block *>(Locals[Index].get()); in getLocal()
|
| H A D | InterpFrame.h | 150 return reinterpret_cast<Block *>(Locals.get() + Offset - sizeof(Block)); in localBlock() 155 return reinterpret_cast<InlineDescriptor *>(Locals.get() + Offset); in localInlineDesc() 176 std::unique_ptr<char[]> Locals; variable
|
| H A D | EvalEmitter.cpp | 23 for (auto &V : Locals) { in ~EvalEmitter() 114 unsigned Off = Locals.size(); in createLocal() 115 Locals.push_back(std::move(Memory)); in createLocal()
|
| H A D | InterpFrame.cpp | 41 Locals = std::make_unique<char[]>(FrameSize); in InterpFrame()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCAsmMacro.cpp | 41 if (!Locals.empty()) { in dump() 43 for (StringRef L : Locals) in dump()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/ |
| H A D | DIPrinter.h | 50 const std::vector<DILocal> &Locals) = 0; 97 const std::vector<DILocal> &Locals) override; 148 const std::vector<DILocal> &Locals) override;
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | ASTOps.cpp | 174 llvm::DenseSet<const VarDecl *> &Locals) { in insertIfLocal() argument 177 Locals.insert(V); in insertIfLocal() 229 insertIfLocal(*D, Referenced.Locals); in VisitDecl() 236 insertIfLocal(*E->getDecl(), Referenced.Locals); in VisitDeclRefExpr()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
| H A D | DIPrinter.cpp | 224 const std::vector<DILocal> &Locals) { in print() argument 226 if (Locals.empty()) in print() 229 for (const DILocal &L : Locals) { in print() 366 const std::vector<DILocal> &Locals) { in print() argument 368 for (const DILocal &Local : Locals) { in print()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAsmMacro.h | 139 std::vector<std::string> Locals; member 148 : Name(N), Body(B), Parameters(std::move(P)), Locals(std::move(L)), in MCAsmMacro()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.h | 134 SmallVector<LocalVariable, 1> Locals; member 170 SmallVector<LocalVariable, 1> Locals; member 398 SmallVectorImpl<LocalVariable> &Locals, 411 ArrayRef<LocalVariable> Locals);
|
| H A D | CodeViewDebug.cpp | 1207 emitLocalVariableList(FI, FI.Locals); in emitDebugInfoForFunction() 2833 ArrayRef<LocalVariable> Locals) { in emitLocalVariableList() argument 2836 for (const LocalVariable &L : Locals) in emitLocalVariableList() 2846 for (const LocalVariable &L : Locals) { in emitLocalVariableList() 2971 emitLocalVariableList(FI, Block.Locals); in emitLexicalBlock() 2986 SmallVectorImpl<LocalVariable> &Locals, in collectLexicalBlockInfo() argument 2989 collectLexicalBlockInfo(*Scope, Blocks, Locals, Globals); in collectLexicalBlockInfo() 3006 SmallVectorImpl<LocalVariable> *Locals = in collectLexicalBlockInfo() local 3015 if (!Locals && !Globals) in collectLexicalBlockInfo() 3041 if (Locals) in collectLexicalBlockInfo() [all …]
|
| H A D | DwarfFile.cpp | 113 ScopeVars.Locals.push_back(Var); in addScopeVariable()
|
| H A D | DwarfFile.h | 85 SmallVector<DbgVariable *, 8> Locals; member
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ |
| H A D | ConfigManager.cpp | 27 Common.DiscardMode == DiscardType::Locals || in getCOFFConfig() 48 Common.DiscardMode == DiscardType::Locals || in getMachOConfig()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | ASTOps.h | 145 llvm::DenseSet<const VarDecl *> Locals; member
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmTypeCheck.h | 92 void localDecl(const SmallVectorImpl<wasm::ValType> &Locals);
|
| H A D | WebAssemblyAsmParser.cpp | 1099 SmallVector<wasm::ValType, 4> Locals; in parseDirective() local 1100 if (parseRegTypeList(Locals)) in parseDirective() 1102 TC.localDecl(Locals); in parseDirective() 1103 TOut.emitLocal(Locals); in parseDirective()
|
| H A D | WebAssemblyAsmTypeCheck.cpp | 57 const SmallVectorImpl<wasm::ValType> &Locals) { in localDecl() argument 58 llvm::append_range(LocalTypes, Locals); in localDecl()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/ |
| H A D | CommonConfig.h | 84 Locals, // --discard-locals (-X) enumerator
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVScope.cpp | 567 bool Locals = options().getAttributeLocal(); in resolvePrinting() local 568 if ((Globals && Locals) || (!Globals && !Locals)) { in resolvePrinting() 573 (Locals && !(getHasLocals() || !getIsGlobalReference()))) in resolvePrinting()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | Wasm.h | 399 std::vector<WasmLocalDecl> Locals; member
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | MasmParser.cpp | 558 const std::vector<std::string> &Locals, SMLoc L); 2452 const std::vector<std::string> &Locals, SMLoc L) { in expandMacro() argument 2459 for (StringRef Local : Locals) { in expandMacro() 2772 if (expandMacro(OS, Body, M->Parameters, A, M->Locals, getTok().getLoc())) in handleMacroEntry() 4356 std::vector<std::string> Locals; in parseDirectiveMacro() local 4365 Locals.push_back(ID.lower()); in parseDirectiveMacro() 4426 MCAsmMacro Macro(Name, Body, std::move(Parameters), std::move(Locals), in parseDirectiveMacro() 5430 if (expandMacro(OS, M.Body, M.Parameters, Arguments, M.Locals, EndLoc)) in expandStatement() 5496 if (expandMacro(OS, M->Body, {}, {}, M->Locals, getTok().getLoc())) in parseDirectiveRepeat() 5529 if (expandMacro(OS, M->Body, {}, {}, M->Locals, getTok().getLoc())) in parseDirectiveWhile() [all …]
|