Searched defs:Ops (Results 1 - 25 of 206) sorted by relevance

123456789

/external/llvm/include/llvm/IR/
H A DConstant.h47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
48 : User(ty, vty, Ops, NumOps) {}
H A DGlobalObject.h31 GlobalObject(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps, argument
34 : GlobalValue(Ty, VTy, Ops, NumOps, Linkage, Name, AddressSpace),
H A DGlobalValue.h69 GlobalValue(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps, argument
71 : Constant(PointerType::get(Ty, AddressSpace), VTy, Ops, NumOps),
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.h28 llvm::SmallVector<uint8_t, 32> Ops; member in class:llvm::UnwindOpcodeAssembler
40 Ops.clear();
65 Ops.insert(Ops.end(), Opcodes.begin(), Opcodes.end());
75 Ops.push_back(Opcode & 0xff);
80 Ops.push_back((Opcode >> 8) & 0xff);
81 Ops.push_back(Opcode & 0xff);
86 Ops.insert(Ops.end(), Opcode, Opcode + Size);
/external/swiftshader/third_party/LLVM/include/llvm/
H A DConstant.h46 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
47 : User(ty, vty, Ops, NumOps) {}
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DConstant.h46 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
47 : User(ty, vty, Ops, NumOps) {}
H A DGlobalObject.h32 GlobalObject(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps, argument
35 : GlobalValue(Ty, VTy, Ops, NumOps, Linkage, Name, AddressSpace),
H A DGlobalValue.h77 GlobalValue(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps, argument
79 : Constant(PointerType::get(Ty, AddressSpace), VTy, Ops, NumOps),
/external/skia/src/gpu/effects/
H A DGrNonlinearColorSpaceXformEffect.h41 enum Ops { enum in class:GrNonlinearColorSpaceXformEffect
/external/llvm/lib/IR/
H A DLLVMContextImpl.cpp194 unsigned MDNodeOpsKey::calculateHash(ArrayRef<Metadata *> Ops) { argument
195 return hash_combine_range(Ops.begin(), Ops.end());
H A DProfileSummary.cpp32 Metadata *Ops[2] = {MDString::get(Context, Key), local
34 return MDTuple::get(Context, Ops);
41 Metadata *Ops[2] = {MDString::get(Context, Key), MDString::get(Context, Val)}; local
42 return MDTuple::get(Context, Ops);
61 Metadata *Ops[2] = {MDString::get(Context, "DetailedSummary"), local
63 return MDTuple::get(Context, Ops);
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DLowerExpectIntrinsic.cpp113 Value *Ops[] = { local
119 MDNode *WeightsNode = MDNode::get(Context, Ops);
/external/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.cpp89 SmallVector<StringRef, 5> Ops; local
90 if (!GenericRegPattern.match(UpperName, &Ops))
95 Ops[1].getAsInteger(10, Op0);
96 Ops[2].getAsInteger(10, Op1);
97 Ops[3].getAsInteger(10, CRn);
98 Ops[4].getAsInteger(10, CRm);
99 Ops[5].getAsInteger(10, Op2);
/external/llvm/lib/Target/AMDGPU/
H A DGCNHazardRecognizer.cpp134 static void addRegsToSet(iterator_range<MachineInstr::const_mop_iterator> Ops, argument
136 for (const MachineOperand &Op : Ops) {
H A DR600Packetizer.cpp133 unsigned Ops[] = { local
139 int OperandIdx = TII->getOperandIdx(MI.getOpcode(), Ops[i]);
/external/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp36 Metadata *Ops[] = {nullptr}; local
37 auto T = MDTuple::getTemporary(Context, Ops);
38 Ops[0] = T.get();
39 U0 = MDTuple::get(Context, Ops);
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVInstruction.cpp118 SPIRVInstruction::getOperandTypes(const std::vector<SPIRVValue *> &Ops) { argument
120 for (auto& I : Ops) {
210 auto Ops = Inst->getIds(Inst->getOperands()); local
211 Ops.insert(Ops.begin(), OC);
214 Inst->getId(), Ops, nullptr, Inst->getModule()));
221 auto Ops = Inst->getOpWords(); local
222 auto OC = static_cast<Op>(Ops[0]);
225 Ops.erase(Ops
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DProcessImplicitDefs.cpp252 SmallVector<unsigned, 4> Ops; local
256 Ops.push_back(j);
262 for (unsigned j = 0, ee = Ops.size(); j != ee; ++j) {
263 unsigned OpIdx = Ops[j];
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeISelDAGToDAG.cpp238 SDValue Ops[] = { Callee, GPReg, Chain }; local
240 MVT::i32, MVT::Other, Ops, 3), 0);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DIRBuilder.cpp55 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops, argument
57 CallInst *CI = CallInst::Create(Callee, Ops, "");
67 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) }; local
72 CallInst *CI = createCallHelper(TheFn, Ops, this);
87 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) }; local
92 CallInst *CI = createCallHelper(TheFn, Ops, this);
107 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) }; local
112 CallInst *CI = createCallHelper(TheFn, Ops, this);
130 Value *Ops[] = { Size, Ptr }; local
133 return createCallHelper(TheFn, Ops, thi
145 Value *Ops[] = { Size, Ptr }; local
[all...]
H A DInstruction.cpp23 Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, argument
25 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
37 Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, argument
39 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
/external/llvm/lib/Analysis/
H A DTypeBasedAliasAnalysis.cpp453 Metadata *Ops[3] = {Ret, Ret, local
455 return MDNode::get(A->getContext(), Ops);
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp477 Value *Ops[3]; local
478 Ops[0] = CI->getArgOperand(0);
479 Ops[1] = CI->getArgOperand(1);
480 Ops[2] = Size;
481 ReplaceCallWith("memcpy", CI, Ops, Ops+3, CI->getArgOperand(0)->getType());
488 Value *Ops[3]; local
489 Ops[0] = CI->getArgOperand(0);
490 Ops[1] = CI->getArgOperand(1);
491 Ops[
500 Value *Ops[3]; local
[all...]
H A DLiveRangeEdit.cpp204 SmallVector<unsigned, 8> Ops; local
205 if (UseMI->readsWritesVirtualRegister(LI->reg, &Ops).second)
208 MachineInstr *FoldMI = TII.foldMemoryOperand(*UseMI, Ops, *DefMI, &LIS);
H A DMachineInstrBundle.cpp266 SmallVectorImpl<std::pair<MachineInstr*, unsigned> > *Ops) {
274 if (Ops)
275 Ops->push_back(std::make_pair(MO.getParent(), getOperandNo()));
265 analyzeVirtReg(unsigned Reg, SmallVectorImpl<std::pair<MachineInstr*, unsigned> > *Ops) argument

Completed in 3327 milliseconds

123456789