Searched refs:Ty (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.h84 Constant *getConstantFwdRef(unsigned Idx, Type *Ty);
85 Value *getValueFwdRef(unsigned Idx, Type *Ty);
227 Value *getFnValueByID(unsigned ID, Type *Ty) {
228 if (Ty && Ty->isMetadataTy())
230 return ValueList.getValueFwdRef(ID, Ty);
263 Type *Ty, Value *&ResVal) {
266 ResVal = getFnValueByID(ValNo, Ty);
H A DBitcodeReader.cpp123 static int GetDecodedBinaryOpcode(unsigned Val, Type *Ty) { argument
127 return Ty->isFPOrFPVectorTy() ? Instruction::FAdd : Instruction::Add;
129 return Ty->isFPOrFPVectorTy() ? Instruction::FSub : Instruction::Sub;
131 return Ty->isFPOrFPVectorTy() ? Instruction::FMul : Instruction::Mul;
134 return Ty->isFPOrFPVectorTy() ? Instruction::FDiv : Instruction::SDiv;
137 return Ty->isFPOrFPVectorTy() ? Instruction::FRem : Instruction::SRem;
158 explicit ConstantPlaceHolder(Type *Ty, LLVMContext& Context) argument
159 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
214 Type *Ty) {
219 assert(Ty
213 getConstantFwdRef(unsigned Idx, Type *Ty) argument
229 getValueFwdRef(unsigned Idx, Type *Ty) argument
1094 Type *Ty = getTypeByID(Record[i]); local
2553 PointerType *Ty = local
2586 PointerType *Ty = local
[all...]
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp318 void ValueEnumerator::EnumerateType(Type *Ty) { argument
319 unsigned *TypeID = &TypeMap[Ty];
328 if (StructType *STy = dyn_cast<StructType>(Ty))
334 for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
339 TypeID = &TypeMap[Ty];
350 Types.push_back(Ty);
H A DBitcodeWriter.cpp861 Type *Ty = CFP->getType(); local
862 if (Ty->isFloatTy() || Ty->isDoubleTy()) {
864 } else if (Ty->isX86_FP80Ty()) {
871 } else if (Ty->isFP128Ty() || Ty->isPPC_FP128Ty()) {
/frameworks/compile/libbcc/lib/CodeGen/
H A DCodeEmitter.cpp170 llvm::Type *Ty = CPE.getType(); local
171 Size += mpTD->getTypeAllocSize(Ty);
595 // Stores the data in @Val of type @Ty at address @Addr.
598 llvm::Type *Ty) {
599 const unsigned int StoreBytes = mpTD->getTypeStoreSize(Ty);
601 switch (Ty->getTypeID()) {
769 llvm::Type *Ty = CPE.Val.ConstVal->getType(); local
770 Offset += mpTD->getTypeAllocSize(Ty);
596 StoreValueToMemory(const llvm::GenericValue &Val, void *Addr, llvm::Type *Ty) argument
H A DCodeEmitter.h276 // Stores the data in @Val of type @Ty at address @Addr.
278 llvm::Type *Ty);

Completed in 98 milliseconds