Lines Matching refs:Ops

64   SmallVector<Metadata *, 8> Ops;  in createFunctionEntryCount()  local
66 Ops.push_back(createString("synthetic_function_entry_count")); in createFunctionEntryCount()
68 Ops.push_back(createString("function_entry_count")); in createFunctionEntryCount()
69 Ops.push_back(createConstant(ConstantInt::get(Int64Ty, Count))); in createFunctionEntryCount()
76 Ops.push_back(createConstant(ConstantInt::get(Int64Ty, ID))); in createFunctionEntryCount()
78 return MDNode::get(Context, Ops); in createFunctionEntryCount()
104 SmallVector<Metadata *, 4> Ops; in createCallees() local
106 Ops.push_back(createConstant(F)); in createCallees()
107 return MDNode::get(Context, Ops); in createCallees()
173 SmallVector<Metadata *, 4> Ops(Fields.size() * 2 + 1); in createTBAAStructTypeNode() local
175 Ops[0] = createString(Name); in createTBAAStructTypeNode()
177 Ops[i * 2 + 1] = Fields[i].first; in createTBAAStructTypeNode()
178 Ops[i * 2 + 2] = createConstant(ConstantInt::get(Int64, Fields[i].second)); in createTBAAStructTypeNode()
180 return MDNode::get(Context, Ops); in createTBAAStructTypeNode()
208 SmallVector<Metadata *, 4> Ops(3 + Fields.size() * 3); in createTBAATypeNode() local
210 Ops[0] = Parent; in createTBAATypeNode()
211 Ops[1] = createConstant(ConstantInt::get(Int64, Size)); in createTBAATypeNode()
212 Ops[2] = Id; in createTBAATypeNode()
214 Ops[I * 3 + 3] = Fields[I].Type; in createTBAATypeNode()
215 Ops[I * 3 + 4] = createConstant(ConstantInt::get(Int64, Fields[I].Offset)); in createTBAATypeNode()
216 Ops[I * 3 + 5] = createConstant(ConstantInt::get(Int64, Fields[I].Size)); in createTBAATypeNode()
218 return MDNode::get(Context, Ops); in createTBAATypeNode()