Searched defs:new_type (Results 1 - 4 of 4) sorted by relevance

/art/compiler/sea_ir/types/
H A Dtype_inference.cc157 const Type* new_type = tiv.GetType(); local
158 type_data_.SetTypeOf(-1, new_type); // TODO: Record this info in a way that
174 const Type* new_type = tiv.GetType(); local
175 bool type_changed = (old_type != new_type);
177 type_data_.SetTypeOf((*instruction_it)->Id(), new_type);
H A Dtype_inference_visitor_test.cc68 const Type* new_type = &type_cache.Integer(); local
69 types.push_back(new_type);
82 const Type* new_type = &type_cache.Short(); local
83 types.push_back(new_type);
/art/runtime/verifier/
H A Dregister_line.cc38 bool RegisterLine::SetRegisterType(uint32_t vdst, const RegType& new_type) { argument
40 if (new_type.IsLowHalf() || new_type.IsHighHalf()) {
42 << new_type << "'";
44 } else if (new_type.IsConflict()) { // should only be set during a merge
45 verifier_->Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Set register to unknown type " << new_type;
48 line_[vdst] = new_type.GetId();
77 void RegisterLine::SetResultRegisterType(const RegType& new_type) { argument
78 DCHECK(!new_type.IsLowHalf());
79 DCHECK(!new_type
465 const RegType& new_type = cur_type.Merge(incoming_reg_type, verifier_->GetRegTypeCache()); local
[all...]
/art/runtime/mirror/
H A Dclass.h275 void SetPrimitiveType(Primitive::Type new_type) { argument
277 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, primitive_type_), new_type, false); local

Completed in 420 milliseconds