HomeSort by relevance Sort by last modified time
    Searched refs:LHS (Results 201 - 225 of 232) sorted by null

1 2 3 4 5 6 7 8910

  /external/llvm/include/llvm/
Constants.h     [all...]
  /external/llvm/lib/CodeGen/
StrongPHIElimination.cpp 184 bool operator()(const MachineInstr *LHS, const MachineInstr *RHS) const {
185 return LI->getInstructionIndex(LHS) < LI->getInstructionIndex(RHS);
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 794 const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
797 if (!LHS && !RHS)
800 if (!LHS) LHS = BE->getLHS();
803 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 552 ExprResult LHS(MissingCase ? Expr : ParseConstantExpression());
554 if (LHS.isInvalid()) {
591 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc,
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 519 const Expr *LHS = Case->getLHS()->IgnoreParenCasts();
524 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS)) {
537 os << LHS->EvaluateKnownConstInt(PDB.getASTContext());
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
LegalizeTypes.h 288 void PromoteSetCCOperands(SDValue &LHS,SDValue &RHS, ISD::CondCode Code);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 566 SDValue LHS = Op.getOperand(0);
571 LHS, RHS);
583 SDValue LHS = Op.getOperand(0);
587 DAG.getVTList(MVT::i32, MVT::i32), LHS, RHS,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 738 Value *LHS = CI->getArgOperand(0), *RHS = CI->getArgOperand(1);
740 if (LHS == RHS) // memcmp(s,s,x) -> 0
751 // memcmp(S1,S2,1) -> *(unsigned char*)LHS - *(unsigned char*)RHS
753 Value *LHSV = B.CreateZExt(B.CreateLoad(CastToCStr(LHS, B), "lhsc"),
762 if (getConstantStringInfo(LHS, LHSStr) &&
    [all...]
LoopUnswitch.cpp 367 if (Value *LHS = FindLIVLoopCondition(BO->getOperand(0), L, Changed))
368 return LHS;
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 666 bool operator()(const Record *LHS, const Record *RHS) const;
CodeGenDAGPatterns.cpp 577 bool RecordPtrCmp::operator()(const Record *LHS, const Record *RHS) const {
578 return LHS->getID() < RHS->getID();
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 475 TryResult LHS = tryEvaluateBool(Bop->getLHS());
476 if (LHS.isKnown()) {
477 // We were able to evaluate the LHS, see if we can get away with not
479 if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr))
480 return LHS.isTrue();
485 return LHS.isTrue() || RHS.isTrue();
487 return LHS.isTrue() && RHS.isTrue();
492 // We can't evaluate the LHS; however, sometimes the result
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 2190 LValue lhs = EmitLValue(expr->getTrueExpr()); local
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp     [all...]
ARMConstantIslandPass.cpp     [all...]
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 38 | Ast.Binary (op, lhs, rhs) ->
41 (* Special case '=' because we don't want to emit the LHS as an
44 match lhs with
59 let lhs_val = codegen_expr lhs in
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 178 static bool isEqual(const SDValue &LHS, const SDValue &RHS) {
179 return LHS == RHS;
    [all...]
  /external/clang/include/clang/AST/
Type.h 813 friend bool operator==(const QualType &LHS, const QualType &RHS) {
814 return LHS.Value == RHS.Value;
816 friend bool operator!=(const QualType &LHS, const QualType &RHS) {
817 return LHS.Value != RHS.Value;
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 514 const MCExpr *LHS;
516 LHS = MCBinaryExpr::CreateSub(Add, Sub, *Ctx);
518 LHS = MCUnaryExpr::CreateMinus(Sub, *Ctx);
520 Expr = MCBinaryExpr::CreateAdd(LHS, Off, *Ctx);
522 Expr = LHS;
    [all...]

Completed in 943 milliseconds

1 2 3 4 5 6 7 8910