Home
last modified time | relevance | path

Searched refs:Locals (Results 1 – 25 of 39) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.h37 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 DWebAssemblyAsmPrinter.cpp635 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 Dguarded_pool_allocator_tls.h49 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 DEvalEmitter.h114 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 DInterpFrame.h150 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 DEvalEmitter.cpp23 for (auto &V : Locals) { in ~EvalEmitter()
114 unsigned Off = Locals.size(); in createLocal()
115 Locals.push_back(std::move(Memory)); in createLocal()
H A DInterpFrame.cpp41 Locals = std::make_unique<char[]>(FrameSize); in InterpFrame()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmMacro.cpp41 if (!Locals.empty()) { in dump()
43 for (StringRef L : Locals) in dump()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DDIPrinter.h50 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 DASTOps.cpp174 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 DDIPrinter.cpp224 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 DMCAsmMacro.h139 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 DCodeViewDebug.h134 SmallVector<LocalVariable, 1> Locals; member
170 SmallVector<LocalVariable, 1> Locals; member
398 SmallVectorImpl<LocalVariable> &Locals,
411 ArrayRef<LocalVariable> Locals);
H A DCodeViewDebug.cpp1207 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 DDwarfFile.cpp113 ScopeVars.Locals.push_back(Var); in addScopeVariable()
H A DDwarfFile.h85 SmallVector<DbgVariable *, 8> Locals; member
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/
H A DConfigManager.cpp27 Common.DiscardMode == DiscardType::Locals || in getCOFFConfig()
48 Common.DiscardMode == DiscardType::Locals || in getMachOConfig()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DASTOps.h145 llvm::DenseSet<const VarDecl *> Locals; member
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmTypeCheck.h92 void localDecl(const SmallVectorImpl<wasm::ValType> &Locals);
H A DWebAssemblyAsmParser.cpp1099 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 DWebAssemblyAsmTypeCheck.cpp57 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 DCommonConfig.h84 Locals, // --discard-locals (-X) enumerator
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVScope.cpp567 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 DWasm.h399 std::vector<WasmLocalDecl> Locals; member
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp558 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 …]

12