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

  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
MCInstrDescView.cpp 95 SmallVector<Variable, 4> Variables,
101 Variables(std::move(Variables)), ImplDefRegs(*ImplDefRegs),
112 SmallVector<Variable, 4> Variables;
149 Variables.reserve(Operands.size()); // Variables.size() <= Operands.size()
150 // Assigning Variables to non tied explicit operands.
153 const size_t VariableIndex = Variables.size();
156 Variables.emplace_back();
157 Variables.back().Index = VariableIndex
    [all...]
MCInstrDescView.h 14 /// Variables.
50 // The index of this Variable in Instruction.Variables and its associated
160 const SmallVector<Variable, 4> Variables;
168 SmallVector<Variable, 4> Variables, const BitVector *ImplDefRegs,
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
CloneDetection.h 350 /// Analyzes the pattern of the referenced variables in a statement.
355 /// The index of the associated VarDecl in the Variables vector.
364 /// All occurrences of referenced variables in the order of appearance.
366 /// List of referenced variables in the order of appearance.
368 std::vector<const VarDecl *> Variables;
386 /// Describes two clones that reference their variables in a different pattern
427 /// variables in the return statements) and would have two differences when
439 /// Ensures that all clones reference variables in the same pattern.
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
NeonEmitter.cpp 337 /// The local variables defined.
338 std::map<std::string, Variable> Variables;
378 // known variables for each.
1116 assert_with_loc(Variables.find(VarName) != Variables.end(),
1118 S.replace(Pos, End - Pos, Variables.find(VarName)->second.getName());
1125 Variables.clear();
1128 // known variables for each.
1134 Variables[Name] = Variable(Types[I], Name + VariablePostfix);
1154 assert(Variables.find(Name) != Variables.end())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DebugInfo.cpp 43 /// Finds all intrinsics declaring local variables as living in the memory that
522 auto Variables = nullptr;
532 Variables);
542 MDS->getSPFlags(), Unit, TemplateParams, Declaration, Variables);
704 // Drop all dbg attachments from global variables.
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MasmParser.cpp 384 /// maps assembly-time variable names to variables.
392 StringMap<Variable> Variables;
1125 auto it = Variables.find(tok->getIdentifier().lower());
1128 if (it != Variables.end() && it->second.IsText) {
1551 // Variables use case-insensitive symbol names; if this is a variable, we
1553 auto VarIt = Variables.find(SymbolName.lower());
1554 if (VarIt != Variables.end())
3277 Variable &Var = Variables[Name.lower()];
3394 auto it = Variables.find(ID.lower());
3395 if (it == Variables.end())
    [all...]

Completed in 103 milliseconds