Home
last modified time | relevance | path

Searched refs:getType (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Delf.h1404 unsigned char getType() const { return st_info & 0x0f; } in getType() function
1405 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()
1428 unsigned char getType() const { return st_info & 0x0f; } in getType() function
1429 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()
1489 unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); } in getType() function
1490 void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); } in setSymbol()
1506 unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); } in getType() function
1507 void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); } in setSymbol()
1522 Elf64_Word getType() const { in getType() function
1525 void setSymbol(Elf64_Word s) { setSymbolAndType(s, getType()); } in setSymbol()
[all …]
/art/compiler/llvm/
Druntime_support_builder_arm.cc88 /*Params=*/value->getType(), in EmitStoreToThreadOffset()
91 LDRSTRSuffixByType(irb_, value->getType()), in EmitStoreToThreadOffset()
Druntime_support_builder_x86.cc69 /*Params=*/value->getType(), in EmitStoreToThreadOffset()
Dintrinsic_helper.cc157 if (arg_iter->getType()->isPointerTy()) { in IntrinsicHelper()
Dir_builder.h261 new_value->getType()->getPointerTo()); in StoreToObjectOffset()
276 new_value->getType()->getPointerTo()); in CompareExchangeObjectOffset()
Dgbc_expander.cc569 handler_phi[phi] = llvm::PHINode::Create(phi->getType(), 1); in RewriteFunction()
573 llvm::PHINode* new_phi = irb_.CreatePHI(phi->getType(), rewrite_pair.size()); in RewriteFunction()
892 llvm::Type* func_type = GetFunctionType(call_inst.getType(), in EmitInvoke()
1223 llvm::Type* ret_type = call_inst.getType(); in Expand_Invoke()
1230 args_type.push_back(args[i]->getType()); in Expand_Invoke()
1377 irb_.CreateBitCast(vreg_addr, value->getType()->getPointerTo()), in Expand_SetVReg()
/art/compiler/jni/portable/
Djni_compiler.cc108 if (arg_iter->getType() == irb_.getJObjectTy()) { in Compile()
167 if (arg_iter->getType() == irb_.getJObjectTy()) { in Compile()
/art/compiler/dex/portable/
Dmir_to_gbc.cc316 DCHECK_EQ(src1->getType(), src2->getType()); in ConvertCompare()
449 DCHECK_EQ(src1->getType(), src2->getType()); in ConvertArithOp()
/art/test/046-reflect/src/
DMain.java57 System.out.println(" Field type is " + field.getType().getName()); in printFieldInfo()