HomeSort by relevance Sort by last modified time
    Searched refs:LHS (Results 176 - 200 of 311) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/clang/include/clang/Serialization/
ASTReader.h     [all...]
  /external/clang/test/SemaCXX/
overloaded-operator.cpp 406 inline bool operator==(StringRef LHS, StringRef RHS) { // expected-error{{overloaded 'operator==' must be a binary operator (has 3 parameters)}}
407 return !(LHS == RHS); // expected-error{{invalid operands to binary expression ('rdar9222009::StringRef' and 'rdar9222009::StringRef')}}
  /external/llvm/include/llvm/IR/
Attributes.h 384 static bool isEqual(AttributeSet LHS, AttributeSet RHS) { return LHS == RHS; }
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 142 static bool beforeThanCompare(const Record *LHS, const Record *RHS) {
143 assert(!LHS->getLoc().empty() && !RHS->getLoc().empty());
145 LHS->getLoc().front().getPointer() < RHS->getLoc().front().getPointer();
148 static bool beforeThanCompareGroups(const GroupInfo *LHS, const GroupInfo *RHS){
149 assert(!LHS->DiagsInGroup.empty() && !RHS->DiagsInGroup.empty());
150 return beforeThanCompare(LHS->DiagsInGroup.front(),
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 395 bool operator()(const std::unique_ptr<DWARFCompileUnit> &LHS,
397 return LHS->getOffset() < RHS->getOffset();
399 bool operator()(const std::unique_ptr<DWARFCompileUnit> &LHS,
401 return LHS->getOffset() < RHS;
403 bool operator()(uint32_t LHS,
405 return LHS < RHS->getOffset();
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp 897 SDValue LHS = N->getOperand(0)
    [all...]
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 836 Init *LHS = ParseValue(CurRec);
837 if (!LHS) return nullptr;
842 ListInit *LHSl = dyn_cast<ListInit>(LHS);
843 StringInit *LHSs = dyn_cast<StringInit>(LHS);
844 TypedInit *LHSt = dyn_cast<TypedInit>(LHS);
902 return (UnOpInit::get(Code, LHS, Type))->Fold(CurRec, CurMultiClass);
1020 Init *LHS = ParseValue(CurRec);
1021 if (!LHS) return nullptr;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 136 SDValue LHS = GetScalarizedVector(N->getOperand(0));
139 LHS.getValueType(), LHS, RHS);
244 SDValue LHS = GetScalarizedVector(N->getOperand(0));
246 LHS, DAG.getValueType(ExtVT));
261 SDValue LHS = GetScalarizedVector(N->getOperand(1));
305 LHS.getValueType(), Cond, LHS,
310 SDValue LHS = GetScalarizedVector(N->getOperand(1));
312 LHS.getValueType(), N->getOperand(0), LHS
    [all...]
DAGCombiner.cpp 285 SDValue ReassociateOps(unsigned Opc, SDLoc DL, SDValue LHS, SDValue RHS);
289 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
298 bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
315 SDNode *MatchRotate(SDValue LHS, SDValue RHS, SDLoc DL);
592 // equivalent to a setcc. Also, set the incoming LHS, RHS, and CC references to
595 bool DAGCombiner::isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
598 LHS = N.getOperand(0);
609 LHS = N.getOperand(0);
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 684 SDValue getSetCC(SDLoc DL, EVT VT, SDValue LHS, SDValue RHS,
686 assert(LHS.getValueType().isVector() == RHS.getValueType().isVector() &&
688 assert(LHS.getValueType().isVector() == VT.isVector() &&
692 return getNode(ISD::SETCC, DL, VT, LHS, RHS, getCondCode(Cond));
698 SDValue LHS, SDValue RHS) {
699 assert(LHS.getValueType() == RHS.getValueType() &&
701 assert(VT.isVector() == LHS.getValueType().isVector() &&
704 Cond, LHS, RHS);
710 SDValue getSelectCC(SDLoc DL, SDValue LHS, SDValue RHS,
713 LHS, RHS, True, False, getCondCode(Cond))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 601 Value *LHS = Op0, *RHS = Op1;
604 std::swap(LHS, RHS);
608 B = LHS;
616 Value *LHS = Op0, *RHS = Op1;
619 std::swap(LHS, RHS);
623 A = LHS;
729 if (Instruction *LHS = dyn_cast<Instruction>(Op0))
730 if (Instruction::BinaryOps(LHS->getOpcode()) == I.getOpcode())
731 if (ConstantInt *LHSRHS = dyn_cast<ConstantInt>(LHS->getOperand(1))) {
735 return BinaryOperator::Create(I.getOpcode(), LHS->getOperand(0)
    [all...]
InstCombineCasts.cpp 189 Value *LHS = EvaluateInDifferentType(I->getOperand(0), Ty, isSigned);
191 Res = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
599 Value *LHS = ICI->getOperand(0);
604 computeKnownBits(LHS, KnownZeroLHS, KnownOneLHS);
613 Value *Result = Builder->CreateXor(LHS, RHS);
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp 452 static bool MethodsCanShareVCallOffset(const CXXMethodDecl *LHS,
469 static bool HasSameVirtualSignature(const CXXMethodDecl *LHS,
472 cast<FunctionProtoType>(LHS->getType().getCanonicalType());
491 bool VCallOffsetMap::MethodsCanShareVCallOffset(const CXXMethodDecl *LHS,
493 assert(LHS->isVirtual() && "LHS must be virtual!");
494 assert(RHS->isVirtual() && "LHS must be virtual!");
497 if (isa<CXXDestructorDecl>(LHS))
503 DeclarationName LHSName = LHS->getDeclName();
509 return HasSameVirtualSignature(LHS, RHS)
    [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 299 // If the result of the assignment is used, copy the LHS there also.
793 // about the LHS.
849 // If the LHS might be a __block variable, and the RHS can
859 // Now emit the LHS and copy into it.
860 LValue LHS = CGF.EmitCheckedLValue(E->getLHS(), CodeGenFunction::TCK_Store);
862 // That copy is an atomic copy if the LHS is atomic.
863 if (LHS.getType()->isAtomicType()) {
864 CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 37 NonLoc lhs, NonLoc rhs, QualType resultTy) override;
39 Loc lhs, Loc rhs, QualType resultTy) override;
41 Loc lhs, NonLoc rhs, QualType resultTy) override;
47 SVal MakeSymIntVal(const SymExpr *LHS, BinaryOperator::Opcode op,
209 SVal SimpleSValBuilder::MakeSymIntVal(const SymExpr *LHS,
271 // Wrap the LHS up in a NonLoc again and let evalCastFromNonLoc do the
274 return evalCastFromNonLoc(nonloc::SymbolVal(LHS), resultTy);
284 QualType SymbolType = LHS->getType();
301 return makeNonLoc(LHS, op, *ConvertedRHS, resultTy);
306 NonLoc lhs, NonLoc rhs
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 81 bool X86FastEmitCompare(const Value *LHS, const Value *RHS, EVT VT);
    [all...]
  /external/llvm/lib/IR/
Constants.cpp 389 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
391 if (LHS && RHS &&
392 LHS->getOpcode() == Instruction::PtrToInt &&
394 isa<BlockAddress>(LHS->getOperand(0)) &&
396 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
    [all...]
  /external/clang/lib/Rewrite/Core/
RewriteRope.cpp 304 // 'WidthFactor' values to the LHS child (which we leave in this node) and
399 RopePieceBTreeInterior(RopePieceBTreeNode *LHS, RopePieceBTreeNode *RHS)
401 Children[0] = LHS;
404 Size = LHS->size() + RHS->size();
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 254 const SCEV *LHS;
256 SCEVUDivExpr(const FoldingSetNodeIDRef ID, const SCEV *lhs, const SCEV *rhs)
257 : SCEV(ID, scUDivExpr), LHS(lhs), RHS(rhs) {}
260 const SCEV *getLHS() const { return LHS; }
264 // In most cases the types of LHS and RHS will be the same, but in some
267 // avoid extra casts in the SCEVExpander. The LHS is more likely to be
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/
StackColoring.cpp 723 [this](int LHS, int RHS) {
725 if (LHS == -1) return false;
728 return MFI->getObjectSize(LHS) > MFI->getObjectSize(RHS);
  /external/llvm/lib/Transforms/Scalar/
SampleProfile.cpp 100 static inline bool isEqual(InstructionLocation LHS, InstructionLocation RHS) {
101 return LHS.LineOffset == RHS.LineOffset &&
102 LHS.Discriminator == RHS.Discriminator;
    [all...]
  /external/clang/include/clang/Basic/
IdentifierTable.h 806 static bool isEqual(clang::Selector LHS, clang::Selector RHS) {
807 return LHS == RHS;

Completed in 1251 milliseconds

1 2 3 4 5 6 78 91011>>