Searched defs:RHS (Results 1 - 25 of 262) sorted by path

1234567891011

/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
494 SDValue RHS = Op.getOperand(1); local
509 SDValue jq = DAG.getNode(ISD::XOR, DL, OVT, LHS, RHS);
523 // int ib, (int)RHS;
524 SDValue ib = DAG.getSExtOrTrunc(RHS, DL, INTTY);
575 SDValue RHS = Op.getOperand(1); local
578 // mov r1, RHS
593 // mov r1, RHS
594 SDValue r1 = RHS;
654 SDValue RHS local
672 SDValue RHS = DAG.getSExtOrTrunc(Op.getOperand(1), DL, INTTY); local
684 SDValue RHS = Op.getOperand(1); local
[all...]
H A DAMDILPeepholeOptimizer.cpp498 Instruction *RHS = dyn_cast<Instruction>(inst->getOperand(1)); local
511 if (!setupBitInsert(RHS, RHSSrc, RHSMask, RHSShift)) {
515 if (RHS) { RHS->dump(); }
530 dbgs() << "RHS: "; if (RHS) { RHS->dump(); } else { dbgs() << "(None)\n"; }
531 dbgs() << "RHS Src: "; if (RHSSrc) { RHSSrc->dump(); } else { dbgs() << "(None)\n"; }
532 dbgs() << "RHS Mask: "; if (RHSMask) { RHSMask->dump(); } else { dbgs() << "(None)\n"; }
533 dbgs() << "RHS Shif
[all...]
H A DR600ISelLowering.cpp337 SDValue RHS = Op.getOperand(3); local
345 LHS, RHS,
393 SDValue RHS = Op.getOperand(1); local
400 // LHS and RHS are guaranteed to be the same value type
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
425 RHS = DAG.getNode(ConversionOp, DL, VT, RHS);
431 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
444 if (isZero(LHS) || isZero(RHS)) {
503 SDValue RHS = Op.getOperand(1); local
[all...]
H A DSIISelLowering.cpp313 SDValue RHS = Op.getOperand(3); local
321 LHS, RHS,
377 SDValue RHS = Op.getOperand(1); local
384 SDValue Cond = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, CC);
/external/clang/include/clang/AST/
H A DAPValue.h136 APValue(const APValue &RHS);
137 APValue(APValue &&RHS) : Kind(Uninitialized) { swap(RHS); } argument
178 void swap(APValue &RHS);
392 /// Assign by swapping from a copy of the RHS.
393 APValue &operator=(APValue RHS) {
394 swap(RHS);
H A DASTVector.h61 ASTVector &operator=(ASTVector &&RHS) { argument
62 ASTVector O(std::move(RHS));
H A DBaseSubobject.h46 friend bool operator==(const BaseSubobject &LHS, const BaseSubobject &RHS) { argument
47 return LHS.Base == RHS.Base && LHS.BaseOffset == RHS.BaseOffset;
75 const clang::BaseSubobject &RHS) {
76 return LHS == RHS;
74 isEqual(const clang::BaseSubobject &LHS, const clang::BaseSubobject &RHS) argument
H A DCharUnits.h211 const clang::CharUnits &RHS) {
212 return LHS == RHS;
210 isEqual(const clang::CharUnits &LHS, const clang::CharUnits &RHS) argument
H A DDeclContextInternals.h49 StoredDeclsList(StoredDeclsList &&RHS) : Data(RHS.Data) { argument
50 RHS.Data = (NamedDecl *)nullptr;
59 StoredDeclsList &operator=(StoredDeclsList &&RHS) { argument
62 Data = RHS.Data;
63 RHS.Data = (NamedDecl *)nullptr;
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, DeclarationName RHS) { argument
330 operator >=(DeclarationName LHS, DeclarationName RHS) argument
587 isEqual(clang::DeclarationName LHS, clang::DeclarationName RHS) argument
[all...]
H A DExpr.h71 Expr *RHS; member in struct:clang::SubobjectAdjustment::P
92 SubobjectAdjustment(const MemberPointerType *MPT, Expr *RHS) argument
95 this->Ptr.RHS = RHS;
2064 enum { LHS, RHS, END_EXPR=2 }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::ArraySubscriptExpr::__anon17502
2080 SubExprs[RHS] = rhs;
2094 /// the type of the RHS, as it is possible for the LHS to be a vector of
2100 Expr *getRHS() { return cast<Expr>(SubExprs[RHS]); }
2101 const Expr *getRHS() const { return cast<Expr>(SubExprs[RHS]); }
2102 void setRHS(Expr *E) { SubExprs[RHS]
2926 enum { LHS, RHS, END_EXPR }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::BinaryOperator::__anon17504
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;
111 clang::GlobalDecl RHS) {
112 return LHS == RHS;
110 isEqual(clang::GlobalDecl LHS, clang::GlobalDecl RHS) argument
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
683 Stmt* SubExprs[END_EXPR]; // The expression for the RHS is Non-null for
692 SubExprs[RHS] = reinterpret_cast<Stmt*>(rhs);
707 Expr *getRHS() { return reinterpret_cast<Expr*>(SubExprs[RHS]); }
714 return reinterpret_cast<const Expr*>(SubExprs[RHS]);
720 void setRHS(Expr *Val) { SubExprs[RHS] = reinterpret_cast<Stmt*>(Val); }
H A DStmtIterator.h80 StmtIteratorImpl(const StmtIteratorBase& RHS) : StmtIteratorBase(RHS) {} argument
104 bool operator==(const DERIVED& RHS) const {
105 return stmt == RHS.stmt && DGI == RHS.DGI && RawVAPtr == RHS.RawVAPtr;
108 bool operator!=(const DERIVED& RHS) const {
109 return stmt != RHS.stmt || DGI != RHS.DGI || RawVAPtr != RHS
136 ConstStmtIterator(const StmtIterator& RHS) argument
[all...]
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 DThreadSafetyCommon.h309 BlockInfo(BlockInfo &&RHS) argument
310 : ExitMap(std::move(RHS.ExitMap)),
311 HasBackEdges(RHS.HasBackEdges),
312 UnprocessedSuccessors(RHS.UnprocessedSuccessors),
313 ProcessedPredecessors(RHS.ProcessedPredecessors) {}
315 BlockInfo &operator=(BlockInfo &&RHS) { argument
316 if (this != &RHS) {
317 ExitMap = std::move(RHS.ExitMap);
318 HasBackEdges = RHS.HasBackEdges;
319 UnprocessedSuccessors = RHS
[all...]
H A DThreadSafetyLogical.h32 /// \brief Logical implication. Returns true if the LExpr implies RHS, i.e. if
33 /// the LExpr holds, then RHS must hold. For example, (A & B) implies A.
34 inline bool implies(const LExpr *RHS) const;
56 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
65 const LExpr *right() const { return RHS; }
66 LExpr *right() { return RHS; }
71 And(LExpr *LHS, LExpr *RHS) argument
78 Or(LExpr *LHS, LExpr *RHS) argument
[all...]
H A DThreadSafetyUtil.h100 SimpleArray &operator=(SimpleArray &&RHS) { argument
101 if (this != &RHS) {
102 Data = RHS.Data;
103 Size = RHS.Size;
104 Capacity = RHS.Capacity;
106 RHS.Data = nullptr;
107 RHS.Size = RHS.Capacity = 0;
/external/clang/include/clang/Basic/
H A DABI.h76 bool Less(const VirtualAdjustment &RHS) const {
77 return memcmp(this, &RHS, sizeof(RHS)) < 0;
86 const ReturnAdjustment &RHS) {
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);
95 const ReturnAdjustment &RHS) {
96 if (LHS.NonVirtual < RHS
85 operator ==(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) argument
94 operator <(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) argument
153 operator ==(const ThisAdjustment &LHS, const ThisAdjustment &RHS) 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.h48 bool operator==(const FileID &RHS) const { return ID == RHS.ID; }
49 bool operator<(const FileID &RHS) const { return ID < RHS.ID; }
50 bool operator<=(const FileID &RHS) const { return ID <= RHS.ID; }
51 bool operator!=(const FileID &RHS) const { return !(*this == RHS); }
52 bool operator>(const FileID &RHS) const { return RHS < *thi
179 operator ==(const SourceLocation &LHS, const SourceLocation &RHS) argument
183 operator !=(const SourceLocation &LHS, const SourceLocation &RHS) argument
187 operator <(const SourceLocation &LHS, const SourceLocation &RHS) argument
337 operator ==(const FullSourceLoc &LHS, const FullSourceLoc &RHS) argument
343 operator !=(const FullSourceLoc &LHS, const FullSourceLoc &RHS) argument
413 isEqual(clang::FileID LHS, clang::FileID RHS) argument
[all...]
H A DSourceManager.h163 ContentCache(const ContentCache &RHS) argument
166 OrigEntry = RHS.OrigEntry;
167 ContentsEntry = RHS.ContentsEntry;
169 assert(RHS.Buffer.getPointer() == nullptr &&
170 RHS.SourceLineCache == nullptr &&
173 NumLines = RHS.NumLines;
234 ContentCache &operator=(const ContentCache& RHS) LLVM_DELETED_FUNCTION;
488 /// the specified LHS/RHS query.
491 bool isCacheValid(FileID LHS, FileID RHS) const {
492 return LQueryFID == LHS && RQueryFID == RHS;
515 setQueryFIDs(FileID LHS, FileID RHS, bool isLFIDBeforeRFID) argument
1205 isInSameSLocAddrSpace(SourceLocation LHS, SourceLocation RHS, int *RelativeOffset) 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 < LH
49 operator >=(FileOffset LHS, FileOffset RHS) argument
52 operator <=(FileOffset LHS, FileOffset RHS) argument
[all...]

Completed in 379 milliseconds

1234567891011