Searched refs:value_type (Results 26 - 33 of 33) sorted by relevance

12

/art/compiler/optimizing/
H A Dcode_generator_arm64.cc2128 Primitive::Type value_type = instruction->GetComponentType(); local
2132 kEmitCompilerReadBarrier && (value_type == Primitive::kPrimNot);
2140 if (Primitive::IsFloatingPointType(value_type)) {
2148 Primitive::Type value_type = instruction->GetComponentType(); local
2152 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
2158 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(value_type)).Uint32Value();
2166 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(value_type);
2189 Primitive::ComponentSizeShift(value_type));
2191 codegen_->Store(value_type, value, destination);
2204 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(value_type);
[all...]
H A Dcode_generator_mips64.cc1461 Primitive::Type value_type = instruction->GetComponentType(); local
1464 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
1466 switch (value_type) {
1515 DCHECK_EQ(value_type, Primitive::kPrimNot);
1519 DCHECK_EQ(value_type, Primitive::kPrimNot);
1582 if (value_type != Primitive::kPrimInt && value_type != Primitive::kPrimNot) {
H A Dnodes.h2073 typename BitFieldType::value_type GetPackedField() const {
2078 void SetPackedField(typename BitFieldType::value_type value) {
5207 Primitive::Type value_type = GetValue()->GetType(); local
5208 return ((value_type == Primitive::kPrimFloat) || (value_type == Primitive::kPrimDouble))
5209 ? value_type
5217 static SideEffects SideEffectsForArchRuntimeCalls(Primitive::Type value_type) { argument
5218 return (value_type == Primitive::kPrimNot) ? SideEffects::CanTriggerGC() : SideEffects::None();
H A Dcode_generator_mips.cc1838 Primitive::Type value_type = instruction->GetComponentType(); local
1841 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
1843 switch (value_type) {
1892 DCHECK_EQ(value_type, Primitive::kPrimNot);
1896 DCHECK_EQ(value_type, Primitive::kPrimNot);
1960 if (value_type != Primitive::kPrimInt && value_type != Primitive::kPrimNot) {
H A Dcode_generator_arm.cc4451 Primitive::Type value_type = instruction->GetComponentType(); local
4454 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
4457 kEmitCompilerReadBarrier && (value_type == Primitive::kPrimNot);
4467 if (Primitive::IsFloatingPointType(value_type)) {
4484 Primitive::Type value_type = instruction->GetComponentType(); local
4487 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
4489 switch (value_type) {
4636 DCHECK_EQ(value_type, Primitive::kPrimNot);
4728 LOG(FATAL) << "Unreachable type " << value_type;
4733 if (value_type !
[all...]
H A Dcode_generator_x86.cc5201 Primitive::Type value_type = instruction->GetComponentType(); local
5204 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
5207 kEmitCompilerReadBarrier && (value_type == Primitive::kPrimNot);
5215 bool is_byte_type = (value_type == Primitive::kPrimBoolean)
5216 || (value_type == Primitive::kPrimByte);
5225 } else if (Primitive::IsFloatingPointType(value_type)) {
5244 Primitive::Type value_type = instruction->GetComponentType(); local
5250 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
5252 switch (value_type) {
H A Dcode_generator_x86_64.cc4695 Primitive::Type value_type = instruction->GetComponentType(); local
4698 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
4701 kEmitCompilerReadBarrier && (value_type == Primitive::kPrimNot);
4711 if (Primitive::IsFloatingPointType(value_type)) {
4733 Primitive::Type value_type = instruction->GetComponentType(); local
4736 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
4741 switch (value_type) {
/art/runtime/
H A Ddex_file_verifier.cc604 uint32_t value_type = header_byte & DexFile::kDexAnnotationValueTypeMask; local
607 switch (value_type) {
711 ErrorStringPrintf("Bogus encoded_value value_type %x", value_type);

Completed in 215 milliseconds

12