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

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Utils/
ARMBaseInfo.h 91 Then,
101 /// a then.
125 // e.g ExpandPredBlockMask(T, Then) = TT, ExpandPredBlockMask(TT, Else) = TTE,
133 case ARMVCC::Then: return "t";
141 .Case("t", ARMVCC::Then)
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 85 if (IdentifierStr == "then")
206 /// IfExprAST - Expression class for if/then/else.
208 std::unique_ptr<ExprAST> Cond, Then, Else;
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
386 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
396 return LogError("expected then");
397 getNextToken(); // eat the then
399 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 85 if (IdentifierStr == "then")
206 /// IfExprAST - Expression class for if/then/else.
208 std::unique_ptr<ExprAST> Cond, Then, Else;
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
386 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
396 return LogError("expected then");
397 getNextToken(); // eat the then
399 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 85 if (IdentifierStr == "then")
206 /// IfExprAST - Expression class for if/then/else.
208 std::unique_ptr<ExprAST> Cond, Then, Else;
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
386 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
396 return LogError("expected then");
397 getNextToken(); // eat the then
399 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 85 if (IdentifierStr == "then")
204 /// IfExprAST - Expression class for if/then/else.
206 std::unique_ptr<ExprAST> Cond, Then, Else;
209 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
211 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
369 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
379 return LogError("expected then");
380 getNextToken(); // eat the then
382 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 81 if (IdentifierStr == "then")
183 /// IfExprAST - Expression class for if/then/else.
185 std::unique_ptr<ExprAST> Cond, Then, Else;
188 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
190 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
335 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
345 return LogError("expected then");
346 getNextToken(); // eat the then
348 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 85 if (IdentifierStr == "then")
203 /// IfExprAST - Expression class for if/then/else.
205 std::unique_ptr<ExprAST> Cond, Then, Else;
208 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
210 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
369 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
379 return LogError("expected then");
380 getNextToken(); // eat the then
382 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 90 if (IdentifierStr == "then")
211 /// IfExprAST - Expression class for if/then/else.
213 std::unique_ptr<ExprAST> Cond, Then, Else;
216 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
218 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
391 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
401 return LogError("expected then");
402 getNextToken(); // eat the then
404 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 91 if (IdentifierStr == "then")
212 /// IfExprAST - Expression class for if/then/else.
214 std::unique_ptr<ExprAST> Cond, Then, Else;
217 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
219 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
392 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
402 return LogError("expected then");
403 getNextToken(); // eat the then
405 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 82 if (IdentifierStr == "then") return tok_then;
180 /// IfExprAST - Expression class for if/then/else.
182 ExprAST *Cond, *Then, *Else;
184 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
185 : Cond(cond), Then(then), Else(_else) {}
337 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
346 return Error("expected then");
347 getNextToken(); // eat the then
349 ExprAST *Then = ParseExpression()
    [all...]
toy.cpp 89 if (IdentifierStr == "then") return tok_then;
187 /// IfExprAST - Expression class for if/then/else.
189 ExprAST *Cond, *Then, *Else;
191 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
192 : Cond(cond), Then(then), Else(_else) {}
344 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
353 return Error("expected then");
354 getNextToken(); // eat the then
356 ExprAST *Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 67 if (IdentifierStr == "then") return tok_then;
165 /// IfExprAST - Expression class for if/then/else.
167 ExprAST *Cond, *Then, *Else;
169 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
170 : Cond(cond), Then(then), Else(_else) {}
322 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
331 return Error("expected then");
332 getNextToken(); // eat the then
334 ExprAST *Then = ParseExpression()
    [all...]
toy.cpp 68 if (IdentifierStr == "then") return tok_then;
166 /// IfExprAST - Expression class for if/then/else.
168 ExprAST *Cond, *Then, *Else;
170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
171 : Cond(cond), Then(then), Else(_else) {}
323 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
332 return Error("expected then");
333 getNextToken(); // eat the then
335 ExprAST *Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.h 52 String, Then, TrueKW,
154 // If EOF is met in an include file, then the method will update
156 // If EOF is met in the top-level file, then the method will
235 // a preprocessing directive word followed by a whitespace, then it returns
247 // by a preprocessing directive. If it is not, then we fall back to
259 // then lexPreprocessor() enters the lines-skipping mode.
312 // is a valid start symbol for an identifier (i.e. [a-zA-Z_]), then
  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
