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

<<11121314151617181920>>

  /external/llvm/lib/Target/SystemZ/
SystemZLongBranch.cpp 213 switch (MI->getOpcode()) {
379 switch (Branch->getOpcode()) {
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateMethodAdapter2.java 236 mDelWriter.visitVarInsn(t.getOpcode(Opcodes.ILOAD), maxLocals);
255 mDelWriter.visitInsn(returnType.getOpcode(Opcodes.IRETURN));
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 173 if (I->getOpcode() == FrameSetupOpcode ||
174 I->getOpcode() == FrameDestroyOpcode) {
779 if (I->getOpcode() == FrameSetupOpcode ||
780 I->getOpcode() == FrameDestroyOpcode) {
785 if ((!StackGrowsDown && I->getOpcode() == FrameSetupOpcode) ||
786 (StackGrowsDown && I->getOpcode() == FrameDestroyOpcode))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 574 if (MI.getOpcode() == ARM::LEApcrelJT) {
    [all...]
Thumb2InstrInfo.cpp 80 if (MBBI->getOpcode() == ARM::t2IT) {
426 unsigned Opcode = MI.getOpcode();
612 unsigned Opc = MI->getOpcode();
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 189 switch (Op.getOpcode()) {
628 unsigned Opc = Op.getOpcode();
713 if (LHS.getOpcode() == ISD::Constant)
720 if (LHS.getOpcode() == ISD::Constant)
810 (LHS.getOpcode() == ISD::AND ||
811 (LHS.getOpcode() == ISD::TRUNCATE &&
812 LHS.getOperand(0).getOpcode() == ISD::AND))) {
    [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp 439 if (I->getOpcode() == AMDGPU::PRED_X) {
592 switch (MI->getOpcode()) {
603 switch (MI->getOpcode()) {
643 else if (!TII->isMov(MI->getOpcode()))
654 if (instr->getOpcode() == AMDGPU::RETURN)
664 if (MI->getOpcode() == AMDGPU::CONTINUE)
721 if (Pre->getOpcode() == AMDGPU::CONTINUE
722 && It->getOpcode() == AMDGPU::ENDLOOP)
    [all...]
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 107 unsigned Opc = MBBI->getOpcode();
209 unsigned Opc = PI->getOpcode();
239 unsigned Opc = NI->getOpcode();
271 unsigned Opc = PI->getOpcode();
516 unsigned Opc = MI.getOpcode();
807 (MBBI->getOpcode() == X86::PUSH32r ||
808 MBBI->getOpcode() == X86::PUSH64r)) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 257 if (Incr == 0 || Incr->getOpcode() != Instruction::FAdd) return;
550 unsigned Opc = UseInstr->getOpcode();
563 unsigned PhiOpc = cast<Instruction>(*PB)->getOpcode();
657 bool IsSigned = Cast->getOpcode() == Instruction::SExt;
658 if (!IsSigned && Cast->getOpcode() != Instruction::ZExt)
787 unsigned Opcode = DU.NarrowUse->getOpcode();
814 BinaryOperator *WideBO = BinaryOperator::Create(NarrowBO->getOpcode(),
834 if (DU.NarrowUse->getOpcode() != Instruction::Add)
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 689 switch (MI->getOpcode()) {
    [all...]
AArch64FrameLowering.cpp 114 if (FPNeedsSetting && MBBI->getOpcode() == AArch64::LSPair64_STR
202 unsigned RetOpcode = MBBI->getOpcode();
605 int Opcode = MI->getOpcode();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 402 if (base->getOpcode() == Instruction::Shl) {
404 } else if (base->getOpcode() == Instruction::And) {
427 if (src->getOpcode() == Instruction::Shl && !shift) {
430 } else if (src->getOpcode() == Instruction::And && !mask) {
451 if (inst->getOpcode() != Instruction::Or) {
691 if (inst->getOpcode() != Instruction::And) {
739 if (ShiftInst->getOpcode() == Instruction::Shl) {
    [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 387 return CE->getOpcode() == Opcode && L.match(CE->getOperand(0)) &&
519 return (CE->getOpcode() == Opc1 || CE->getOpcode() == Opc2) &&
656 return O->getOpcode() == Opcode && Op.match(O->getOperand(0));
723 if (O->getOpcode() == Instruction::Xor)
750 if (O->getOpcode() == Instruction::Sub)
776 if (O->getOpcode() == Instruction::FSub)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 158 if (I->getOpcode() == Instruction::And) {
177 } else if (I->getOpcode() == Instruction::Or) {
203 } else if (I->getOpcode() == Instruction::Xor) {
230 switch (I->getOpcode()) {
353 if (LHSInst->getOpcode() == Instruction::And && LHSInst->hasOneUse() &&
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 402 if (base->getOpcode() == Instruction::Shl) {
404 } else if (base->getOpcode() == Instruction::And) {
427 if (src->getOpcode() == Instruction::Shl && !shift) {
430 } else if (src->getOpcode() == Instruction::And && !mask) {
451 if (inst->getOpcode() != Instruction::Or) {
691 if (inst->getOpcode() != Instruction::And) {
739 if (ShiftInst->getOpcode() == Instruction::Shl) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_from_tgsi.cpp 156 inline uint getOpcode() const { return insn->Instruction.Opcode; }
187 return translateOpcode(getOpcode()); }
363 switch (getOpcode()) {
404 switch (getOpcode()) {
419 switch (getOpcode()) {
945 return insn.getOpcode() == TGSI_OPCODE_MOV &&
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 239 if (BO->getOpcode() == UnOpInit::CAST) {
251 if (BO->getOpcode() == BinOpInit::STRCONCAT) {
312 if (BO->getOpcode() == UnOpInit::CAST) {
323 if (BO->getOpcode() == BinOpInit::CONCAT) {
741 switch (getOpcode()) {
854 return (UnOpInit::get(getOpcode(), lhs, getType()))->Fold(&R, 0);
888 switch (getOpcode()) {
947 switch (getOpcode()) {
967 return (BinOpInit::get(getOpcode(), lhs, rhs, getType()))->Fold(&R, 0);
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_tgsi.cpp 156 inline uint getOpcode() const { return insn->Instruction.Opcode; }
187 return translateOpcode(getOpcode()); }
363 switch (getOpcode()) {
404 switch (getOpcode()) {
419 switch (getOpcode()) {
945 return insn.getOpcode() == TGSI_OPCODE_MOV &&
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 43 BinaryOperator::Opcode Op = B->getOpcode();
506 assert(B->getOpcode() == BO_LAnd ||
507 B->getOpcode() == BO_LOr);
742 switch (U->getOpcode()) {
820 switch (U->getOpcode()) {
    [all...]
SymbolManager.cpp 34 << BinaryOperator::getOpcodeStr(getOpcode()) << ' '
45 << BinaryOperator::getOpcodeStr(getOpcode())
55 << BinaryOperator::getOpcodeStr(getOpcode())
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 464 if (Constant *C = ConstantExpr::getCast(I.getOpcode(), COp, I.getType())) {
481 if (Constant *C = ConstantFoldInstOperands(I.getOpcode(), I.getType(),
510 if (I.getOpcode() == Instruction::FCmp)
596 Value *SimpleV = SimplifyBinOp(I.getOpcode(), LHS, RHS, TD);
876 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaMethod.java 690 && insn.getOpcode().getOpcode() == RegOps.MARK_LOCAL) {
842 || lastInsn.getOriginalRopInsn().getOpcode()
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaMethod.java 691 && insn.getOpcode().getOpcode() == RegOps.MARK_LOCAL) {
843 || lastInsn.getOriginalRopInsn().getOpcode()

Completed in 1693 milliseconds

<<11121314151617181920>>