Searched refs:kind (Results 76 - 96 of 96) sorted by relevance

1234

/art/runtime/
H A Dcheck_jni.cc639 AbortF("expected reference of kind %s but found %s: %p",
734 bool CheckInstance(ScopedObjectAccess& soa, InstanceKind kind, jobject java_object, bool null_ok)
737 switch (kind) {
754 LOG(FATAL) << "Unknown kind " << static_cast<int>(kind);
794 switch (kind) {
2585 static jobject NewRef(const char* function_name, JNIEnv* env, jobject obj, IndirectRefKind kind) { argument
2591 switch (kind) {
2602 LOG(FATAL) << "Unexpected reference kind: " << kind;
2613 DeleteRef(const char* function_name, JNIEnv* env, jobject obj, IndirectRefKind kind) argument
[all...]
H A Ddebugger.h174 void SetKind(Kind kind) { argument
175 kind_ = kind;
H A Djni_internal.cc91 const char* name, const char* sig, const char* kind)
96 kind, c->GetDescriptor(&temp), name, sig);
100 const char* kind, jint idx, bool return_errors)
104 << ": " << kind << " is null at index " << idx;
106 "%s is null at index %d", kind, idx);
2310 // Do we definitely know what kind of reference this is?
2312 IndirectRefKind kind = GetIndirectRefKind(ref); local
2313 switch (kind) {
2324 LOG(FATAL) << "IndirectRefKind[" << kind << "]";
H A Dthread.cc1883 IndirectRefKind kind = GetIndirectRefKind(ref); local
1887 if (kind == kLocal) {
1891 } else if (kind == kHandleScopeOrInvalid) {
1903 } else if (kind == kGlobal) {
1906 DCHECK_EQ(kind, kWeakGlobal);
1917 ToStr<IndirectRefKind>(kind).c_str(), obj);
1925 IndirectRefKind kind = GetIndirectRefKind(ref); local
1926 CHECK_EQ(kind, kWeakGlobal);
H A Druntime.h432 int32_t GetStat(int kind);
H A Ddebugger.cc188 // We're not recorded to listen to this kind of event, so complain.
3145 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
3223 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
3300 // Returns the deoptimization kind required to set a breakpoint in a method.
3378 // must have the same deoptimization kind than the existing breakpoint(s).
4514 #define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4764 // Figure out what kind of chunks we'll be sending.
/art/compiler/optimizing/
H A Dcode_generator_mips.h222 void GenerateMemoryBarrier(MemBarrierKind kind);
347 // otherwise return a fall-back kind that should be used instead.
H A Dcode_generator_mips64.h222 void GenerateMemoryBarrier(MemBarrierKind kind);
339 // otherwise return a fall-back kind that should be used instead.
H A Dcode_generator_arm.h381 void GenerateMemoryBarrier(MemBarrierKind kind);
406 // otherwise return a fall-back kind that should be used instead.
H A Dcode_generator_x86.h390 // otherwise return a fall-back kind that should be used instead.
421 void GenerateMemoryBarrier(MemBarrierKind kind);
605 // (which shall be the sole instruction of this kind), subtracting this offset
H A Dcode_generator_x86_64.h369 void GenerateMemoryBarrier(MemBarrierKind kind);
387 // otherwise return a fall-back kind that should be used instead.
H A Dnodes.h1537 // (every type and every kind of access).
1978 // Returns whether the two instructions are of the same kind.
2737 explicit HTryBoundary(BoundaryKind kind, uint32_t dex_pc = kNoDexPc) argument
2739 SetPackedField<BoundaryKindField>(kind);
2834 TableKind kind,
2839 SetPackedField<TableKindField>(kind);
3864 // Used for JIT when we need to use the dex cache. This is also the last-resort-kind
3890 // Used when we don't know the target code. This is also the last-resort-kind used when
3939 // method load kind, we should not go back to using the current method.
4063 // Does this method load kind nee
2832 HClassTableGet(HInstruction* cls, Primitive::Type type, TableKind kind, size_t index, uint32_t dex_pc) argument
4064 NeedsCurrentMethodInput(MethodLoadKind kind) argument
[all...]
H A Dinstruction_builder.cc2562 #define ARRAY_XX(kind, anticipated_type) \
2563 case Instruction::AGET##kind: { \
2567 case Instruction::APUT##kind: { \
H A Dcode_generator_arm.cc3710 void CodeGeneratorARM::GenerateMemoryBarrier(MemBarrierKind kind) { argument
3713 switch (kind) {
3725 LOG(FATAL) << "Unexpected memory barrier " << kind;
5287 LOG(FATAL) << "Unexpected load kind: " << load->GetLoadKind();
H A Dcode_generator_x86.cc4260 void CodeGeneratorX86::GenerateMemoryBarrier(MemBarrierKind kind) { argument
4266 switch (kind) {
4278 LOG(FATAL) << "Unexpected memory barrier " << kind;
6076 LOG(FATAL) << "Unexpected load kind: " << load->GetLoadKind();
H A Dcode_generator_x86_64.cc4053 void CodeGeneratorX86_64::GenerateMemoryBarrier(MemBarrierKind kind) { argument
4059 switch (kind) {
4071 LOG(FATAL) << "Unexpected memory barier " << kind;
5498 LOG(FATAL) << "Unexpected load kind: " << load->GetLoadKind();
H A Dcode_generator_mips64.cc988 void InstructionCodeGeneratorMIPS64::GenerateMemoryBarrier(MemBarrierKind kind ATTRIBUTE_UNUSED) {
H A Dcode_generator_mips.cc1106 void InstructionCodeGeneratorMIPS::GenerateMemoryBarrier(MemBarrierKind kind ATTRIBUTE_UNUSED) {
/art/runtime/verifier/
H A Dmethod_verifier.cc184 kind = FailureKindMax(kind, fd.kind);
242 if (result.kind == kHardFailure) {
243 if (failure_data.kind == kHardFailure) {
321 if (data1.kind == kNoFailure) {
337 return data1.kind;
398 result.kind = kSoftFailure;
419 result.kind = kSoftFailure;
434 result.kind
[all...]
H A Dmethod_verifier.h320 // Verification result for method(s). Includes a (maximum) failure kind, and (the union of)
323 FailureKind kind = kNoFailure; member in struct:art::verifier::MethodVerifier::FailureData
326 // Merge src into this. Uses the most severe failure kind, and the union of types.
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DInstruction.java292 public void incrementIndex(IndexUpdateKind kind, int insertedIdx) { argument

Completed in 368 milliseconds

1234