Searched refs:Ty (Results 1 - 11 of 11) 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);
237 Value *getFnValueByID(unsigned ID, Type *Ty) {
238 if (Ty && Ty->isMetadataTy())
240 return ValueList.getValueFwdRef(ID, Ty);
273 Type *Ty, Value *&ResVal) {
276 ResVal = getFnValueByID(ValNo, Ty);
H A DBitcodeReader.cpp185 static int GetDecodedBinaryOpcode(unsigned Val, Type *Ty) { argument
189 return Ty->isFPOrFPVectorTy() ? Instruction::FAdd : Instruction::Add;
191 return Ty->isFPOrFPVectorTy() ? Instruction::FSub : Instruction::Sub;
193 return Ty->isFPOrFPVectorTy() ? Instruction::FMul : Instruction::Mul;
196 return Ty->isFPOrFPVectorTy() ? Instruction::FDiv : Instruction::SDiv;
199 return Ty->isFPOrFPVectorTy() ? Instruction::FRem : Instruction::SRem;
220 explicit ConstantPlaceHolder(Type *Ty, LLVMContext& Context) argument
221 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
276 Type *Ty) {
281 assert(Ty
275 getConstantFwdRef(unsigned Idx, Type *Ty) argument
291 getValueFwdRef(unsigned Idx, Type *Ty) argument
1129 Type *Ty = getTypeByID(Record[i]); local
2637 PointerType *Ty = local
2670 PointerType *Ty = local
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.h84 Constant *getConstantFwdRef(unsigned Idx, Type *Ty);
85 Value *getValueFwdRef(unsigned Idx, Type *Ty);
231 Value *getFnValueByID(unsigned ID, Type *Ty) {
232 if (Ty && Ty->isMetadataTy())
234 return ValueList.getValueFwdRef(ID, Ty);
267 Type *Ty, Value *&ResVal) {
270 ResVal = getFnValueByID(ValNo, Ty);
H A DBitcodeReader.cpp427 static int GetDecodedBinaryOpcode(unsigned Val, Type *Ty) { argument
431 return Ty->isFPOrFPVectorTy() ? Instruction::FAdd : Instruction::Add;
433 return Ty->isFPOrFPVectorTy() ? Instruction::FSub : Instruction::Sub;
435 return Ty->isFPOrFPVectorTy() ? Instruction::FMul : Instruction::Mul;
438 return Ty->isFPOrFPVectorTy() ? Instruction::FDiv : Instruction::SDiv;
441 return Ty->isFPOrFPVectorTy() ? Instruction::FRem : Instruction::SRem;
500 explicit ConstantPlaceHolder(Type *Ty, LLVMContext& Context) argument
501 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
556 Type *Ty) {
561 assert(Ty
555 getConstantFwdRef(unsigned Idx, Type *Ty) argument
571 getValueFwdRef(unsigned Idx, Type *Ty) argument
1431 Type *Ty = getTypeByID(Record[i]); local
[all...]
/frameworks/compile/slang/
H A Dslang_rs_check_ast.cpp57 const clang::Type *Ty; local
60 Ty = ImplCast->getSubExpr()->getType()->getPointeeType()
62 VectorTy = clang::dyn_cast_or_null<clang::VectorType>(Ty);
69 Ty->getUnqualifiedDesugaredType());
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp365 void ValueEnumerator::EnumerateType(Type *Ty) { argument
366 unsigned *TypeID = &TypeMap[Ty];
375 if (StructType *STy = dyn_cast<StructType>(Ty))
381 for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
386 TypeID = &TypeMap[Ty];
397 Types.push_back(Ty);
H A DBitcodeWriter.cpp856 Type *Ty = CFP->getType(); local
857 if (Ty->isFloatTy() || Ty->isDoubleTy()) {
859 } else if (Ty->isX86_FP80Ty()) {
866 } else if (Ty->isFP128Ty() || Ty->isPPC_FP128Ty()) {
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.cpp365 void ValueEnumerator::EnumerateType(Type *Ty) { argument
366 unsigned *TypeID = &TypeMap[Ty];
375 if (StructType *STy = dyn_cast<StructType>(Ty))
381 for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
386 TypeID = &TypeMap[Ty];
397 Types.push_back(Ty);
H A DBitcodeWriter.cpp810 Type *Ty = CFP->getType(); local
811 if (Ty->isFloatTy() || Ty->isDoubleTy()) {
813 } else if (Ty->isX86_FP80Ty()) {
820 } else if (Ty->isFP128Ty() || Ty->isPPC_FP128Ty()) {
/frameworks/compile/slang/BitWriter_3_2/
H A DValueEnumerator.cpp355 void ValueEnumerator::EnumerateType(Type *Ty) { argument
356 unsigned *TypeID = &TypeMap[Ty];
365 if (StructType *STy = dyn_cast<StructType>(Ty))
371 for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
376 TypeID = &TypeMap[Ty];
387 Types.push_back(Ty);
H A DBitcodeWriter.cpp857 Type *Ty = CFP->getType(); local
858 if (Ty->isHalfTy() || Ty->isFloatTy() || Ty->isDoubleTy()) {
860 } else if (Ty->isX86_FP80Ty()) {
867 } else if (Ty->isFP128Ty() || Ty->isPPC_FP128Ty()) {

Completed in 2350 milliseconds