HomeSort by relevance Sort by last modified time
    Searched refs:LHS (Results 251 - 275 of 311) sorted by null

<<111213

  /external/llvm/lib/Support/
CommandLine.cpp 238 StringRef &LHS = SplitArg.first; // LHS == Arg when no '=' is present.
253 StringRef Flag = PermitValue ? LHS : Arg;
    [all...]
  /external/clang/lib/Analysis/
ThreadSafetyCommon.cpp 283 const Expr *LHS = BO->getLHS();
285 til::SExpr *E0 = translate(LHS, Ctx);
290 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(LHS)) {
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 242 SDValue LHS = Node->getOperand(0), RHS = Node->getOperand(1);
243 EVT VT = LHS.getValueType();
248 return CurDAG->SelectNodeTo(Node, MOp, VT, MVT::Glue, LHS,
  /external/llvm/lib/Target/R600/
AMDGPUISelDAGToDAG.cpp 658 SDValue LHS = N->getOperand(0);
667 DL, MVT::i32, LHS, Sub0);
669 DL, MVT::i32, LHS, Sub1);
  /external/clang/include/clang/AST/
Stmt.h 682 enum { LHS, RHS, SUBSTMT, END_EXPR };
687 CaseStmt(Expr *lhs, Expr *rhs, SourceLocation caseLoc,
691 SubExprs[LHS] = reinterpret_cast<Stmt*>(lhs);
706 Expr *getLHS() { return reinterpret_cast<Expr*>(SubExprs[LHS]); }
711 return reinterpret_cast<const Expr*>(SubExprs[LHS]);
719 void setLHS(Expr *Val) { SubExprs[LHS] = reinterpret_cast<Stmt*>(Val); }
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 642 ExprResult LHS;
644 LHS = ParseConstantExpression();
645 if (LHS.isInvalid()) {
655 LHS = Expr;
692 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
rtl.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
LegalizeVectorOps.cpp     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp     [all...]
CodeGenModule.h 403 bool operator()(const GlobalInitData &LHS,
405 return LHS.first.priority < RHS.first.priority;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 446 // If we already inferred a value for this block on the LHS, don't
504 Value *LHS = PN->getIncomingValue(i);
507 Value *Res = SimplifyCmpInst(Cmp->getPredicate(), LHS, RHS, DL);
513 ResT = LVI->getPredicateOnEdge(Cmp->getPredicate(), LHS,
517 Res = ConstantInt::get(Type::getInt1Ty(LHS->getContext()), ResT);
552 // Try to find a constant value for the LHS of a comparison,
759 // For a comparison where the LHS is outside this block, it's possible
    [all...]
LoopStrengthReduce.cpp 522 /// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
528 static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
532 if (LHS == RHS)
533 return SE.getConstant(LHS->getType(), 1);
542 return SE.getMulExpr(LHS, RC);
545 return LHS;
549 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
560 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
577 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
593 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
    [all...]
LoopUnswitch.cpp 366 if (Value *LHS = FindLIVLoopCondition(BO->getOperand(0), L, Changed))
367 return LHS;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 415 if (Value *LHS = GatherConstantCompares(I->getOperand(0), Vals, Extra, DL,
421 if (LHS == RHS)
422 return LHS;
431 return LHS;
439 // If the LHS can't be folded in, but Extra is available and RHS can, try to
440 // use LHS as Extra.
708 bool operator()(const ConstantInt *LHS, const ConstantInt *RHS) const {
709 return LHS->getValue().ult(RHS->getValue());
716 const ConstantInt *LHS = *P1;
718 if (LHS->getValue().ult(RHS->getValue())
    [all...]
  /external/clang/lib/ARCMigrate/
TransformActions.cpp 98 static RangeComparison compare(SourceRange LHS, SourceRange RHS,
100 return CharRange(CharSourceRange::getTokenRange(LHS), SrcMgr, PP)
ObjCMT.cpp     [all...]
  /external/clang/tools/libclang/
Indexing.cpp 106 friend bool operator==(const PPRegion &lhs, const PPRegion &rhs) {
107 return lhs.UniqueID == rhs.UniqueID && lhs.Offset == rhs.Offset &&
108 lhs.ModTime == rhs.ModTime;
140 static bool isEqual(const PPRegion &LHS, const PPRegion &RHS) {
141 return LHS == RHS;
    [all...]
  /external/llvm/include/llvm/IR/
Constants.h     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 675 const Expr *LHS = Case->getLHS()->IgnoreParenCasts();
680 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS)) {
693 os << LHS->EvaluateKnownConstInt(PDB.getASTContext());
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]

Completed in 851 milliseconds

<<111213