HomeSort by relevance Sort by last modified time
    Searched refs:getOpcode (Results 251 - 275 of 394) sorted by null

<<111213141516

  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 124 public final int getOpcode() {
  /dalvik/dx/src/com/android/dx/rop/code/
Rop.java 312 public int getOpcode() {
  /dalvik/dx/src/com/android/dx/ssa/
PhiInsn.java 173 public Rop getOpcode() {
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 74 BinaryOperatorKind opc = binop->getOpcode();
  /external/llvm/include/llvm/Support/
InstVisitor.h 116 switch (I.getOpcode()) {
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 106 if (Op0->getOpcode() == OpcodeToExpand) {
130 if (Op1->getOpcode() == OpcodeToExpand) {
170 if (!Op0 || Op0->getOpcode() != OpcodeToExtract ||
171 !Op1 || Op1->getOpcode() != OpcodeToExtract)
244 if (Op0 && Op0->getOpcode() == Opcode) {
263 if (Op1 && Op1->getOpcode() == Opcode) {
286 if (Op0 && Op0->getOpcode() == Opcode) {
305 if (Op1 && Op1->getOpcode() == Opcode) {
380 if (Simplified && Simplified->getOpcode() == Opcode) {
    [all...]
LoopInfo.cpp 159 if (Inc->getOpcode() == Instruction::Add &&
239 switch (BO->getOpcode()) {
  /external/llvm/lib/CodeGen/
ExpandPostRAPseudos.cpp 220 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)
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 95 switch (MI->getOpcode()) {
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 134 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?");
270 if (MBBI->getOpcode() == PPC::UPDATE_VRSAVE) {
512 unsigned RetOpcode = MBBI->getOpcode();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 44 if (I->getOpcode() == Instruction::Mul)
47 if (I->getOpcode() == Instruction::Shl)
482 if (CE->getOpcode() == Instruction::GetElementPtr &&
498 if (CE->getOpcode() == Instruction::GetElementPtr &&
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 185 switch (II->getOpcode()) {
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 74 while (I != E && I->getOpcode() == TargetOpcode::EH_LABEL) {
102 !(I->getOpcode() == Instruction::BitCast ||
103 I->getOpcode() == Instruction::PtrToInt ||
104 I->getOpcode() == Instruction::IntToPtr) &&
201 if (!SelectOperator(Op, Op->getOpcode()))
296 FuncInfo.InsertPt->getOpcode() == TargetOpcode::EH_LABEL)
762 if (SelectOperator(I, I->getOpcode())) {
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 725 OS << UnaryOperator::getOpcodeStr(Node->getOpcode());
729 switch (Node->getOpcode()) {
746 OS << UnaryOperator::getOpcodeStr(Node->getOpcode());
885 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " ";
890 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " ";
    [all...]
Expr.cpp 47 switch (UO->getOpcode()) {
61 switch (BO->getOpcode()) {
735 if (UO->getOpcode() == UO_Deref)
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 346 Opcode = I->getOpcode();
350 Opcode = C->getOpcode();
601 Opcode = I->getOpcode();
604 Opcode = C->getOpcode();
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 286 Rop rop = insn.getOpcode();
314 switch (rop.getOpcode()) {
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 458 Rop rop = insn.getOpcode();
486 switch (rop.getOpcode()) {
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 278 if (CE->getOpcode() == Instruction::GetElementPtr ||
279 CE->getOpcode() == Instruction::BitCast) {
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]

Completed in 1602 milliseconds

<<111213141516