Searched refs:getInt32Ty (Results 1 - 25 of 90) sorted by relevance

1234

/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DDIBuilder.cpp29 return ConstantInt::get(Type::getInt32Ty(VMContext), Tag | LLVMDebugVersion);
112 ConstantInt::get(Type::getInt32Ty(VMContext), Lang),
116 ConstantInt::get(Type::getInt32Ty(VMContext), RunTimeVer),
138 ConstantInt::get(Type::getInt32Ty(VMContext), Line),
177 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
181 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Flags;
182 ConstantInt::get(Type::getInt32Ty(VMContext), 0) // Encoding
200 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
204 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Flags;
205 ConstantInt::get(Type::getInt32Ty(VMContex
[all...]
H A DValueTypes.cpp184 case MVT::i32: return Type::getInt32Ty(Context);
212 case MVT::v1i32: return VectorType::get(Type::getInt32Ty(Context), 1);
213 case MVT::v2i32: return VectorType::get(Type::getInt32Ty(Context), 2);
214 case MVT::v4i32: return VectorType::get(Type::getInt32Ty(Context), 4);
215 case MVT::v8i32: return VectorType::get(Type::getInt32Ty(Context), 8);
216 case MVT::v16i32: return VectorType::get(Type::getInt32Ty(Context), 16);
H A DModule.cpp364 Type *Int32Ty = Type::getInt32Ty(Context);
372 Type *Int32Ty = Type::getInt32Ty(Context);
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DProfilingUtils.cpp33 Constant *InitFn = M.getOrInsertFunction(FnName, Type::getInt32Ty(Context),
34 Type::getInt32Ty(Context),
36 Type::getInt32Ty(Context),
42 Args[0] = Constant::getNullValue(Type::getInt32Ty(Context));
51 Constant::getNullValue(Type::getInt32Ty(Context)));
62 Args[3] = ConstantInt::get(Type::getInt32Ty(Context), NumElements);
94 Type::getInt32Ty(Context), true);
96 CastInst::Create(opcode, AI, Type::getInt32Ty(Context),
119 Indices[0] = Constant::getNullValue(Type::getInt32Ty(Context));
120 Indices[1] = ConstantInt::get(Type::getInt32Ty(Contex
[all...]
H A DEdgeProfiling.cpp77 Type *ATy = ArrayType::get(Type::getInt32Ty(M.getContext()), NumEdges);
H A DPathProfiling.cpp936 PHINode* phi = PHINode::Create(Type::getInt32Ty(*Context),
1028 gepIndices[0] = Constant::getNullValue(Type::getInt32Ty(*Context));
1058 args[0] = ConstantInt::get(Type::getInt32Ty(*Context),
1291 Type* t = ArrayType::get(Type::getInt32Ty(*Context),
1356 Type::getInt32Ty(*Context), // function number
1357 Type::getInt32Ty(*Context), // path number
1363 Type::getInt32Ty(*Context), // function number
1364 Type::getInt32Ty(*Context), // path number
H A DGCOVProfiling.cpp653 Type *Int32Ty = Type::getInt32Ty(*Ctx);
665 Type::getInt32Ty(*Ctx), // uint32_t ident
675 Type::getInt32Ty(*Ctx), // uint32_t num_counters
700 GV = new GlobalVariable(*M, Type::getInt32Ty(*Ctx), false,
702 ConstantInt::get(Type::getInt32Ty(*Ctx),
H A DThreadSanitizer.cpp150 OrdTy = IRB.getInt32Ty();
222 "memset", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IRB.getInt32Ty(),
475 IRB.CreateIntCast(M->getArgOperand(1), IRB.getInt32Ty(), false),
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DShadowStackGC.cpp146 Type::getInt32Ty(C), NULL);
150 FunctionType::get(Type::getInt32Ty(C), true));
217 Type *Int32Ty = Type::getInt32Ty(F.getContext());
252 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
253 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0)
278 EltTys.push_back(Type::getInt32Ty(M.getContext()));
280 EltTys.push_back(Type::getInt32Ty(M.getContext()));
351 Value *Indices[] = { ConstantInt::get(Type::getInt32Ty(Context), 0),
352 ConstantInt::get(Type::getInt32Ty(Context), Idx),
353 ConstantInt::get(Type::getInt32Ty(Contex
[all...]
H A DIntrinsicLowering.cpp103 Type::getInt32Ty(M.getContext()));
131 Type::getInt32Ty(M.getContext()),
193 ConstantInt::get(Type::getInt32Ty(Context), 0xFF0000),
196 ConstantInt::get(Type::getInt32Ty(Context), 0xFF00),
369 Type::getInt32Ty(Context));
495 Type::getInt32Ty(Context),
H A DSjLjEHPrepare.cpp94 Type *Int32Ty = Type::getInt32Ty(M.getContext());
130 Type *Int32Ty = Type::getInt32Ty(I->getContext());
137 ConstantInt *CallSiteNoC = ConstantInt::get(Type::getInt32Ty(I->getContext()),
446 ConstantInt::get(Type::getInt32Ty(F.getContext()), I + 1);
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DThumb2RegisterInfo.cpp45 Type::getInt32Ty(MBB.getParent()->getFunction()->getContext()), Val);
H A DARMInstrInfo.cpp110 GlobalValue *GV = new GlobalVariable(Type::getInt32Ty(*Context), false,
H A DARMConstantPoolValue.cpp43 : MachineConstantPoolValue((Type*)Type::getInt32Ty(C)),
135 return new ARMConstantPoolConstant((Type*)Type::getInt32Ty(GV->getContext()),
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DReg2Mem.cpp86 new BitCastInst(Constant::getNullValue(Type::getInt32Ty(F.getContext())),
87 Type::getInt32Ty(F.getContext()),
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp273 Type *Int32Ty = Type::getInt32Ty(EI.getContext());
302 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
308 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()), i));
314 Mask.push_back(ConstantInt::get(Type::getInt32Ty(V->getContext()),
334 Mask[InsertedIdx] = UndefValue::get(Type::getInt32Ty(V->getContext()));
351 ConstantInt::get(Type::getInt32Ty(V->getContext()),
356 ConstantInt::get(Type::getInt32Ty(V->getContext()),
381 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
386 Mask.assign(NumElts, ConstantInt::get(Type::getInt32Ty(V->getContext()),0));
409 ConstantInt::get(Type::getInt32Ty(
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp27 IRB.getInt32Ty(), PointerType::getUnqual(FnTy), NULL);
H A DLowerInvoke.cpp205 ConstantInt *InvokeNoC = ConstantInt::get(Type::getInt32Ty(II->getContext()),
230 new StoreInst(Constant::getNullValue(Type::getInt32Ty(II->getContext())),
438 Value *Idx[] = { Constant::getNullValue(Type::getInt32Ty(F.getContext())),
439 ConstantInt::get(Type::getInt32Ty(F.getContext()), 1) };
464 AllocaInst *InvokeNum = new AllocaInst(Type::getInt32Ty(F.getContext()), 0,
466 new StoreInst(ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
486 Idx[1] = ConstantInt::get(Type::getInt32Ty(F.getContext()), 0);
539 Value *Idx[] = { Constant::getNullValue(Type::getInt32Ty(F.getContext())),
540 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0) };
545 Idx[1] = ConstantInt::get(Type::getInt32Ty(
[all...]
H A DBuildLibCalls.cpp106 Type *I32Ty = B.getInt32Ty();
137 B.getInt32Ty(),
247 B.getInt32Ty(),
276 B.getInt32Ty(),
325 Value *PutChar = M->getOrInsertFunction("putchar", B.getInt32Ty(),
326 B.getInt32Ty(), NULL);
329 B.getInt32Ty(),
354 B.getInt32Ty(),
379 B.getInt32Ty(),
380 B.getInt32Ty(), Fil
[all...]
H A DCodeExtractor.cpp363 Idx[0] = Constant::getNullValue(Type::getInt32Ty(header->getContext()));
364 Idx[1] = ConstantInt::get(Type::getInt32Ty(header->getContext()), i);
466 Idx[0] = Constant::getNullValue(Type::getInt32Ty(Context));
467 Idx[1] = ConstantInt::get(Type::getInt32Ty(Context), i);
492 Idx[0] = Constant::getNullValue(Type::getInt32Ty(Context));
493 Idx[1] = ConstantInt::get(Type::getInt32Ty(Context), FirstOut + i);
606 Idx[0] = Constant::getNullValue(Type::getInt32Ty(Context));
607 Idx[1] = ConstantInt::get(Type::getInt32Ty(Context),
H A DIntegerDivision.cpp132 IntegerType *I32Ty = Builder.getInt32Ty();
454 Type *Int32Ty = Builder.getInt32Ty();
506 Type *Int32Ty = Builder.getInt32Ty();
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp2247 Mask[v+MaskOffset] = UndefValue::get(Type::getInt32Ty(Context));
2254 ConstantInt::get(Type::getInt32Ty(Context), mm);
2327 ConstantInt::get(Type::getInt32Ty(Context),
2347 Value *CV0 = ConstantInt::get(Type::getInt32Ty(Context), 0);
2348 Value *CV1 = ConstantInt::get(Type::getInt32Ty(Context), 1);
2501 Mask[i] = UndefValue::get(Type::getInt32Ty(Context));
2503 Mask[i] = ConstantInt::get(Type::getInt32Ty(Context), Idx);
2525 Mask[v] = ConstantInt::get(Type::getInt32Ty(Context), v);
2527 Mask[v] = UndefValue::get(Type::getInt32Ty(Context));
2542 Mask[v] = ConstantInt::get(Type::getInt32Ty(Contex
[all...]
/freebsd-10.0-release/contrib/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp102 ArgsTy.push_back(PointerType::get(IntegerType::getInt32Ty(Context), 0));
104 ArgsTy.push_back(IntegerType::getInt32Ty(Context));
258 case 11: t = Type::getInt32Ty(Context); break;
422 ConstantInt::get(Type::getInt32Ty(BB->getContext()),
439 Type *I32 = Type::getInt32Ty(BB->getContext());
465 ConstantInt::get(Type::getInt32Ty(BB->getContext()),
/freebsd-10.0-release/contrib/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp666 ConstantInt::get(Type::getInt32Ty(F->getContext()), 0), 0 };
668 Idxs[1] = ConstantInt::get(Type::getInt32Ty(F->getContext()), i);
693 Type::getInt32Ty(F->getContext()) :
797 ConstantInt::get(Type::getInt32Ty(F->getContext()), 0), 0 };
800 Idxs[1] = ConstantInt::get(Type::getInt32Ty(F->getContext()), i);
/freebsd-10.0-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp273 Value *Idx = ConstantInt::get(Type::getInt32Ty(M->getContext()), i);
416 ConstantInt::get(Type::getInt32Ty(M->getContext()),

Completed in 307 milliseconds

1234