/external/llvm/lib/CodeGen/SelectionDAG/ |
FunctionLoweringInfo.cpp | 183 TargetLowering::AsmOperandInfo &Op = Ops[I]; 184 if (Op.Type == InlineAsm::isClobber) { 186 TLI->ComputeConstraintToUse(Op, SDValue(), DAG); 188 TLI->getRegForInlineAsmConstraint(TRI, Op.ConstraintCode, 189 Op.ConstraintVT);
|
ScheduleDAGRRList.cpp | 418 for (const SDValue &Op : N->op_values()) 419 if (IsChainDependent(Op.getNode(), Inner, NestLevel, TII)) 436 for (const SDValue &Op : N->op_values()) 437 if (Op.getValueType() == MVT::Other) { 438 N = Op.getNode(); 467 for (const SDValue &Op : N->op_values()) { 470 if (SDNode *New = FindCallSeqStart(Op.getNode(), 496 for (const SDValue &Op : N->op_values()) 497 if (Op.getValueType() == MVT::Other) { 498 N = Op.getNode() [all...] |
/external/pdfium/third_party/base/numerics/ |
safe_math.h | 429 CheckedNumeric<typename ResultType<Checked##NAME##Op, L, R, Args...>::type> \ 431 return ChkMathOp<Checked##NAME##Op, L, R, Args...>(lhs, rhs, args...); \ 434 #define BASE_NUMERIC_ARITHMETIC_OPERATORS(NAME, OP, COMPOUND_OP) \ 439 CheckedNumeric<typename MathWrapper<Checked##NAME##Op, L, R>::type> \ 440 operator OP(const L lhs, const R rhs) { \ 441 return decltype(lhs OP rhs)::template MathOp<Checked##NAME##Op>(lhs, rhs); \ 447 return MathOp<Checked##NAME##Op>(rhs); \
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
ScalarEvolution.h | 452 /// of 'icmp op load X, cst', try to see if we can compute the 560 const SCEV *getTruncateExpr(const SCEV *Op, Type *Ty); 561 const SCEV *getZeroExtendExpr(const SCEV *Op, Type *Ty); 562 const SCEV *getSignExtendExpr(const SCEV *Op, Type *Ty); 563 const SCEV *getAnyExtendExpr(const SCEV *Op, Type *Ty); [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
InstCombineAndOrXor.cpp | 191 // OptAndOp - This handles expressions of the form ((val OP C1) & C2). Where 192 // the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'. Op is 194 Instruction *InstCombiner::OptAndOp(Instruction *Op, 198 Value *X = Op->getOperand(0); 200 if (!Op->isShift()) 203 switch (Op->getOpcode()) { 205 if (Op->hasOneUse()) { 208 And->takeName(Op); [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
LoopSimplify.cpp | 723 for (unsigned Op = 0, e = TI->getNumSuccessors(); Op != e; ++Op) 724 if (TI->getSuccessor(Op) == Header) 725 TI->setSuccessor(Op, BEBlock);
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
closure.go | 122 if ln.Op == ONAME && (ln.Class == PPARAM || ln.Class == PPARAMOUT) { 172 case n.Func.Outerfunc.Op == ODCLFUNC: 188 case n.Func.Outerfunc.Op == OCLOSURE: 262 v.Op = OXXX 331 if v.Op == OXXX { 378 if v.Op == OXXX { 431 if v.Op == OXXX { 483 if v.Op == OXXX { 522 switch fn.Op { 534 fn.Op = OCALLPAR [all...] |
gsubr.go | 126 if n.Op != ONAME { 129 Fatalf("naddr: bad %v %v", n.Op, Ctxt.Dconv(a)) 239 Fatalf("nodarg: unexpected node: %v (%p %v) vs %v (%p %v)", n, n, n.Op, t.Nname, t.Nname, t.Nname.Op) 276 n.Op = OINDREGSP 305 Fatalf("unhandled gins op %v", as)
|
/prebuilts/go/darwin-x86/src/net/ |
dial.go | 169 func (r *Resolver) resolveAddrList(ctx context.Context, op, network, addr string, hint Addr) (addrList, error) { 174 if op == "dial" && addr == "" { 183 if op == "dial" && hint != nil && addr.Network() != hint.Network() { 189 if err != nil || op != "dial" || hint == nil { 351 return nil, &OpError{Op: "dial", Net: network, Source: nil, Addr: nil, Err: err} 469 return nil, &OpError{Op: "dial", Net: dp.network, Source: dp.LocalAddr, Addr: ra, Err: mapErr(ctx.Err())} 478 firstErr = &OpError{Op: "dial", Net: dp.network, Source: dp.LocalAddr, Addr: ra, Err: err} 499 firstErr = &OpError{Op: "dial", Net: dp.network, Source: nil, Addr: nil, Err: errMissingAddress} 532 return nil, &OpError{Op: "dial", Net: dp.network, Source: la, Addr: ra, Err: &AddrError{Err: "unexpected address type", Addr: dp.address}} 535 return nil, &OpError{Op: "dial", Net: dp.network, Source: la, Addr: ra, Err: err} // c is non-nil interface containing nil (…) [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
closure.go | 122 if ln.Op == ONAME && (ln.Class == PPARAM || ln.Class == PPARAMOUT) { 172 case n.Func.Outerfunc.Op == ODCLFUNC: 188 case n.Func.Outerfunc.Op == OCLOSURE: 262 v.Op = OXXX 331 if v.Op == OXXX { 378 if v.Op == OXXX { 431 if v.Op == OXXX { 483 if v.Op == OXXX { 522 switch fn.Op { 534 fn.Op = OCALLPAR [all...] |
gsubr.go | 126 if n.Op != ONAME { 129 Fatalf("naddr: bad %v %v", n.Op, Ctxt.Dconv(a)) 239 Fatalf("nodarg: unexpected node: %v (%p %v) vs %v (%p %v)", n, n, n.Op, t.Nname, t.Nname, t.Nname.Op) 276 n.Op = OINDREGSP 305 Fatalf("unhandled gins op %v", as)
|
/prebuilts/go/linux-x86/src/net/ |
dial.go | 169 func (r *Resolver) resolveAddrList(ctx context.Context, op, network, addr string, hint Addr) (addrList, error) { 174 if op == "dial" && addr == "" { 183 if op == "dial" && hint != nil && addr.Network() != hint.Network() { 189 if err != nil || op != "dial" || hint == nil { 351 return nil, &OpError{Op: "dial", Net: network, Source: nil, Addr: nil, Err: err} 469 return nil, &OpError{Op: "dial", Net: dp.network, Source: dp.LocalAddr, Addr: ra, Err: mapErr(ctx.Err())} 478 firstErr = &OpError{Op: "dial", Net: dp.network, Source: dp.LocalAddr, Addr: ra, Err: err} 499 firstErr = &OpError{Op: "dial", Net: dp.network, Source: nil, Addr: nil, Err: errMissingAddress} 532 return nil, &OpError{Op: "dial", Net: dp.network, Source: la, Addr: ra, Err: &AddrError{Err: "unexpected address type", Addr: dp.address}} 535 return nil, &OpError{Op: "dial", Net: dp.network, Source: la, Addr: ra, Err: err} // c is non-nil interface containing nil (…) [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
ARMISelDAGToDAG.cpp | 41 DisableShifterOp("disable-shifter-op", cl::Hidden, 42 cl::desc("Disable isel of shifter-op"), 63 AM2_SHOP // Shifter-op AM2 137 bool SelectAddrMode2OffsetReg(SDNode *Op, SDValue N, 139 bool SelectAddrMode2OffsetImm(SDNode *Op, SDValue N, 141 bool SelectAddrMode2OffsetImmPre(SDNode *Op, SDValue N, 146 bool SelectAddrMode3Offset(SDNode *Op, SDValue N, 151 bool SelectAddrMode6Offset(SDNode *Op, SDValue N, SDValue &Offset); 178 bool SelectT2AddrModeImm8Offset(SDNode *Op, SDValue N, 269 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op, [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
BitcodeReader.cpp | 552 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) { 553 Op<0>() = UndefValue::get(Type::getInt32Ty(Context)); [all...] |
/external/llvm/lib/Linker/ |
IRMover.cpp | [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonVLIWPacketizer.cpp | 832 for (auto &Op : MI.operands()) { 833 if (Op.isReg() && Op.getReg() && Op.isUse() && 834 Hexagon::PredRegsRegClass.contains(Op.getReg())) 835 return Op.getReg(); [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineLoadStoreAlloca.cpp | 453 /// be a semantic no-op which just allows loads to more closely model the types 790 Value *Op = LI.getOperand(0); 798 Op, DL.getPrefTypeAlignment(LI.getType()), DL, &LI, AC, DT); 809 if (Instruction *NewGEPI = replaceGEPIdxWithZero(*this, Op, LI)) { [all...] |
/external/vixl/src/aarch64/ |
simulator-aarch64.cc | 1302 LoadStoreOp op = static_cast<LoadStoreOp>(instr->Mask(LoadStoreMask)); local 1437 LoadStorePairOp op = local 1557 LoadStoreExclusive op = local 4395 NEONModifiedImmediateOp op; local [all...] |
/external/llvm/include/llvm/IR/ |
DebugInfoMetadata.h | [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/ |
rulegen.go | 42 // opcode ::= one of the opcodes from ../op.go (without the Op prefix) 126 // Do fancier value op matching. 128 op, oparch, _, _, _, _ := parseValue(match, arch, loc) 129 opname := fmt.Sprintf("Op%s%s", oparch, op.name) 144 for op := range oprules { 145 ops = append(ops, op) 158 // Main rewrite routine is a switch on v.Op. 160 fmt.Fprintf(w, "switch v.Op {\n" [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/ |
rulegen.go | 42 // opcode ::= one of the opcodes from ../op.go (without the Op prefix) 126 // Do fancier value op matching. 128 op, oparch, _, _, _, _ := parseValue(match, arch, loc) 129 opname := fmt.Sprintf("Op%s%s", oparch, op.name) 144 for op := range oprules { 145 ops = append(ops, op) 158 // Main rewrite routine is a switch on v.Op. 160 fmt.Fprintf(w, "switch v.Op {\n" [all...] |
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
toy.cpp | 178 char Op; 182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, 184 : Op(Op), LHS(std::move(LHS)), RHS(std::move(RHS)) {} 245 unsigned Precedence; // Precedence if a binary op. 751 if (Op == '=') { 778 switch (Op) { 795 Function *F = getFunction(std::string("binary") + Op); [all...] |
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
toy.cpp | 178 char Op; 182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, 184 : Op(Op), LHS(std::move(LHS)), RHS(std::move(RHS)) {} 245 unsigned Precedence; // Precedence if a binary op. 751 if (Op == '=') { 778 switch (Op) { 795 Function *F = getFunction(std::string("binary") + Op); [all...] |
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
toy.cpp | 178 char Op; 182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, 184 : Op(Op), LHS(std::move(LHS)), RHS(std::move(RHS)) {} 245 unsigned Precedence; // Precedence if a binary op. 751 if (Op == '=') { 778 switch (Op) { 795 Function *F = getFunction(std::string("binary") + Op); [all...] |
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
toy.cpp | 179 char Op; 183 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, 185 : Op(Op), LHS(std::move(LHS)), RHS(std::move(RHS)) {} 246 unsigned Precedence; // Precedence if a binary op. 740 if (Op == '=') { 767 switch (Op) { 784 Function *F = getFunction(std::string("binary") + Op); [all...] |