Home
last modified time | relevance | path

Searched refs:Variable (Results 1 – 25 of 154) sorted by relevance

1234567

/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h30 : Variable(Var), Expression(Expr), EntryKind(E_Integer) { in Value()
34 : Variable(Var), Expression(Expr), EntryKind(E_ConstantFP) { in Value()
38 : Variable(Var), Expression(Expr), EntryKind(E_ConstantInt) { in Value()
42 : Variable(Var), Expression(Expr), EntryKind(E_Location), Loc(Loc) { in Value()
48 const MDNode *Variable; member
75 const MDNode *getVariableNode() const { return Variable; } in getVariableNode()
76 DIVariable getVariable() const { return DIVariable(Variable); } in getVariable()
101 DIVariable Var(Values[0].Variable); in MergeValues()
103 DIVariable NextVar(Next.Values[0].Variable); in MergeValues()
160 if (A.Variable != B.Variable)
/minix3/external/bsd/llvm/dist/clang/test/Misc/
H A Dast-dump-stmt.cpp5 int Variable; variable
8 using n::Variable;
12 Variable = 4; in TestFunction()
/minix3/external/bsd/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h191 R_SExpr reduceFunction(Function &Orig, Variable *Nvd, R_SExpr E0) { in reduceFunction()
194 R_SExpr reduceSFunction(SFunction &Orig, Variable *Nvd, R_SExpr E0) { in reduceSFunction()
252 R_SExpr reduceLet(Let &Orig, Variable *Nvd, R_SExpr B) { in reduceLet()
256 Variable *enterScope(Variable &Orig, R_SExpr E0) { return &Orig; } in enterScope()
257 void exitScope(const Variable &Orig) {} in exitScope()
263 Variable *reduceVariableRef (Variable *Ovd) { return Ovd; } in reduceVariableRef()
323 void enterScope(const Variable* V1, const Variable* V2) { } in enterScope()
326 bool compareVariableRefs(const Variable* V1, const Variable* V2) { in compareVariableRefs()
363 void enterScope(const Variable* V1, const Variable* V2) { } in enterScope()
366 bool compareVariableRefs(const Variable* V1, const Variable* V2) { in compareVariableRefs()
[all …]
H A DThreadSafetyTIL.h345 class Variable : public SExpr {
355 Variable(StringRef s, SExpr *D = nullptr)
359 Variable(SExpr *D, const clang::ValueDecl *Cvd = nullptr)
364 Variable(const Variable &Vd, SExpr *D) // rewrite constructor in Variable() function
396 typename C::CType compare(const Variable* E, C& Cmp) const { in compare()
659 Function(Variable *Vd, SExpr *Bd) in Function()
661 Vd->setKind(Variable::VK_Fun); in Function()
663 Function(const Function &F, Variable *Vd, SExpr *Bd) // rewrite constructor in Function()
665 Vd->setKind(Variable::VK_Fun); in Function()
668 Variable *variableDecl() { return VarDecl; } in variableDecl()
[all …]
H A DThreadSafetyOps.def23 TIL_OPCODE_DEF(Variable)
/minix3/external/bsd/llvm/dist/clang/unittests/Tooling/
H A DRecursiveASTVisitorTestDeclVisitor.cpp19 bool VisitVarDecl(VarDecl *Variable) { in VisitVarDecl() argument
20 Match(Variable->getNameAsString(), Variable->getLocStart()); in VisitVarDecl()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h357 const MDNode *Variable, const MDNode *Expr) { in BuildMI() argument
358 assert(DIVariable(Variable).Verify() && "not a DIVariable"); in BuildMI()
364 .addMetadata(Variable) in BuildMI()
371 .addMetadata(Variable) in BuildMI()
384 const MDNode *Variable, const MDNode *Expr) { in BuildMI() argument
385 assert(DIVariable(Variable).Verify() && "not a DIVariable"); in BuildMI()
389 BuildMI(MF, DL, MCID, IsIndirect, Reg, Offset, Variable, Expr); in BuildMI()
/minix3/external/bsd/llvm/dist/clang/test/Analysis/
H A Dsecurity-syntax-checks.m21 …for (float x = 0.1f; x <= 1.0f; x += 0.1f) {} // expected-warning{{Variable 'x' with floating poin…
22 …for (float x = 100000001.0f; x <= 100000010.0f; x += 1.0f) {} // expected-warning{{Variable 'x' wi…
23 …for (float x = 100000001.0f; x <= 100000010.0f; x++ ) {} // expected-warning{{Variable 'x' with fl…
24 …for (double x = 100000001.0; x <= 100000010.0; x++ ) {} // expected-warning{{Variable 'x' with flo…
25 …for (double x = 100000001.0; ((x)) <= 100000010.0; ((x))++ ) {} // expected-warning{{Variable 'x' …
27 …for (double x = 100000001.0; 100000010.0 >= x; x = x + 1.0 ) {} // expected-warning{{Variable 'x' …
30 …0000001.0; ((x)) <= 100000010.0; ((x))++, ++i ) {} // expected-warning{{Variable 'x' with floating…
33 …for (FooType x = 100000001.0f; x <= 100000010.0f; x++ ) {} // expected-warning{{Variable 'x' with …
/minix3/external/bsd/llvm/dist/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp87 if (auto *V = dyn_cast<Variable>(E)) { in getCanonicalVal()
88 if (V->kind() == Variable::VK_Let) { in getCanonicalVal()
110 if (auto *V = dyn_cast<Variable>(E)) { in simplifyToCanonicalVal()
111 if (V->kind() != Variable::VK_Let) in simplifyToCanonicalVal()
/minix3/external/bsd/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-bcanalyzer.rst97 Ths size, in bytes, of the Global Variable Definitions and their initializers.
207 The total number of 32-bit integers encoded using the Variable Bit Rate
212 The total number of 64-bit integers encoded using the Variable Bit Rate encoding
218 the Variable Bit Rate encoding scheme.
223 integers had they not been compressed with the Variable Bit Rage encoding
228 The total number of bytes saved by using the Variable Bit Rate encoding scheme.
288 integers that use the Variable Bit Rate encoding scheme.
293 the 32-bit and 64-bit integers had they not been compressed with the Variable
298 The total number of bytes saved in this function by using the Variable Bit
/minix3/external/bsd/llvm/dist/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp10.cpp23 …(void)[&Variable] () {}; // expected-error {{use of undeclared identifier 'Variable'; did you mean… in explicit_capture()
/minix3/external/bsd/llvm/dist/clang/utils/TableGen/
H A DNeonEmitter.cpp96 class Variable;
243 class Variable { class
248 Variable() : T(Type::getVoid()), N("") {} in Variable() function in __anon870a9de20111::Variable
249 Variable(Type T, std::string N) : T(T), N(N) {} in Variable() function in __anon870a9de20111::Variable
291 std::map<std::string, Variable> Variables;
303 Variable RetVar;
451 void emitReverseVariable(Variable &Dest, Variable &Src);
1122 Variables[Name] = Variable(Types[I], Name + VariablePostfix); in initVariables()
1124 RetVar = Variable(Types[0], "ret" + VariablePostfix); in initVariables()
1143 Variable &V = Variables[Name]; in emitPrototype()
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp149 const VarDecl *Variable; member
198 Handler.Variable = CatchDecl; in EmitTryCatchStmt()
245 bool EndCatchMightThrow = (Handler.Variable == nullptr); in EmitTryCatchStmt()
253 if (const VarDecl *CatchParam = Handler.Variable) { in EmitTryCatchStmt()
/minix3/external/bsd/llvm/lib/liblldbSymbol/
H A DMakefile34 Variable.cpp \
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp659 PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), in Codegen() local
661 Variable->addIncoming(StartVal, PreheaderBB); in Codegen()
666 NamedValues[VarName] = Variable; in Codegen()
685 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in Codegen()
708 Variable->addIncoming(NextVar, LoopEndBB); in Codegen()
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml11 | Variable of string Constructor
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml11 | Variable of string Constructor
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml11 | Variable of string Constructor
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp767 PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), in Codegen() local
769 Variable->addIncoming(StartVal, PreheaderBB); in Codegen()
774 NamedValues[VarName] = Variable; in Codegen()
793 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in Codegen()
816 Variable->addIncoming(NextVar, LoopEndBB); in Codegen()
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml11 | Variable of string Constructor
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml11 | Variable of string Constructor
/minix3/external/bsd/llvm/dist/llvm/test/ExecutionEngine/MCJIT/
H A Dtest-loadstore.ll16 ;; Variable sized alloca
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml11 | Variable of string Constructor
/minix3/external/bsd/llvm/dist/llvm/test/ExecutionEngine/
H A Dtest-loadstore.ll16 ;; Variable sized alloca
/minix3/external/bsd/file/dist/magic/magdir/
H A Dsmile11 # Variable byte #3, consisting of bits:

1234567