HomeSort by relevance Sort by last modified time
    Searched refs:getOpcode (Results 301 - 325 of 488) sorted by null

<<11121314151617181920

  /external/llvm/lib/CodeGen/
ExpandPostRAPseudos.cpp 217 switch (MI->getOpcode()) {
ScheduleDAGInstrs.cpp 64 if (U->getOpcode() == Instruction::PtrToInt)
72 if (U->getOpcode() != Instruction::Add ||
74 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul))
91 if (Operator::getOpcode(V) != Instruction::IntToPtr)
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 92 switch (MI->getOpcode()) {
  /external/llvm/lib/Target/Hexagon/
HexagonExpandPredSpillCode.cpp 76 int Opc = MI->getOpcode();
  /external/llvm/lib/Target/Hexagon/InstPrinter/
HexagonInstPrinter.cpp 50 if (MI->getOpcode() == Hexagon::ENDLOOP0) {
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 146 OutMI.setOpcode(MI->getOpcode());
PPCFrameLowering.cpp 59 assert(MBBI != Entry->end() && MBBI->getOpcode() == PPC::MTVRSAVE);
71 if (MBBI->getOpcode() == PPC::MTVRSAVE) {
87 assert(MBBI->getOpcode() == PPC::MFVRSAVE && "VRSAVE instrs wandered?");
272 if (MBBI->getOpcode() == PPC::UPDATE_VRSAVE) {
514 unsigned RetOpcode = MBBI->getOpcode();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 33 if (CE->getOpcode() == Instruction::BitCast ||
34 CE->getOpcode() == Instruction::GetElementPtr)
157 if (CE->getOpcode() == Instruction::BitCast ||
158 (CE->getOpcode() == Instruction::GetElementPtr &&
InstCombineSimplifyDemanded.cpp 157 if (I->getOpcode() == Instruction::And) {
176 } else if (I->getOpcode() == Instruction::Or) {
216 switch (I->getOpcode()) {
339 if (LHSInst->getOpcode() == Instruction::And && LHSInst->hasOneUse() &&
    [all...]
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 231 unsigned Opcode = J->getOpcode();
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ControlFlowGraph.java 170 int opcode = instruction.getOpcode();
LocaleDetector.java 165 if (insn.getOpcode() == Opcodes.LDC) {
SecureRandomDetector.java 145 int opcode = prev.getOpcode();
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 83 while (I != E && I->getOpcode() == TargetOpcode::EH_LABEL) {
116 !(I->getOpcode() == Instruction::BitCast ||
117 I->getOpcode() == Instruction::PtrToInt ||
118 I->getOpcode() == Instruction::IntToPtr) &&
208 if (!SelectOperator(Op, Op->getOpcode()))
303 FuncInfo.InsertPt->getOpcode() == TargetOpcode::EH_LABEL)
805 if (SelectOperator(I, I->getOpcode())) {
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 760 markConstant(&I, ConstantExpr::getCast(I.getOpcode(),
863 ConstantExpr::get(I.getOpcode(), V1State.getConstant(),
875 if (I.getOpcode() == Instruction::And || I.getOpcode() == Instruction::Or) {
885 if (I.getOpcode() == Instruction::And)
895 if (I.getOpcode() == Instruction::And) {
    [all...]
JumpThreading.cpp 391 if (I->getOpcode() == Instruction::Or ||
392 I->getOpcode() == Instruction::And) {
402 if (I->getOpcode() == Instruction::Or)
433 if (I->getOpcode() == Instruction::Xor &&
460 Constant *Folded = ConstantExpr::get(BO->getOpcode(), V, CI);
804 if (CondInst->getOpcode() == Instruction::Xor &&
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp 339 if (ADDCNode->getOpcode() != ISD::ADDC)
345 unsigned MultOpc = MultHi.getOpcode();
412 if (SUBCNode->getOpcode() != ISD::SUBC)
418 unsigned MultOpc = MultHi.getOpcode();
507 unsigned opc = N->getOpcode() == ISD::SDIVREM ? MipsISD::DivRem :
577 if (Op.getOpcode() != ISD::SETCC)
615 if ((SetCC.getOpcode() != ISD::SETCC) ||
650 unsigned ShiftRightOpc = ShiftRight.getOpcode();
695 if (And0.getOpcode() != ISD::AND)
703 if (And1.getOpcode() != ISD::AND
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp 381 if (UOE->getOpcode() == UO_Deref) {
385 if (UOE->getOpcode() == UO_AddrOf) {
    [all...]
CFG.cpp 471 switch (Bop->getOpcode()) {
507 if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr))
512 if (Bop->getOpcode() == BO_LOr)
522 if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr))
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 348 Opcode = I->getOpcode();
352 Opcode = C->getOpcode();
603 Opcode = I->getOpcode();
606 Opcode = C->getOpcode();
    [all...]
  /external/clang/lib/AST/
Expr.cpp 64 switch (UO->getOpcode()) {
78 switch (BO->getOpcode()) {
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 232 switch (CE->getOpcode()) {
293 if (CE->getOpcode() == Instruction::Sub) {
297 LHS->getOpcode() == Instruction::PtrToInt &&
298 RHS->getOpcode() == Instruction::PtrToInt &&
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 849 return UnOpInit::get(getOpcode(), *Operands.begin(), getType());
858 UnaryOp getOpcode() const { return Opc; }
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 484 if (CE->getOpcode() == Instruction::GetElementPtr) {
489 } else if (CE->getOpcode() == Instruction::BitCast &&
507 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
582 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
744 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
    [all...]

Completed in 1809 milliseconds

<<11121314151617181920