echo.cpp 512 LLVMValueRef Then = LLVMGetOperand(Src, 2);
513 LLVMBasicBlockRef ThenBB = DeclareBB(LLVMValueAsBasicBlock(Then));
526 LLVMBasicBlockRef Then = DeclareBB(LLVMGetNormalDest(Src));
529 Then, Unwind, Name);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 741 // Add the regions in the reverse order, then reverse the resulting array.
1005 // Handle cases where a reference is returned and then immediately used.
1052 // Handle cases where a reference is returned and then immediately used.
1758 // terminator for the current location is in a macro then suppress the
1857 const CFGBlock *Then = B->succ_begin()->getReachableBlock();
1860 if (!Then || !Else)
1863 if (Then->isInevitablySinking() != Else->isInevitablySinking())
2349 // then the condition is actually its LHS; otherwise, we'd encounter
2361 // then the condition is actually its RHS, because LHS would be
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 70 return "then";
143 if (IdentifierStr == "then")
293 /// IfExprAST - Expression class for if/then/else.
295 std::unique_ptr<ExprAST> Cond, Then, Else;
299 std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else)
300 : ExprAST(Loc), Cond(std::move(Cond)), Then(std::move(Then)),
306 Then->dump(indent(out, ind) << "Then:", ind + 1);
501 /// ifexpr ::= 'if' expression 'then' expression 'else' expressio
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 108 if (IdentifierStr == "then") return tok_then;
206 /// IfExprAST - Expression class for if/then/else.
208 ExprAST *Cond, *Then, *Else;
210 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
211 : Cond(cond), Then(then), Else(_else) {}
363 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
372 return Error("expected then");
373 getNextToken(); // eat the then
375 ExprAST *Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 66 if (IdentifierStr == "then") return tok_then;
164 /// IfExprAST - Expression class for if/then/else.
166 ExprAST *Cond, *Then, *Else;
168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
169 : Cond(cond), Then(then), Else(_else) {}
321 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
330 return Error("expected then");
331 getNextToken(); // eat the then
333 ExprAST *Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 269 // by the user then the jump table never provides a canonical definition.
353 // replace the aliasees and then set them back to their original values at
792 BasicBlock *Then = InitialBB->splitBasicBlock(CI->getIterator());
794 BranchInst *NewBr = BranchInst::Create(Then, Else, OffsetInRange);
801 Phi.addIncoming(Phi.getIncomingValueForBlock(Then), InitialBB);
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 181 /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then
233 /// VarIter is guaranteed to be greater then 0 for every valid iterator.
1439 // temporary object that needs to be immediately materialized, then
1551 // If there is no target for the goto, then we are looking at an
1569 // If there is no target for the goto, then we are looking at an
1590 // If there is no target block that contains label, then we are looking
1736 // then sideways in one scope from P to P' and then down
1771 // then sideways in one scope from P to P' and then dow
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h 112 // Base class of all AST nodes. The AST is built by the parser, then is
671 // by printing out the return types's left, then print our parameters, then
1568 // might be a template argument expression, then we need to disambiguate
1625 const Node *Then;
1630 : Node(KConditionalExpr), Cond(Cond_), Then(Then_), Else(Else_) {}
1632 template<typename Fn> void match(Fn F) const { F(Cond, Then, Else); }
1638 Then->print(S);
5492 // operator types), then we should only look it up in the right context.
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 53 /// \c TreeTransform<X> and then overriding certain operations to provide
70 /// then passes the pieces on to the "rebuild" step, which constructs a new AST
102 /// Private RAII object that helps us forget and then re-remember
409 /// semantic nodes added by initialization, then passing the result to
427 /// \param IsCall If \c true, then this transform is being performed on
524 /// and destructor names and then (if needed) rebuilds the declaration name.
1220 /// be resolved to a specific template, then builds the appropriate kind of
1234 /// be resolved to a specific template, then builds the appropriate kind of
1247 /// be resolved to a specific template, then builds the appropriate kind of
1325 SourceLocation RParenLoc, Stmt *Init, Stmt *Then,
    [all...]

Completed in 64 milliseconds