HomeSort by relevance Sort by last modified time
    Searched refs:Op (Results 76 - 100 of 317) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/lib/Target/Alpha/
AlphaISelLowering.cpp 194 static SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
195 EVT PtrVT = Op.getValueType();
196 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
199 DebugLoc dl = Op.getDebugLoc();
573 SDValue AlphaTargetLowering::LowerOperation(SDValue Op,
575 DebugLoc dl = Op.getDebugLoc();
576 switch (Op.getOpcode()) {
578 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
581 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
586 Op.getOperand(1), Op.getOperand(2))
    [all...]
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeAsmBackend.cpp 70 static unsigned getRelaxedOpcode(unsigned Op) {
71 switch (Op) {
72 default: return Op;
  /external/skia/include/utils/
SkNWayCanvas.h 30 SkRegion::Op op = SkRegion::kIntersect_Op);
32 SkRegion::Op op = SkRegion::kIntersect_Op);
34 SkRegion::Op op = SkRegion::kIntersect_Op);
SkProxyCanvas.h 37 SkRegion::Op op = SkRegion::kIntersect_Op);
39 SkRegion::Op op = SkRegion::kIntersect_Op);
41 SkRegion::Op op = SkRegion::kIntersect_Op);
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 144 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
147 OutOps.push_back(Op);
270 static bool isIntS16Immediate(SDValue Op, short &Imm) {
271 return isIntS16Immediate(Op.getNode(), Imm);
617 // We can codegen setcc op, imm very efficiently compared to a brcond.
619 // setcc op, 0
621 SDValue Op = N->getOperand(0);
625 Op = SDValue(CurDAG->getMachineNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
626 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) }
    [all...]
  /external/llvm/lib/Target/X86/
X86AsmPrinter.cpp 264 void X86AsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op,
266 unsigned char value = MI->getOperand(Op).getImm();
280 void X86AsmPrinter::printLeaMemReference(const MachineInstr *MI, unsigned Op,
282 const MachineOperand &BaseReg = MI->getOperand(Op);
283 const MachineOperand &IndexReg = MI->getOperand(Op+2);
284 const MachineOperand &DispSpec = MI->getOperand(Op+3);
302 printSymbolOperand(MI->getOperand(Op+3), O);
314 printOperand(MI, Op, O, Modifier);
318 printOperand(MI, Op+2, O, Modifier);
319 unsigned ScaleVal = MI->getOperand(Op+1).getImm()
    [all...]
  /frameworks/base/core/java/android/app/
BackStackRecord.java 41 BackStackRecord.Op op = bse.mHead; local
42 while (op != null) {
43 if (op.removed != null) numRemoved += op.removed.size();
44 op = op.next;
52 op = bse.mHead;
54 while (op != null) {
55 mOps[pos++] = op.cmd
98 BackStackRecord.Op op = new BackStackRecord.Op(); local
249 Op op = mHead; local
367 Op op = new Op(); local
387 Op op = new Op(); local
396 Op op = new Op(); local
405 Op op = new Op(); local
414 Op op = new Op(); local
423 Op op = new Op(); local
507 Op op = mHead; local
556 Op op = mHead; local
635 Op op = mTail; local
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
BackStackRecord.java 41 BackStackRecord.Op op = bse.mHead; local
42 while (op != null) {
43 if (op.removed != null) numRemoved += op.removed.size();
44 op = op.next;
52 op = bse.mHead;
54 while (op != null) {
55 mOps[pos++] = op.cmd
98 BackStackRecord.Op op = new BackStackRecord.Op(); local
249 Op op = mHead; local
367 Op op = new Op(); local
387 Op op = new Op(); local
396 Op op = new Op(); local
405 Op op = new Op(); local
414 Op op = new Op(); local
423 Op op = new Op(); local
507 Op op = mHead; local
556 Op op = mHead; local
635 Op op = mTail; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SVals.cpp 224 BinaryOperator::Opcode Op,
227 svalBuilder.getBasicValueFactory().evalAPSInt(Op, getValue(), R.getValue());
250 BinaryOperator::Opcode Op,
253 assert (Op == BO_Add || Op == BO_Sub ||
254 (Op >= BO_LT && Op <= BO_NE));
256 const llvm::APSInt* X = BasicVals.evalAPSInt(Op, getValue(), R.getValue());
BugReporterVisitors.cpp 617 BinaryOperator::Opcode Op = BExpr->getOpcode();
620 switch (Op) {
622 case BO_LT: Op = BO_GT; break;
623 case BO_GT: Op = BO_LT; break;
624 case BO_LE: Op = BO_GE; break;
625 case BO_GE: Op = BO_LE; break;
629 switch (Op) {
630 case BO_EQ: Op = BO_NE; break;
631 case BO_NE: Op = BO_EQ; break;
632 case BO_LT: Op = BO_GE; break
    [all...]
  /external/llvm/include/llvm/
GlobalVariable.h 119 return static_cast<Constant*>(Op<0>().get());
123 return static_cast<Constant*>(Op<0>().get());
  /external/llvm/include/llvm/MC/
MCExpr.h 238 Opcode Op;
242 : MCExpr(MCExpr::Unary), Op(_Op), Expr(_Expr) {}
248 static const MCUnaryExpr *Create(Opcode Op, const MCExpr *Expr,
268 Opcode getOpcode() const { return Op; }
310 Opcode Op;
314 : MCExpr(MCExpr::Binary), Op(_Op), LHS(_LHS), RHS(_RHS) {}
320 static const MCBinaryExpr *Create(Opcode Op, const MCExpr *LHS,
400 Opcode getOpcode() const { return Op; }
  /external/llvm/lib/VMCore/
Globals.cpp 94 Op<0>() = InitVal;
113 Op<0>() = InitVal;
163 Op<0>().set(0);
171 Op<0>().set(InitVal);
192 : GlobalValue(Ty, Value::GlobalAliasVal, &Op<0>(), 1, Link, Name) {
197 Op<0>() = aliasee;
  /external/skia/src/core/
SkClipStack.cpp 15 SkRegion::Op fOp;
18 Rec(int saveCount, const SkRect& rect, SkRegion::Op op) : fRect(rect) {
20 fOp = op;
24 Rec(int saveCount, const SkPath& path, SkRegion::Op op) : fPath(path) {
26 fOp = op;
53 bool canBeIntersected(int saveCount, SkRegion::Op op) const {
55 SkRegion::kDifference_Op == op ||
    [all...]
  /external/llvm/utils/TableGen/
FastISelEmitter.cpp 189 TreePatternNode *Op = InstPatNode->getChild(i);
192 if (!Op->isLeaf() && Op->getOperator()->getName() == "imm") {
194 if (!Op->getPredicateFns().empty()) {
195 TreePredicateFn PredFn = Op->getPredicateFns()[0];
199 if (Op->getPredicateFns().size() > 1 ||
214 //if (Op->getType(0) != VT)
224 if (!Op->getPredicateFns().empty() || Op->getNumTypes() != 1)
227 if (!Op->isLeaf())
    [all...]