Searched refs:LHS (Results 176 - 200 of 555) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp788 static SDValue EmitCMP(SDValue &LHS, SDValue &RHS, SDValue &TargetCC, argument
791 assert(!LHS.getValueType().isFloatingPoint() && "We don't handle FP yet");
799 // Minor optimization: if LHS is a constant, swap operands, then the
801 if (LHS.getOpcode() == ISD::Constant)
802 std::swap(LHS, RHS);
806 // Minor optimization: if LHS is a constant, swap operands, then the
808 if (LHS.getOpcode() == ISD::Constant)
809 std::swap(LHS, RHS);
812 std::swap(LHS, RHS); // FALLTHROUGH
816 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
873 SDValue LHS = Op.getOperand(2); local
886 SDValue LHS = Op.getOperand(0); local
963 SDValue LHS = Op.getOperand(0); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp666 static SDValue EmitCMP(SDValue &LHS, SDValue &RHS, SDValue &TargetCC, argument
670 assert(!LHS.getValueType().isFloatingPoint() && "We don't handle FP yet");
678 // Minor optimization: if LHS is a constant, swap operands, then the
680 if (LHS.getOpcode() == ISD::Constant)
681 std::swap(LHS, RHS);
685 // Minor optimization: if LHS is a constant, swap operands, then the
687 if (LHS.getOpcode() == ISD::Constant)
688 std::swap(LHS, RHS);
691 std::swap(LHS, RHS); // FALLTHROUGH
695 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
752 SDValue LHS = Op.getOperand(2); local
765 SDValue LHS = Op.getOperand(0); local
846 SDValue LHS = Op.getOperand(0); local
[all...]
/external/clang/include/clang/Basic/
H A DSourceManager.h484 /// the specified LHS/RHS query.
487 bool isCacheValid(FileID LHS, FileID RHS) const { argument
488 return LQueryFID == LHS && RQueryFID == RHS;
492 /// specified offsets in the LHS/RHS FileID's.
511 void setQueryFIDs(FileID LHS, FileID RHS, bool isLFIDBeforeRFID) { argument
512 assert(LHS != RHS);
513 LQueryFID = LHS;
1233 /// \brief Return true if both \p LHS and \p RHS are in the local source
1237 /// offset of \p RHS relative to \p LHS.
1238 bool isInSameSLocAddrSpace(SourceLocation LHS, SourceLocatio argument
1472 isBeforeInSLocAddrSpace(SourceLocation LHS, SourceLocation RHS) const argument
1480 isBeforeInSLocAddrSpace(SourceLocation LHS, unsigned RHS) const argument
[all...]
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnit.h72 [](uint32_t LHS, const std::unique_ptr<UnitType> &RHS) {
73 return LHS < RHS->getNextUnitOffset();
255 [](const DWARFDebugInfoEntryMinimal &LHS, uint32_t Offset) {
256 return LHS.getOffset() < Offset;
/external/llvm/lib/Target/X86/
H A DX86TargetObjectFile.h61 lowerRelativeReference(const GlobalValue *LHS, const GlobalValue *RHS,
/external/llvm/tools/llvm-cov/
H A DSourceCoverageView.h46 friend bool operator<(const ExpansionView &LHS, const ExpansionView &RHS) { argument
47 return LHS.Region.startLoc() < RHS.Region.startLoc();
70 friend bool operator<(const InstantiationView &LHS, argument
72 return LHS.Line < RHS.Line;
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DConstantFolding.h61 Constant *LHS, Constant *RHS,
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DDebugLoc.h109 static bool isEqual(const DebugLoc &LHS, const DebugLoc &RHS);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DLLVMContextImpl.h61 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) { argument
62 return LHS == RHS;
87 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) { argument
88 return LHS == RHS;
H A DCore.cpp1825 LLVMValueRef LLVMBuildAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
1827 return wrap(unwrap(B)->CreateAdd(unwrap(LHS), unwrap(RHS), Name));
1830 LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
1832 return wrap(unwrap(B)->CreateNSWAdd(unwrap(LHS), unwrap(RHS), Name));
1835 LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
1837 return wrap(unwrap(B)->CreateNUWAdd(unwrap(LHS), unwrap(RHS), Name));
1840 LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
1842 return wrap(unwrap(B)->CreateFAdd(unwrap(LHS), unwrap(RHS), Name));
1845 LLVMValueRef LLVMBuildSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
1847 return wrap(unwrap(B)->CreateSub(unwrap(LHS), unwra
1850 LLVMBuildNSWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1855 LLVMBuildNUWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1860 LLVMBuildFSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1865 LLVMBuildMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1870 LLVMBuildNSWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1875 LLVMBuildNUWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1880 LLVMBuildFMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1885 LLVMBuildUDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1890 LLVMBuildSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1895 LLVMBuildExactSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1900 LLVMBuildFDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1905 LLVMBuildURem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1910 LLVMBuildSRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1915 LLVMBuildFRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1920 LLVMBuildShl(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1925 LLVMBuildLShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1930 LLVMBuildAShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1935 LLVMBuildAnd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1940 LLVMBuildOr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1945 LLVMBuildXor(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
1950 LLVMBuildBinOp(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2162 LLVMBuildICmp(LLVMBuilderRef B, LLVMIntPredicate Op, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2169 LLVMBuildFCmp(LLVMBuilderRef B, LLVMRealPredicate Op, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2244 LLVMBuildPtrDiff(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
[all...]
/external/clang/lib/AST/
H A DDeclarationName.cpp80 int DeclarationName::compare(DeclarationName LHS, DeclarationName RHS) { argument
81 if (LHS.getNameKind() != RHS.getNameKind())
82 return (LHS.getNameKind() < RHS.getNameKind() ? -1 : 1);
84 switch (LHS.getNameKind()) {
86 IdentifierInfo *LII = LHS.getAsIdentifierInfo();
97 Selector LHSSelector = LHS.getObjCSelector();
115 if (QualTypeOrdering()(LHS.getCXXNameType(), RHS.getCXXNameType()))
117 if (QualTypeOrdering()(RHS.getCXXNameType(), LHS.getCXXNameType()))
122 return compareInt(LHS.getCXXOverloadedOperator(),
126 return LHS
[all...]
/external/llvm/unittests/ADT/
H A DDenseMapTest.cpp67 static bool isEqual(const CtorTester &LHS, const CtorTester &RHS) {
68 return LHS == RHS;
515 static bool isEqual(const CachedHashTest &LHS, const CachedHashTest &RHS) { argument
516 return LHS.Val == RHS.Val;
557 static bool isEqual(const unsigned& LHS, const unsigned& RHS) { argument
558 return LHS == RHS;
560 static bool isEqual(const char* LHS, const unsigned& RHS) { argument
561 return (unsigned)(LHS[0] - 'a') == RHS;
593 static bool isEqual(const unsigned& LHS, const unsigned& RHS) { argument
594 return LHS
[all...]
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp125 ExprAST *LHS, *RHS; member in class:BinaryExprAST
128 : Op(op), LHS(lhs), RHS(rhs) {}
360 static ExprAST *ParseBinOpRHS(int ExprPrec, ExprAST *LHS) { argument
368 return LHS;
379 // the pending operator take RHS as its LHS.
386 // Merge LHS/RHS.
387 LHS = new BinaryExprAST(BinOp, LHS, RHS);
395 ExprAST *LHS = ParsePrimary(); local
396 if (!LHS) retur
[all...]
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp140 ExprAST *LHS, *RHS; member in class:BinaryExprAST
143 : Op(op), LHS(lhs), RHS(rhs) {}
404 static ExprAST *ParseBinOpRHS(int ExprPrec, ExprAST *LHS) { argument
412 return LHS;
423 // the pending operator take RHS as its LHS.
430 // Merge LHS/RHS.
431 LHS = new BinaryExprAST(BinOp, LHS, RHS);
439 ExprAST *LHS = ParseUnary(); local
440 if (!LHS) retur
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp544 SDValue LHS = SExtPromotedInteger(N->getOperand(0));
547 EVT NVT = LHS.getValueType();
552 SDValue Res = DAG.getNode(Opcode, dl, NVT, LHS, RHS);
568 SDValue LHS = GetPromotedInteger(N->getOperand(1)); local
571 LHS.getValueType(), N->getOperand(0), LHS, RHS);
580 SDValue LHS = GetPromotedInteger(N->getOperand(1)); local
583 LHS.getValueType(), Mask, LHS, RHS);
587 SDValue LHS local
608 SDValue LHS = N->getOperand(0); local
629 SDValue LHS = N->getOperand(0); local
648 SDValue LHS = GetPromotedInteger(N->getOperand(0)); local
656 SDValue LHS = SExtPromotedInteger(N->getOperand(0)); local
664 SDValue LHS = ZExtPromotedInteger(N->getOperand(0)); local
671 SDValue LHS = N->getOperand(0); local
682 SDValue LHS = N->getOperand(0); local
1011 SDValue LHS = N->getOperand(2); local
1130 SDValue LHS = N->getOperand(0); local
1142 SDValue LHS = N->getOperand(0); local
2256 SDValue LHS = Node->getOperand(0); local
2521 SDValue LHS = N->getOperand(0); local
2549 SDValue LHS = N->getOperand(0), RHS = N->getOperand(1); local
2991 SDValue LHS = N->getOperand(0); local
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineInstr.h592 static bool isEqual(const MachineInstr* const &LHS,
595 LHS == getEmptyKey() || LHS == getTombstoneKey())
596 return LHS == RHS;
597 return LHS->isIdenticalTo(RHS, MachineInstr::IgnoreVRegDefs);
/external/llvm/lib/Target/BPF/
H A DBPFISelLowering.cpp422 static void NegateCC(SDValue &LHS, SDValue &RHS, ISD::CondCode &CC) { argument
431 std::swap(LHS, RHS);
439 SDValue LHS = Op.getOperand(2); local
444 NegateCC(LHS, RHS, CC);
446 return DAG.getNode(BPFISD::BR_CC, DL, Op.getValueType(), Chain, LHS, RHS,
451 SDValue LHS = Op.getOperand(0); local
458 NegateCC(LHS, RHS, CC);
463 SDValue Ops[] = {LHS, RHS, TargetCC, TrueV, FalseV};
532 unsigned LHS = MI.getOperand(1).getReg(); local
538 .addReg(LHS)
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRegisterCoalescer.cpp1437 const LiveInterval &LHS = LIS->getInterval(*AS); local
1438 LiveInterval::const_iterator LI = LHS.begin();
1441 LI = std::lower_bound(LI, LHS.end(), RI->start);
1442 // Does LHS have an overlapping live range starting before RI?
1443 if ((LI != LHS.begin() && LI[-1].end > RI->start) &&
1448 LHS.print(dbgs(), TRI);
1454 // Check that LHS ranges beginning in this range are copies.
1455 for (; LI != LHS.end() && LI->start < RI->end; ++LI) {
1460 LHS.print(dbgs(), TRI);
1480 LiveInterval &LHS local
1677 operator ()(const DepthMBBPair &LHS, const DepthMBBPair &RHS) const argument
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
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...]
/external/llvm/lib/IR/
H A DCore.cpp2534 LLVMValueRef LLVMBuildAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
2536 return wrap(unwrap(B)->CreateAdd(unwrap(LHS), unwrap(RHS), Name));
2539 LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
2541 return wrap(unwrap(B)->CreateNSWAdd(unwrap(LHS), unwrap(RHS), Name));
2544 LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
2546 return wrap(unwrap(B)->CreateNUWAdd(unwrap(LHS), unwrap(RHS), Name));
2549 LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
2551 return wrap(unwrap(B)->CreateFAdd(unwrap(LHS), unwrap(RHS), Name));
2554 LLVMValueRef LLVMBuildSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, argument
2556 return wrap(unwrap(B)->CreateSub(unwrap(LHS), unwra
2559 LLVMBuildNSWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2564 LLVMBuildNUWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2569 LLVMBuildFSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2574 LLVMBuildMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2579 LLVMBuildNSWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2584 LLVMBuildNUWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2589 LLVMBuildFMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2594 LLVMBuildUDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2599 LLVMBuildSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2604 LLVMBuildExactSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2609 LLVMBuildFDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2614 LLVMBuildURem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2619 LLVMBuildSRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2624 LLVMBuildFRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2629 LLVMBuildShl(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2634 LLVMBuildLShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2639 LLVMBuildAShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2644 LLVMBuildAnd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2649 LLVMBuildOr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2654 LLVMBuildXor(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2659 LLVMBuildBinOp(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2949 LLVMBuildICmp(LLVMBuilderRef B, LLVMIntPredicate Op, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
2956 LLVMBuildFCmp(LLVMBuilderRef B, LLVMRealPredicate Op, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
3031 LLVMBuildPtrDiff(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS, const char *Name) argument
[all...]
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp23 // If it is used as the LHS of a simple assignment, it is treated
26 // If it is used as the LHS of a compound assignment, or the operand
167 Expr *LHS = ce->getLHS(), *RHS = ce->getRHS(); local
168 Expr *&rebuiltExpr = ce->isConditionTrue() ? LHS : RHS;
173 LHS, RHS,
216 Expr *LHS, Expr *RHS);
286 Expr *LHS, Expr *RHS);
326 Expr *LHS, Expr *RHS);
424 Expr *LHS, Expr *RHS) {
427 Expr *syntacticLHS = rebuildAndCaptureObject(LHS);
880 buildAssignmentOperation(Scope *Sc, SourceLocation opcLoc, BinaryOperatorKind opcode, Expr *LHS, Expr *RHS) argument
988 buildAssignmentOperation(Scope *Sc, SourceLocation opcLoc, BinaryOperatorKind opcode, Expr *LHS, Expr *RHS) argument
1582 checkPseudoObjectAssignment(Scope *S, SourceLocation opcLoc, BinaryOperatorKind opcode, Expr *LHS, Expr *RHS) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp88 static bool isEqual(SimpleValue LHS, SimpleValue RHS);
96 Value *LHS = BinOp->getOperand(0); local
99 std::swap(LHS, RHS);
101 return hash_combine(BinOp->getOpcode(), LHS, RHS);
105 Value *LHS = CI->getOperand(0); local
109 std::swap(LHS, RHS);
112 return hash_combine(Inst->getOpcode(), Pred, LHS, RHS);
139 bool DenseMapInfo<SimpleValue>::isEqual(SimpleValue LHS, SimpleValue RHS) { argument
140 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
142 if (LHS
229 isEqual(CallValue LHS, CallValue RHS) argument
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1205 static SDValue emitComparison(SDValue LHS, SDValue RHS, ISD::CondCode CC, argument
1207 EVT VT = LHS.getValueType();
1212 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, LHS);
1216 return DAG.getNode(AArch64ISD::FCMP, dl, VT, LHS, RHS);
1239 } else if (LHS.getOpcode() == ISD::AND && isNullConstant(RHS) &&
1245 RHS = LHS.getOperand(1);
1246 LHS = LHS.getOperand(0);
1249 return DAG.getNode(Opcode, dl, DAG.getVTList(VT, MVT_CC), LHS, RH
1295 emitConditionalComparison(SDValue LHS, SDValue RHS, ISD::CondCode CC, SDValue CCOp, AArch64CC::CondCode Predicate, AArch64CC::CondCode OutCC, const SDLoc &DL, SelectionDAG &DAG) argument
1396 SDValue LHS = Val->getOperand(0); local
1435 SDValue LHS = Val->getOperand(0); local
1505 getAArch64Cmp(SDValue LHS, SDValue RHS, ISD::CondCode CC, SDValue &AArch64cc, SelectionDAG &DAG, const SDLoc &dl) argument
1621 SDValue LHS = Op.getOperand(0); local
1754 SDValue LHS = Sel.getOperand(0); local
3615 SDValue LHS = Op.getOperand(2); local
3924 LowerSELECT_CC(ISD::CondCode CC, SDValue LHS, SDValue RHS, SDValue TVal, SDValue FVal, const SDLoc &dl, SelectionDAG &DAG) const argument
4068 SDValue LHS = Op.getOperand(0); local
4104 SDValue LHS, RHS; local
5401 GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS, SDValue RHS, SelectionDAG &DAG, const SDLoc &dl) argument
5756 SDValue LHS = Op.getOperand(0); local
5954 SDValue LHS = Op.getOperand(1); local
6672 EmitVectorComparison(SDValue LHS, SDValue RHS, AArch64CC::CondCode CC, bool NoNans, EVT VT, const SDLoc &dl, SelectionDAG &DAG) argument
6770 SDValue LHS = Op.getOperand(0); local
8319 SDValue LHS = Op->getOperand(0); local
8381 SDValue LHS = N->getOperand(0); local
9820 SDValue LHS = local
[all...]
/external/clang/include/clang/AST/
H A DASTTypeTraits.h106 static bool isEqual(const ASTNodeKind &LHS, const ASTNodeKind &RHS) { argument
107 return LHS.KindId == RHS.KindId;
357 static bool isEqual(const DynTypedNode &LHS, const DynTypedNode &RHS) { argument
360 return (ASTNodeKind::DenseMapInfo::isEqual(LHS.NodeKind, Empty) &&
362 (ASTNodeKind::DenseMapInfo::isEqual(LHS.NodeKind, TombStone) &&
364 LHS == RHS;
/external/clang/lib/Analysis/
H A DBodyFarm.cpp48 BinaryOperator *makeAssignment(const Expr *LHS, const Expr *RHS, QualType Ty);
51 BinaryOperator *makeComparison(const Expr *LHS, const Expr *RHS,
86 BinaryOperator *ASTMaker::makeAssignment(const Expr *LHS, const Expr *RHS, argument
88 return new (C) BinaryOperator(const_cast<Expr*>(LHS), const_cast<Expr*>(RHS),
93 BinaryOperator *ASTMaker::makeComparison(const Expr *LHS, const Expr *RHS, argument
97 return new (C) BinaryOperator(const_cast<Expr*>(LHS),

Completed in 1679 milliseconds

1234567891011>>