Searched refs:LHS (Results 151 - 175 of 555) sorted by relevance

1234567891011>>

/external/mesa3d/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...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h287 const SymExpr *LHS; member in class:clang::ento::SymIntExpr
293 : BinarySymExpr(SymIntExprKind, op, t), LHS(lhs), RHS(rhs) {}
297 const SymExpr *getLHS() const { return LHS; }
311 Profile(ID, LHS, getOpcode(), RHS, getType());
322 const llvm::APSInt& LHS; member in class:clang::ento::IntSymExpr
328 : BinarySymExpr(IntSymExprKind, op, t), LHS(lhs), RHS(rhs) {}
333 const llvm::APSInt &getLHS() const { return LHS; }
346 Profile(ID, LHS, getOpcode(), RHS, getType());
357 const SymExpr *LHS; member in class:clang::ento::SymSymExpr
363 : BinarySymExpr(SymSymExprKind, op, t), LHS(lh
[all...]
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp153 std::unique_ptr<ExprAST> LHS, RHS; member in class:__anon12206::BinaryExprAST
156 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, argument
158 : Op(Op), LHS(std::move(LHS)), RHS(std::move(RHS)) {}
423 std::unique_ptr<ExprAST> LHS) {
431 return LHS;
443 // the pending operator take RHS as its LHS.
451 // Merge LHS/RHS.
452 LHS =
453 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), st
422 ParseBinOpRHS(int ExprPrec, std::unique_ptr<ExprAST> LHS) argument
461 auto LHS = ParsePrimary(); local
[all...]
/external/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingWriter.cpp43 mark(Expressions[ID].LHS);
53 gatherUsed(E.LHS);
124 writeCounter(MinExpressions, Minimizer.adjust(E.LHS), OS);
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
H A DCoreMatchers.java50 public static <LHS> org.hamcrest.core.CombinableMatcher.CombinableBothMatcher<LHS> both(org.hamcrest.Matcher<? super LHS> matcher) {
59 public static <LHS> org.hamcrest.core.CombinableMatcher.CombinableEitherMatcher<LHS> either(org.hamcrest.Matcher<? super LHS> matcher) {
/external/libcxx/test/support/
H A Duses_alloc_types.hpp46 #define COMPARE_ALLOC_TYPE(LHS, RHS) CompareVerbose(#LHS, LHS, #RHS, RHS)
48 inline bool CompareVerbose(const char* LHSString, UsesAllocatorType LHS, argument
50 if (LHS == RHS)
53 LHSString, toString(LHS), RHSString, toString(RHS));
/external/llvm/include/llvm/Analysis/
H A DValueTracking.h62 /// Return true if LHS and RHS have no common bits set.
63 bool haveNoCommonBitsSet(Value *LHS, Value *RHS, const DataLayout &DL,
323 OverflowResult computeOverflowForUnsignedMul(Value *LHS, Value *RHS,
328 OverflowResult computeOverflowForUnsignedAdd(Value *LHS, Value *RHS,
333 OverflowResult computeOverflowForSignedAdd(Value *LHS, Value *RHS,
437 /// type of LHS and RHS into the type of V is returned in CastOp.
444 /// -> LHS = %a, RHS = i32 4, *CastOp = Instruction::SExt
446 SelectPatternResult matchSelectPattern(Value *V, Value *&LHS, Value *&RHS,
454 /// Return true if RHS is known to be implied true by LHS. Return false if
455 /// RHS is known to be implied false by LHS
[all...]
H A DLoopPassManager.h73 friend void swap(FunctionToLoopPassAdaptor &LHS, argument
76 swap(LHS.Pass, RHS.Pass);
H A DMemoryLocation.h136 static bool isEqual(const MemoryLocation &LHS, const MemoryLocation &RHS) { argument
137 return LHS == RHS;
/external/libcxx/test/libcxx/algorithms/
H A Ddebug_less.pass.cpp33 bool operator<(MyType<ID1> const& LHS, MyType<ID2> const& RHS) { argument
34 return LHS.value < RHS.value;
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/
H A Dpath.compare.pass.cpp42 const char* LHS; member in struct:PathCompareTest
85 const path p1(TC.LHS);
/external/llvm/include/llvm/ADT/
H A DPointerEmbeddedInt.h113 static bool isEqual(const T &LHS, const T &RHS) { return LHS == RHS; }
H A DSmallBitVector.h565 operator&(const SmallBitVector &LHS, const SmallBitVector &RHS) { argument
566 SmallBitVector Result(LHS);
572 operator|(const SmallBitVector &LHS, const SmallBitVector &RHS) { argument
573 SmallBitVector Result(LHS);
579 operator^(const SmallBitVector &LHS, const SmallBitVector &RHS) { argument
580 SmallBitVector Result(LHS);
590 swap(llvm::SmallBitVector &LHS, llvm::SmallBitVector &RHS) { argument
591 LHS.swap(RHS);
H A DSparseBitVector.h835 inline bool operator |=(SparseBitVector<ElementSize> &LHS,
837 return LHS |= *RHS;
841 inline bool operator |=(SparseBitVector<ElementSize> *LHS,
843 return LHS->operator|=(RHS);
847 inline bool operator &=(SparseBitVector<ElementSize> *LHS,
849 return LHS->operator&=(RHS);
853 inline bool operator &=(SparseBitVector<ElementSize> &LHS,
855 return LHS &= *RHS;
862 operator|(const SparseBitVector<ElementSize> &LHS,
864 SparseBitVector<ElementSize> Result(LHS);
[all...]
/external/llvm/include/llvm/Transforms/Scalar/
H A DReassociate.h42 inline bool operator<(const ValueEntry &LHS, const ValueEntry &RHS) { argument
43 return LHS.Rank > RHS.Rank; // Sort so that highest rank goes to start.
/external/llvm/lib/MC/
H A DMCSubtargetInfo.cpp81 [](const SubtargetInfoKV &LHS, const SubtargetInfoKV &RHS) {
82 return strcmp(LHS.Key, RHS.Key) < 0;
/external/llvm/unittests/Analysis/
H A DValueTrackingTest.cpp54 Value *LHS, *RHS; local
56 SelectPatternResult R = matchSelectPattern(A, LHS, RHS, &CastOp);
/external/swiftshader/third_party/LLVM/lib/Support/
H A DTargetRegistry.cpp97 static int TargetArraySortFn(const void *LHS, const void *RHS) { argument
99 return ((const pair_ty*)LHS)->first.compare(((const pair_ty*)RHS)->first);
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombine.h107 Value *OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty);
123 Value *FoldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS);
124 Value *FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS);
126 Value *FoldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS);
127 Value *FoldOrOfFCmps(FCmpInst *LHS, FCmpInst *RHS);
145 Instruction *LHS,
224 bool WillNotOverflowSignedAdd(Value *LHS, Value *RHS);
352 Value *FoldLogicalPlusAnd(Value *LHS, Value *RHS, ConstantInt *Mask,
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DEarlyCSE.cpp85 static bool isEqual(SimpleValue LHS, SimpleValue RHS);
122 bool DenseMapInfo<SimpleValue>::isEqual(SimpleValue LHS, SimpleValue RHS) { argument
123 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
125 if (LHS.isSentinel() || RHS.isSentinel())
178 static bool isEqual(CallValue LHS, CallValue RHS);
195 bool DenseMapInfo<CallValue>::isEqual(CallValue LHS, CallValue RHS) { argument
196 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
197 if (LHS.isSentinel() || RHS.isSentinel())
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp172 Value *LHS, Value *RHS) {
174 if (Constant *CLHS = dyn_cast<Constant>(LHS))
190 if (IP->getOpcode() == (unsigned)Opcode && IP->getOperand(0) == LHS &&
203 if (!L->isLoopInvariant(LHS) || !L->isLoopInvariant(RHS)) break;
212 Instruction *BO = cast<Instruction>(Builder.CreateBinOp(Opcode, LHS, RHS));
639 bool operator()(std::pair<const Loop *, const SCEV *> LHS, argument
642 if (LHS.second->getType()->isPointerTy() !=
644 return LHS.second->getType()->isPointerTy();
647 if (LHS.first != RHS.first)
648 return PickMostRelevantLoop(LHS
171 InsertBinop(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS) argument
785 Value *LHS = expandCodeFor(S->getLHS(), Ty); local
1564 Value *LHS = expand(S->getOperand(S->getNumOperands()-1)); local
1588 Value *LHS = expand(S->getOperand(S->getNumOperands()-1)); local
1901 Instruction *LHS, *RHS; local
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp158 unsigned emitAddSub(bool UseAdd, MVT RetVT, const Value *LHS,
180 bool emitCmp(const Value *LHS, const Value *RHS, bool IsZExt);
181 bool emitICmp(MVT RetVT, const Value *LHS, const Value *RHS, bool IsZExt);
183 bool emitFCmp(MVT RetVT, const Value *LHS, const Value *RHS);
190 unsigned emitAdd(MVT RetVT, const Value *LHS, const Value *RHS,
194 unsigned emitSub(MVT RetVT, const Value *LHS, const Value *RHS,
203 unsigned emitLogicalOp(unsigned ISDOpc, MVT RetVT, const Value *LHS,
608 const Value *LHS = U->getOperand(0); local
611 if (isa<ConstantInt>(LHS))
612 std::swap(LHS, RH
628 const Value *LHS = U->getOperand(0); local
685 const Value *LHS = AI->getOperand(0); local
719 const Value *LHS = U->getOperand(0); local
780 const Value *LHS = U->getOperand(0); local
1081 emitAddSub(bool UseAdd, MVT RetVT, const Value *LHS, const Value *RHS, bool SetFlags, bool WantResult, bool IsZExt) argument
1398 emitCmp(const Value *LHS, const Value *RHS, bool IsZExt) argument
1420 emitICmp(MVT RetVT, const Value *LHS, const Value *RHS, bool IsZExt) argument
1432 emitFCmp(MVT RetVT, const Value *LHS, const Value *RHS) argument
1467 emitAdd(MVT RetVT, const Value *LHS, const Value *RHS, bool SetFlags, bool WantResult, bool IsZExt) argument
1497 emitSub(MVT RetVT, const Value *LHS, const Value *RHS, bool SetFlags, bool WantResult, bool IsZExt) argument
1520 emitLogicalOp(unsigned ISDOpc, MVT RetVT, const Value *LHS, const Value *RHS) argument
2174 const Value *LHS = CI->getOperand(0); local
3258 const Value *LHS = II->getArgOperand(0); local
3528 const Value *LHS = II->getArgOperand(0); local
[all...]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngine.cpp689 GenericValue LHS = getConstantValue(Op0); local
697 case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
698 case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
699 case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
700 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
701 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
702 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
703 case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
704 case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break;
705 case Instruction::Or: GV.IntVal = LHS
[all...]
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DRecord.cpp66 static bool isEqual(const TableGenStringKey& LHS, argument
68 return LHS.str() == RHS.str();
189 Init *LHS = Tern->getLHS(); local
205 TernOpInit::get(TernOpInit::IF, LHS,
220 NewBits[i] = TernOpInit::get(TernOpInit::IF, LHS,
741 StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
746 DefInit *LHSd = dynamic_cast<DefInit*>(LHS);
751 StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
797 ListInit *LHSl = dynamic_cast<ListInit*>(LHS);
808 ListInit *LHSl = dynamic_cast<ListInit*>(LHS);
1010 EvaluateOperation(OpInit *RHSo, Init *LHS, Init *Arg, RecTy *Type, Record *CurRec, MultiClass *CurMultiClass) argument
1055 ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type, Record *CurRec, MultiClass *CurMultiClass) argument
[all...]
/external/llvm/include/llvm-c/
H A DCore.h2933 LLVMValueRef LLVMBuildAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2935 LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2937 LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2939 LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2941 LLVMValueRef LLVMBuildSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2943 LLVMValueRef LLVMBuildNSWSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2945 LLVMValueRef LLVMBuildNUWSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2947 LLVMValueRef LLVMBuildFSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2949 LLVMValueRef LLVMBuildMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2951 LLVMValueRef LLVMBuildNSWMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRe
[all...]

Completed in 730 milliseconds

1234567891011>>