Searched refs:LHS (Results 26 - 50 of 555) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dwarn-self-assign.cpp21 #define LHS a macro
26 LHS = a;
28 LHS OP RHS;
30 #undef LHS macro
/external/llvm/include/llvm/MC/
H A DMCTargetOptions.h52 inline bool operator==(const MCTargetOptions &LHS, const MCTargetOptions &RHS) { argument
53 #define ARE_EQUAL(X) LHS.X == RHS.X
70 inline bool operator!=(const MCTargetOptions &LHS, const MCTargetOptions &RHS) { argument
71 return !(LHS == RHS);
H A DMCExpr.h413 const MCExpr *LHS, *RHS; member in class:llvm::MCBinaryExpr
415 MCBinaryExpr(Opcode Op, const MCExpr *LHS, const MCExpr *RHS) argument
416 : MCExpr(MCExpr::Binary), Op(Op), LHS(LHS), RHS(RHS) {}
422 static const MCBinaryExpr *create(Opcode Op, const MCExpr *LHS,
424 static const MCBinaryExpr *createAdd(const MCExpr *LHS, const MCExpr *RHS, argument
426 return create(Add, LHS, RHS, Ctx);
428 static const MCBinaryExpr *createAnd(const MCExpr *LHS, const MCExpr *RHS, argument
430 return create(And, LHS, RHS, Ctx);
432 static const MCBinaryExpr *createDiv(const MCExpr *LHS, cons argument
436 createEQ(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
440 createGT(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
444 createGTE(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
448 createLAnd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
452 createLOr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
456 createLT(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
460 createLTE(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
464 createMod(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
468 createMul(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
472 createNE(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
476 createOr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
480 createShl(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
484 createAShr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
488 createLShr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
492 createSub(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
496 createXor(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DInstructionSimplify.h32 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
37 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
42 Value *SimplifyMulInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
47 Value *SimplifySDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
52 Value *SimplifyUDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
57 Value *SimplifyFDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
62 Value *SimplifySRemInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
67 Value *SimplifyURemInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
72 Value *SimplifyFRemInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
93 Value *SimplifyAndInst(Value *LHS, Valu
[all...]
/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/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/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DCombinableMatcher.java50 public static <LHS> CombinableBothMatcher<LHS> both(Matcher<? super LHS> matcher) {
51 return new CombinableBothMatcher<LHS>(matcher);
69 public static <LHS> CombinableEitherMatcher<LHS> either(Matcher<? super LHS> matcher) {
70 return new CombinableEitherMatcher<LHS>(matcher);
/external/libcxx/test/std/experimental/any/any.class/any.modifiers/
H A Dswap.pass.cpp26 template <class LHS, class RHS>
28 assert(LHS::count == 0);
31 any a1((LHS(1)));
33 assert(LHS::count == 1);
38 assert(LHS::count == 1);
42 assertContains<LHS>(a2, 1);
44 assert(LHS::count == 0);
46 assert(LHS::copied == 0);
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCExpr.h311 const MCExpr *LHS, *RHS; member in class:llvm::MCBinaryExpr
314 : MCExpr(MCExpr::Binary), Op(_Op), LHS(_LHS), RHS(_RHS) {}
320 static const MCBinaryExpr *Create(Opcode Op, const MCExpr *LHS,
322 static const MCBinaryExpr *CreateAdd(const MCExpr *LHS, const MCExpr *RHS, argument
324 return Create(Add, LHS, RHS, Ctx);
326 static const MCBinaryExpr *CreateAnd(const MCExpr *LHS, const MCExpr *RHS, argument
328 return Create(And, LHS, RHS, Ctx);
330 static const MCBinaryExpr *CreateDiv(const MCExpr *LHS, const MCExpr *RHS, argument
332 return Create(Div, LHS, RHS, Ctx);
334 static const MCBinaryExpr *CreateEQ(const MCExpr *LHS, cons argument
338 CreateGT(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
342 CreateGTE(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
346 CreateLAnd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
350 CreateLOr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
354 CreateLT(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
358 CreateLTE(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
362 CreateMod(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
366 CreateMul(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
370 CreateNE(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
374 CreateOr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
378 CreateShl(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
382 CreateShr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
386 CreateSub(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
390 CreateXor(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx) argument
[all...]
/external/clang/include/clang/AST/
H A DBaseSubobject.h45 friend bool operator==(const BaseSubobject &LHS, const BaseSubobject &RHS) { argument
46 return LHS.Base == RHS.Base && LHS.BaseOffset == RHS.BaseOffset;
73 static bool isEqual(const clang::BaseSubobject &LHS, argument
75 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/llvm/include/llvm/ObjectYAML/
H A DYAML.h58 friend bool operator==(const BinaryRef &LHS, const BinaryRef &RHS);
88 inline bool operator==(const BinaryRef &LHS, const BinaryRef &RHS) { argument
90 if (LHS.Data.empty() && RHS.Data.empty())
93 return LHS.DataIsHexString == RHS.DataIsHexString && LHS.Data == RHS.Data;
/external/llvm/include/llvm/Support/
H A DLineIterator.h73 friend bool operator==(const line_iterator &LHS, const line_iterator &RHS) { argument
74 return LHS.Buffer == RHS.Buffer &&
75 LHS.CurrentLine.begin() == RHS.CurrentLine.begin();
78 friend bool operator!=(const line_iterator &LHS, const line_iterator &RHS) { argument
79 return !(LHS == RHS);
/external/libcxx/test/std/experimental/any/any.class/any.assign/
H A Dvalue.pass.cpp28 template <class LHS, class RHS>
30 assert(LHS::count == 0);
32 LHS::reset();
35 any lhs(LHS(1));
38 assert(LHS::count == 1);
45 assert(LHS::count == 0);
51 assert(LHS::count == 0);
53 LHS::reset();
56 any lhs(LHS(1));
59 assert(LHS
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h214 friend bool operator==(const MachineMemOperand &LHS, argument
216 return LHS.getValue() == RHS.getValue() &&
217 LHS.getPseudoValue() == RHS.getPseudoValue() &&
218 LHS.getSize() == RHS.getSize() &&
219 LHS.getOffset() == RHS.getOffset() &&
220 LHS.getFlags() == RHS.getFlags() &&
221 LHS.getAAInfo() == RHS.getAAInfo() &&
222 LHS.getRanges() == RHS.getRanges() &&
223 LHS.getAlignment() == RHS.getAlignment() &&
224 LHS
227 operator !=(const MachineMemOperand &LHS, const MachineMemOperand &RHS) argument
[all...]
/external/libcxx/test/std/utilities/any/any.class/any.modifiers/
H A Dswap.pass.cpp26 template <class LHS, class RHS>
28 assert(LHS::count == 0);
31 any a1((LHS(1)));
33 assert(LHS::count == 1);
38 assert(LHS::count == 1);
42 assertContains<LHS>(a2, 1);
44 assert(LHS::count == 0);
46 assert(LHS::copied == 0);
/external/llvm/lib/CodeGen/
H A DMachineModuleInfoImpls.cpp27 static int SortSymbolPair(const void *LHS, const void *RHS) { argument
29 const MCSymbol *LHSS = ((const PairTy *)LHS)->first;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineModuleInfoImpls.cpp27 static int SortSymbolPair(const void *LHS, const void *RHS) { argument
29 const MCSymbol *LHSS = ((const PairTy *)LHS)->first;
/external/llvm/include/llvm/IR/
H A DIRBuilder.h757 Value *LHS, Value *RHS,
760 BinaryOperator *BO = Insert(BinaryOperator::Create(Opc, LHS, RHS), Name);
778 Value *CreateAdd(Value *LHS, Value *RHS, const Twine &Name = "", argument
780 if (Constant *LC = dyn_cast<Constant>(LHS))
783 return CreateInsertNUWNSWBinOp(Instruction::Add, LHS, RHS, Name,
786 Value *CreateNSWAdd(Value *LHS, Value *RHS, const Twine &Name = "") { argument
787 return CreateAdd(LHS, RHS, Name, false, true);
789 Value *CreateNUWAdd(Value *LHS, Value *RHS, const Twine &Name = "") { argument
790 return CreateAdd(LHS, RHS, Name, true, false);
792 Value *CreateFAdd(Value *LHS, Valu argument
756 CreateInsertNUWNSWBinOp(BinaryOperator::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name, bool HasNUW, bool HasNSW) argument
800 CreateSub(Value *LHS, Value *RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
808 CreateNSWSub(Value *LHS, Value *RHS, const Twine &Name = �) argument
811 CreateNUWSub(Value *LHS, Value *RHS, const Twine &Name = �) argument
814 CreateFSub(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
822 CreateMul(Value *LHS, Value *RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
830 CreateNSWMul(Value *LHS, Value *RHS, const Twine &Name = �) argument
833 CreateNUWMul(Value *LHS, Value *RHS, const Twine &Name = �) argument
836 CreateFMul(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
844 CreateUDiv(Value *LHS, Value *RHS, const Twine &Name = �, bool isExact = false) argument
853 CreateExactUDiv(Value *LHS, Value *RHS, const Twine &Name = �) argument
856 CreateSDiv(Value *LHS, Value *RHS, const Twine &Name = �, bool isExact = false) argument
865 CreateExactSDiv(Value *LHS, Value *RHS, const Twine &Name = �) argument
868 CreateFDiv(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
876 CreateURem(Value *LHS, Value *RHS, const Twine &Name = �) argument
882 CreateSRem(Value *LHS, Value *RHS, const Twine &Name = �) argument
888 CreateFRem(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
897 CreateShl(Value *LHS, Value *RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
905 CreateShl(Value *LHS, const APInt &RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
910 CreateShl(Value *LHS, uint64_t RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
916 CreateLShr(Value *LHS, Value *RHS, const Twine &Name = �, bool isExact = false) argument
925 CreateLShr(Value *LHS, const APInt &RHS, const Twine &Name = �, bool isExact = false) argument
929 CreateLShr(Value *LHS, uint64_t RHS, const Twine &Name = �, bool isExact = false) argument
934 CreateAShr(Value *LHS, Value *RHS, const Twine &Name = �, bool isExact = false) argument
943 CreateAShr(Value *LHS, const APInt &RHS, const Twine &Name = �, bool isExact = false) argument
947 CreateAShr(Value *LHS, uint64_t RHS, const Twine &Name = �, bool isExact = false) argument
952 CreateAnd(Value *LHS, Value *RHS, const Twine &Name = �) argument
961 CreateAnd(Value *LHS, const APInt &RHS, const Twine &Name = �) argument
964 CreateAnd(Value *LHS, uint64_t RHS, const Twine &Name = �) argument
968 CreateOr(Value *LHS, Value *RHS, const Twine &Name = �) argument
977 CreateOr(Value *LHS, const APInt &RHS, const Twine &Name = �) argument
980 CreateOr(Value *LHS, uint64_t RHS, const Twine &Name = �) argument
984 CreateXor(Value *LHS, Value *RHS, const Twine &Name = �) argument
990 CreateXor(Value *LHS, const APInt &RHS, const Twine &Name = �) argument
993 CreateXor(Value *LHS, uint64_t RHS, const Twine &Name = �) argument
997 CreateBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1432 CreateICmpEQ(Value *LHS, Value *RHS, const Twine &Name = �) argument
1435 CreateICmpNE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1438 CreateICmpUGT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1441 CreateICmpUGE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1444 CreateICmpULT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1447 CreateICmpULE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1450 CreateICmpSGT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1453 CreateICmpSGE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1456 CreateICmpSLT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1459 CreateICmpSLE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1463 CreateFCmpOEQ(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1467 CreateFCmpOGT(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1471 CreateFCmpOGE(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1475 CreateFCmpOLT(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1479 CreateFCmpOLE(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1483 CreateFCmpONE(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1487 CreateFCmpORD(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1491 CreateFCmpUNO(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1495 CreateFCmpUEQ(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1499 CreateFCmpUGT(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1503 CreateFCmpUGE(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1507 CreateFCmpULT(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1511 CreateFCmpULE(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1515 CreateFCmpUNE(Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1520 CreateICmp(CmpInst::Predicate P, Value *LHS, Value *RHS, const Twine &Name = �) argument
1527 CreateFCmp(CmpInst::Predicate P, Value *LHS, Value *RHS, const Twine &Name = �, MDNode *FPMathTag = nullptr) argument
1681 CreatePtrDiff(Value *LHS, Value *RHS, const Twine &Name = �) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DIRBuilder.h491 Value *LHS, Value *RHS,
494 BinaryOperator *BO = Insert(BinaryOperator::Create(Opc, LHS, RHS), Name);
500 Value *CreateAdd(Value *LHS, Value *RHS, const Twine &Name = "", argument
502 if (Constant *LC = dyn_cast<Constant>(LHS))
505 return CreateInsertNUWNSWBinOp(Instruction::Add, LHS, RHS, Name,
508 Value *CreateNSWAdd(Value *LHS, Value *RHS, const Twine &Name = "") { argument
509 return CreateAdd(LHS, RHS, Name, false, true);
511 Value *CreateNUWAdd(Value *LHS, Value *RHS, const Twine &Name = "") { argument
512 return CreateAdd(LHS, RHS, Name, true, false);
514 Value *CreateFAdd(Value *LHS, Valu argument
490 CreateInsertNUWNSWBinOp(BinaryOperator::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name, bool HasNUW, bool HasNSW) argument
520 CreateSub(Value *LHS, Value *RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
528 CreateNSWSub(Value *LHS, Value *RHS, const Twine &Name = �) argument
531 CreateNUWSub(Value *LHS, Value *RHS, const Twine &Name = �) argument
534 CreateFSub(Value *LHS, Value *RHS, const Twine &Name = �) argument
540 CreateMul(Value *LHS, Value *RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
548 CreateNSWMul(Value *LHS, Value *RHS, const Twine &Name = �) argument
551 CreateNUWMul(Value *LHS, Value *RHS, const Twine &Name = �) argument
554 CreateFMul(Value *LHS, Value *RHS, const Twine &Name = �) argument
560 CreateUDiv(Value *LHS, Value *RHS, const Twine &Name = �, bool isExact = false) argument
569 CreateExactUDiv(Value *LHS, Value *RHS, const Twine &Name = �) argument
572 CreateSDiv(Value *LHS, Value *RHS, const Twine &Name = �, bool isExact = false) argument
581 CreateExactSDiv(Value *LHS, Value *RHS, const Twine &Name = �) argument
584 CreateFDiv(Value *LHS, Value *RHS, const Twine &Name = �) argument
590 CreateURem(Value *LHS, Value *RHS, const Twine &Name = �) argument
596 CreateSRem(Value *LHS, Value *RHS, const Twine &Name = �) argument
602 CreateFRem(Value *LHS, Value *RHS, const Twine &Name = �) argument
609 CreateShl(Value *LHS, Value *RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
617 CreateShl(Value *LHS, const APInt &RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
622 CreateShl(Value *LHS, uint64_t RHS, const Twine &Name = �, bool HasNUW = false, bool HasNSW = false) argument
628 CreateLShr(Value *LHS, Value *RHS, const Twine &Name = �, bool isExact = false) argument
637 CreateLShr(Value *LHS, const APInt &RHS, const Twine &Name = �, bool isExact = false) argument
641 CreateLShr(Value *LHS, uint64_t RHS, const Twine &Name = �, bool isExact = false) argument
646 CreateAShr(Value *LHS, Value *RHS, const Twine &Name = �, bool isExact = false) argument
655 CreateAShr(Value *LHS, const APInt &RHS, const Twine &Name = �, bool isExact = false) argument
659 CreateAShr(Value *LHS, uint64_t RHS, const Twine &Name = �, bool isExact = false) argument
664 CreateAnd(Value *LHS, Value *RHS, const Twine &Name = �) argument
673 CreateAnd(Value *LHS, const APInt &RHS, const Twine &Name = �) argument
676 CreateAnd(Value *LHS, uint64_t RHS, const Twine &Name = �) argument
680 CreateOr(Value *LHS, Value *RHS, const Twine &Name = �) argument
689 CreateOr(Value *LHS, const APInt &RHS, const Twine &Name = �) argument
692 CreateOr(Value *LHS, uint64_t RHS, const Twine &Name = �) argument
696 CreateXor(Value *LHS, Value *RHS, const Twine &Name = �) argument
702 CreateXor(Value *LHS, const APInt &RHS, const Twine &Name = �) argument
705 CreateXor(Value *LHS, uint64_t RHS, const Twine &Name = �) argument
709 CreateBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name = �) argument
1021 CreateICmpEQ(Value *LHS, Value *RHS, const Twine &Name = �) argument
1024 CreateICmpNE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1027 CreateICmpUGT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1030 CreateICmpUGE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1033 CreateICmpULT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1036 CreateICmpULE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1039 CreateICmpSGT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1042 CreateICmpSGE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1045 CreateICmpSLT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1048 CreateICmpSLE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1052 CreateFCmpOEQ(Value *LHS, Value *RHS, const Twine &Name = �) argument
1055 CreateFCmpOGT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1058 CreateFCmpOGE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1061 CreateFCmpOLT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1064 CreateFCmpOLE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1067 CreateFCmpONE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1070 CreateFCmpORD(Value *LHS, Value *RHS, const Twine &Name = �) argument
1073 CreateFCmpUNO(Value *LHS, Value *RHS, const Twine &Name = �) argument
1076 CreateFCmpUEQ(Value *LHS, Value *RHS, const Twine &Name = �) argument
1079 CreateFCmpUGT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1082 CreateFCmpUGE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1085 CreateFCmpULT(Value *LHS, Value *RHS, const Twine &Name = �) argument
1088 CreateFCmpULE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1091 CreateFCmpUNE(Value *LHS, Value *RHS, const Twine &Name = �) argument
1095 CreateICmp(CmpInst::Predicate P, Value *LHS, Value *RHS, const Twine &Name = �) argument
1102 CreateFCmp(CmpInst::Predicate P, Value *LHS, Value *RHS, const Twine &Name = �) argument
1233 CreatePtrDiff(Value *LHS, Value *RHS, const Twine &Name = �) argument
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DCmpInstAnalysis.h56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
/external/llvm/tools/llvm-dwp/
H A DDWPStringPool.h24 static bool isEqual(const char *LHS, const char *RHS) { argument
26 return LHS == getEmptyKey();
28 return LHS == getTombstoneKey();
29 return strcmp(LHS, RHS) == 0;
/external/llvm/unittests/ADT/
H A DDenseSetTest.cpp37 static bool isEqual(const unsigned& LHS, const unsigned& RHS) { argument
38 return LHS == RHS;
40 static bool isEqual(const char* LHS, const unsigned& RHS) { argument
41 return (unsigned)(LHS[0] - 'a') == RHS;
/external/clang/lib/Lex/
H A DPPExpressions.cpp63 static bool EvaluateDirectiveSubExpr(PPValue &LHS, unsigned MinPrec,
508 static void diagnoseUnexpectedOperator(Preprocessor &PP, PPValue &LHS, argument
510 if (Tok.is(tok::l_paren) && LHS.getIdentifier())
511 PP.Diag(LHS.getRange().getBegin(), diag::err_pp_expr_bad_token_lparen)
512 << LHS.getIdentifier();
515 << LHS.getRange();
519 /// PeekTok, and whose precedence is PeekPrec. This returns the result in LHS.
524 static bool EvaluateDirectiveSubExpr(PPValue &LHS, unsigned MinPrec, argument
530 diagnoseUnexpectedOperator(PP, LHS, PeekTok);
548 if (Operator == tok::ampamp && LHS
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp142 // Given GEP's I-th index = LHS + RHS, see whether &Base[..][LHS][..] or
145 unsigned I, Value *LHS,
151 // A helper function for tryReassociateBinaryOp. LHS and RHS are explicitly
153 Instruction *tryReassociateBinaryOp(Value *LHS, Value *RHS,
155 // Rewrites I to (LHS op RHS) if LHS is computed already.
156 Instruction *tryReassociatedBinaryOp(const SCEV *LHS, Value *RHS,
162 // Gets SCEV for (LHS op RHS).
163 const SCEV *getBinarySCEV(BinaryOperator *I, const SCEV *LHS,
369 tryReassociateGEPAtIndex( GetElementPtrInst *GEP, unsigned I, Value *LHS, Value *RHS, Type *IndexedType) argument
441 Value *LHS = I->getOperand(0), *RHS = I->getOperand(1); local
449 tryReassociateBinaryOp(Value *LHS, Value *RHS, BinaryOperator *I) argument
478 auto *LHS = findClosestMatchingDominator(LHSExpr, I); local
510 getBinarySCEV(BinaryOperator *I, const SCEV *LHS, const SCEV *RHS) argument
[all...]

Completed in 634 milliseconds

1234567891011>>