Searched defs:LHS (Results 1 - 25 of 233) sorted by path

12345678910

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILISelLowering.cpp305 // Only known if known in both the LHS and RHS
493 SDValue LHS = Op.getOperand(0); local
509 SDValue jq = DAG.getNode(ISD::XOR, DL, OVT, LHS, RHS);
520 // int ia = (int)LHS;
521 SDValue ia = DAG.getSExtOrTrunc(LHS, DL, INTTY);
574 SDValue LHS = Op.getOperand(0); local
577 // mov r0, LHS
590 // mov r0, LHS
591 SDValue r0 = LHS;
653 SDValue LHS local
671 SDValue LHS = DAG.getSExtOrTrunc(Op.getOperand(0), DL, INTTY); local
683 SDValue LHS = Op.getOperand(0); local
[all...]
H A DAMDILPeepholeOptimizer.cpp497 Instruction *LHS = dyn_cast<Instruction>(inst->getOperand(0)); local
499 if (!setupBitInsert(LHS, LHSSrc, LHSMask, LHSShift)) {
503 if (LHS) { LHS->dump(); }
526 dbgs() << "LHS: "; if (LHS) { LHS->dump(); } else { dbgs() << "(None)\n"; }
527 dbgs() << "LHS Src: "; if (LHSSrc) { LHSSrc->dump(); } else { dbgs() << "(None)\n"; }
528 dbgs() << "LHS Mask: "; if (LHSMask) { LHSMask->dump(); } else { dbgs() << "(None)\n"; }
529 dbgs() << "LHS Shif
847 Value *LHS = CI->getOperand(CI->getNumOperands() - 1); local
886 Value *LHS = CI->getOperand(CI->getNumOperands() - 1); local
982 Value *LHS = CI->getOperand(CI->getNumOperands() - 1); local
999 Value *LHS = CI->getOperand(CI->getNumOperands()-1); local
[all...]
H A DR600ISelLowering.cpp336 SDValue LHS = Op.getOperand(2); local
345 LHS, RHS,
392 SDValue LHS = Op.getOperand(0); local
400 // LHS and RHS are guaranteed to be the same value type
401 EVT CompareVT = LHS.getValueType();
404 // necessary we need to convert LHS and RHS to be the same type True and
422 // XXX Check the value of LHS and RHS and avoid creating sequences like
424 LHS = DAG.getNode(ConversionOp, DL, VT, LHS);
431 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RH
502 SDValue LHS = Op.getOperand(0); local
[all...]
H A DSIISelLowering.cpp312 SDValue LHS = Op.getOperand(2); local
321 LHS, RHS,
376 SDValue LHS = Op.getOperand(0); local
384 SDValue Cond = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, CC);
/external/clang/include/clang/AST/
H A DBaseSubobject.h46 friend bool operator==(const BaseSubobject &LHS, const BaseSubobject &RHS) { argument
47 return LHS.Base == RHS.Base && LHS.BaseOffset == RHS.BaseOffset;
74 static bool isEqual(const clang::BaseSubobject &LHS, argument
76 return LHS == RHS;
H A DCharUnits.h210 static bool isEqual(const clang::CharUnits &LHS, argument
212 return LHS == RHS;
H A DDeclarationName.h286 friend bool operator==(DeclarationName LHS, DeclarationName RHS) { argument
287 return LHS.Ptr == RHS.Ptr;
291 friend bool operator!=(DeclarationName LHS, DeclarationName RHS) { argument
292 return LHS.Ptr != RHS.Ptr;
303 static int compare(DeclarationName LHS, DeclarationName RHS);
312 inline bool operator<(DeclarationName LHS, DeclarationName RHS) { argument
313 return DeclarationName::compare(LHS, RHS) < 0;
318 inline bool operator>(DeclarationName LHS, DeclarationName RHS) { argument
319 return DeclarationName::compare(LHS, RHS) > 0;
324 inline bool operator<=(DeclarationName LHS, DeclarationNam argument
330 operator >=(DeclarationName LHS, DeclarationName RHS) argument
587 isEqual(clang::DeclarationName LHS, clang::DeclarationName RHS) argument
[all...]
H A DExpr.h2064 enum { LHS, RHS, END_EXPR=2 }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::ArraySubscriptExpr::__anon17502
2079 SubExprs[LHS] = lhs;
2094 /// the type of the RHS, as it is possible for the LHS to be a vector of
2096 Expr *getLHS() { return cast<Expr>(SubExprs[LHS]); }
2097 const Expr *getLHS() const { return cast<Expr>(SubExprs[LHS]); }
2098 void setLHS(Expr *E) { SubExprs[LHS] = E; }
2926 enum { LHS, RHS, END_EXPR }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::BinaryOperator::__anon17504
2941 SubExprs[LHS] = lhs;
2958 Expr *getLHS() const { return cast<Expr>(SubExprs[LHS]); }
2959 void setLHS(Expr *E) { SubExprs[LHS]
3183 enum { COND, LHS, RHS, END_EXPR }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::ConditionalOperator::__anon17505
3253 enum { COMMON, COND, LHS, RHS, NUM_SUBEXPRS }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::BinaryConditionalOperator::__anon17506
3559 enum { COND, LHS, RHS, END_EXPR }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::ChooseExpr::__anon17507
[all...]
H A DGlobalDecl.h72 friend bool operator==(const GlobalDecl &LHS, const GlobalDecl &RHS) { argument
73 return LHS.Value == RHS.Value;
110 static bool isEqual(clang::GlobalDecl LHS, argument
112 return LHS == RHS;
H A DRawCommentList.h171 bool operator()(const RawComment &LHS, const RawComment &RHS) { argument
172 return SM.isBeforeInTranslationUnit(LHS.getLocStart(), RHS.getLocStart());
175 bool operator()(const RawComment *LHS, const RawComment *RHS) { argument
176 return operator()(*LHS, *RHS);
H A DStmt.h682 enum { LHS, RHS, SUBSTMT, END_EXPR }; enumerator in enum:clang::CaseStmt::__anon17519
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); }
H A DType.h857 friend bool operator==(const QualType &LHS, const QualType &RHS) { argument
858 return LHS.Value == RHS.Value;
860 friend bool operator!=(const QualType &LHS, const QualType &RHS) { argument
861 return LHS.Value != RHS.Value;
H A DTypeLoc.h180 friend bool operator==(const TypeLoc &LHS, const TypeLoc &RHS) { argument
181 return LHS.Ty == RHS.Ty && LHS.Data == RHS.Data;
184 friend bool operator!=(const TypeLoc &LHS, const TypeLoc &RHS) { argument
185 return !(LHS == RHS);
H A DTypeOrdering.h53 static bool isEqual(clang::QualType LHS, clang::QualType RHS) { argument
54 return LHS == RHS;
73 static bool isEqual(clang::CanQualType LHS, clang::CanQualType RHS) { argument
74 return LHS == RHS;
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyLogical.h56 LExpr *LHS, *RHS; member in class:clang::threadSafety::lexpr::BinOp
59 BinOp(LExpr *LHS, LExpr *RHS, Opcode Code) : LExpr(Code), LHS(LHS), RHS(RHS) {} argument
62 const LExpr *left() const { return LHS; }
63 LExpr *left() { return LHS; }
71 And(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::And) {} argument
78 Or(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RH argument
[all...]
/external/clang/include/clang/Basic/
H A DABI.h85 friend bool operator==(const ReturnAdjustment &LHS, argument
87 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
90 friend bool operator!=(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) { argument
91 return !(LHS == RHS);
94 friend bool operator<(const ReturnAdjustment &LHS, argument
96 if (LHS.NonVirtual < RHS.NonVirtual)
99 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Less(RHS.Virtual);
153 friend bool operator==(const ThisAdjustment &LHS, argument
158 operator !=(const ThisAdjustment &LHS, const ThisAdjustment &RHS) argument
162 operator <(const ThisAdjustment &LHS, const ThisAdjustment &RHS) argument
195 operator ==(const ThunkInfo &LHS, const ThunkInfo &RHS) argument
[all...]
H A DSourceLocation.h179 inline bool operator==(const SourceLocation &LHS, const SourceLocation &RHS) { argument
180 return LHS.getRawEncoding() == RHS.getRawEncoding();
183 inline bool operator!=(const SourceLocation &LHS, const SourceLocation &RHS) { argument
184 return !(LHS == RHS);
187 inline bool operator<(const SourceLocation &LHS, const SourceLocation &RHS) { argument
188 return LHS.getRawEncoding() < RHS.getRawEncoding();
337 operator==(const FullSourceLoc &LHS, const FullSourceLoc &RHS) { argument
338 return LHS.getRawEncoding() == RHS.getRawEncoding() &&
339 LHS.SrcMgr == RHS.SrcMgr;
343 operator!=(const FullSourceLoc &LHS, cons argument
413 isEqual(clang::FileID LHS, clang::FileID RHS) argument
[all...]
H A DSourceManager.h488 /// the specified LHS/RHS query.
491 bool isCacheValid(FileID LHS, FileID RHS) const { argument
492 return LQueryFID == LHS && RQueryFID == RHS;
496 /// specified offsets in the LHS/RHS FileID's.
515 void setQueryFIDs(FileID LHS, FileID RHS, bool isLFIDBeforeRFID) { argument
516 assert(LHS != RHS);
517 LQueryFID = LHS;
1200 /// \brief Return true if both \p LHS and \p RHS are in the local source
1204 /// offset of \p RHS relative to \p LHS.
1205 bool isInSameSLocAddrSpace(SourceLocation LHS, SourceLocatio argument
1439 isBeforeInSLocAddrSpace(SourceLocation LHS, SourceLocation RHS) const argument
1447 isBeforeInSLocAddrSpace(SourceLocation LHS, unsigned RHS) const argument
[all...]
/external/clang/include/clang/Edit/
H A DFileOffset.h37 friend bool operator==(FileOffset LHS, FileOffset RHS) { argument
38 return LHS.FID == RHS.FID && LHS.Offs == RHS.Offs;
40 friend bool operator!=(FileOffset LHS, FileOffset RHS) { argument
41 return !(LHS == RHS);
43 friend bool operator<(FileOffset LHS, FileOffset RHS) { argument
44 return std::tie(LHS.FID, LHS.Offs) < std::tie(RHS.FID, RHS.Offs);
46 friend bool operator>(FileOffset LHS, FileOffset RHS) { argument
47 return RHS < LHS;
49 operator >=(FileOffset LHS, FileOffset RHS) argument
52 operator <=(FileOffset LHS, FileOffset RHS) argument
[all...]
/external/clang/include/clang/Frontend/
H A DASTUnit.h245 friend bool operator==(const PreambleFileHash &LHS,
248 friend bool operator!=(const PreambleFileHash &LHS, argument
250 return !(LHS == RHS);
/external/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h46 bool operator()(const CondDirectiveLoc &LHS, argument
48 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS.getLoc());
50 bool operator()(const CondDirectiveLoc &LHS, SourceLocation RHS) { argument
51 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS);
53 bool operator()(SourceLocation LHS, const CondDirectiveLoc &RHS) { argument
54 return SM.isBeforeInTranslationUnit(LHS, RHS.getLoc());
80 bool areInDifferentConditionalDirectiveRegion(SourceLocation LHS, argument
82 return findConditionalDirectiveRegionLoc(LHS) !=
/external/clang/include/clang/Sema/
H A DScopeInfo.h242 static bool isEqual(const WeakObjectProfileTy &LHS, argument
244 return LHS == RHS;
/external/clang/include/clang/Serialization/
H A DASTReader.h1228 friend bool operator==(const ModuleDeclIterator &LHS, argument
1230 assert(LHS.Reader == RHS.Reader && LHS.Mod == RHS.Mod);
1231 return LHS.Pos == RHS.Pos;
1234 friend bool operator!=(const ModuleDeclIterator &LHS, argument
1236 assert(LHS.Reader == RHS.Reader && LHS.Mod == RHS.Mod);
1237 return LHS.Pos != RHS.Pos;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h471 SVal LHS, SVal RHS, QualType T) {
472 return svalBuilder.evalBinOp(ST, Op, LHS, RHS, T);
470 evalBinOp(ProgramStateRef ST, BinaryOperator::Opcode Op, SVal LHS, SVal RHS, QualType T) argument
H A DSymbolManager.h369 const SymExpr *LHS; member in class:clang::ento::SymIntExpr
375 : BinarySymExpr(SymIntKind, op, t), LHS(lhs), RHS(rhs) {}
379 const SymExpr *getLHS() const { return LHS; }
393 Profile(ID, LHS, getOpcode(), RHS, getType());
404 const llvm::APSInt& LHS; member in class:clang::ento::IntSymExpr
410 : BinarySymExpr(IntSymKind, op, t), LHS(lhs), RHS(rhs) {}
415 const llvm::APSInt &getLHS() const { return LHS; }
428 Profile(ID, LHS, getOpcode(), RHS, getType());
439 const SymExpr *LHS; member in class:clang::ento::SymSymExpr
445 : BinarySymExpr(SymSymKind, op, t), LHS(lh
[all...]

Completed in 1539 milliseconds

12345678910