HomeSort by: relevance | last modified time | path
    Searched defs:Locals (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
EvalEmitter.h 94 llvm::DenseMap<unsigned, std::unique_ptr<char[]>> Locals;
ByteCodeExprGen.h 219 llvm::DenseMap<const ValueDecl *, Scope::Local> Locals;
InterpFrame.h 121 return *reinterpret_cast<T *>(Locals.get() + Offset);
126 return Locals.get() + Offset - sizeof(Block);
143 std::unique_ptr<char[]> Locals;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.h 80 SmallVector<DbgVariable *, 8> Locals;
CodeViewDebug.h 119 SmallVector<LocalVariable, 1> Locals;
142 SmallVector<LocalVariable, 1> Locals;
351 SmallVectorImpl<LocalVariable> &Locals,
359 /// particular, locals from inlined code live inside the inlining site.
364 ArrayRef<LocalVariable> Locals);
DwarfCompileUnit.cpp 1009 auto Locals = sortLocalVars(Vars.Locals);
1010 for (DbgVariable *DV : Locals)
CodeViewDebug.cpp 1105 emitLocalVariableList(FI, FI.Locals);
1397 // If the stack needs realignment, locals are relative to SP or VFRAME.
1400 // Otherwise, locals are relative to EBP, and we probably have VLAs or
2658 ArrayRef<LocalVariable> Locals) {
2661 for (const LocalVariable &L : Locals)
2671 for (const LocalVariable &L : Locals)
2784 emitLocalVariableList(FI, Block.Locals);
2799 SmallVectorImpl<LocalVariable> &Locals,
2802 collectLexicalBlockInfo(*Scope, Blocks, Locals, Globals);
2819 SmallVectorImpl<LocalVariable> *Locals
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyMachineFunctionInfo.h 38 std::vector<MVT> Locals;
92 void setNumLocals(size_t NumLocals) { Locals.resize(NumLocals, MVT::i32); }
93 void setLocal(size_t i, MVT VT) { Locals[i] = VT; }
94 void addLocal(MVT VT) { Locals.push_back(VT); }
95 const std::vector<MVT> &getLocals() const { return Locals; }
WebAssemblyAsmPrinter.cpp 477 SmallVector<wasm::ValType, 16> Locals;
478 valTypesFromMVTs(MFI->getLocals(), Locals);
479 getTargetStreamer()->emitLocal(Locals);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 146 std::vector<std::string> Locals;
154 : Name(N), Body(B), Parameters(std::move(P)), Locals(std::move(L)),
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
CommonConfig.h 87 Locals, // --discard-locals (-X)
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Wasm.h 136 std::vector<WasmLocalDecl> Locals;
140 uint32_t CodeOffset; // start of Locals and Body
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 106 std::vector<LocalDecl> Locals;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 140 Locals(std::move(L)) {}
163 std::string Locals;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCMac.cpp 4369 SmallVector<llvm::Value*, 20> Locals;
4396 if (Locals.empty()) return;
4412 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
4426 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
4437 if (Locals.empty()) return;
4439 CGF.EmitNounwindRuntimeCall(WriteHazard, Locals);
4443 assert(!Locals.empty());
4444 llvm::CallInst *call = Builder.CreateCall(ReadHazard, Locals);
4452 if (Locals.empty()) return;
4480 // any writes to the locals are performed before making th
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MasmParser.cpp 444 // Number of locals defined.
551 const std::vector<std::string> &Locals, SMLoc L);
2733 const std::vector<std::string> &Locals, SMLoc L) {
2740 for (StringRef Local : Locals) {
3131 if (expandMacro(OS, Body, M->Parameters, A, M->Locals, getTok().getLoc()))
5562 std::vector<std::string> Locals;
5571 Locals.push_back(ID.lower());
5633 MCAsmMacro Macro(Name, Body, std::move(Parameters), std::move(Locals),
6589 if (expandMacro(OS, M.Body, M.Parameters, Arguments, M.Locals, EndLoc))
6657 if (expandMacro(OS, M->Body, None, None, M->Locals, getTok().getLoc())
    [all...]

Completed in 55 milliseconds