Searched refs:scope (Results 1 - 11 of 11) sorted by relevance

/art/tools/checker/match/
H A Dfile.py23 MatchInfo = namedtuple("MatchInfo", ["scope", "variables"])
33 tested in the same scope (consecutive DAG and NOT instructions).
46 def findMatchingLine(assertion, c1Pass, scope, variables, excludeLines=[]):
49 Scan only lines numbered between `scope.start` and `scope.end` and not on the
57 for i in range(scope.start, scope.end):
62 raise MatchFailedException(assertion, scope.start, variables)
64 def matchDagGroup(assertions, c1Pass, scope, variables):
68 lines in `scope` ar
[all...]
/art/runtime/
H A Dreference_table_test.cc48 StackHandleScope<3> scope(self);
49 Handle<mirror::Object> h_referent(scope.NewHandle<mirror::Object>(referent));
51 Handle<mirror::Class> h_ref_class(scope.NewHandle<mirror::Class>(
58 Handle<mirror::Object> h_ref_instance(scope.NewHandle<mirror::Object>(
H A Dcommon_throws.h199 void ThrowNoSuchFieldError(const StringPiece& scope,
H A Dcommon_throws.cc393 void ThrowNoSuchFieldError(const StringPiece& scope, ObjPtr<mirror::Class> c, argument
397 msg << "No " << scope << "field " << name << " of type " << type
H A Dthread.cc1952 StackHandleScope<1> scope(Thread::Current());
1956 exc = scope.NewHandle(GetException());
2336 // JNI code invoked from portable code uses shadow frames rather than the handle scope.
2363 // Check if this is a local reference in the handle scope.
2365 // Read from handle scope.
3489 // handle scope for JNI or References for interpreter.
/art/compiler/optimizing/
H A Doptimizing_compiler.cc322 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
581 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName,
590 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
594 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
820 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
938 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
H A Dcode_generator_arm64.cc591 EmissionCheckScope scope(codegen->GetVIXLAssembler(),
2330 // We use a block to end the scratch scope before the write barrier, thus
2664 ExactAssemblyScope scope(masm, kInstructionSize, CodeBufferCheckScope::kExactSize);
2949 // We use a block to end the scratch scope before the write barrier, thus
4482 // Use a scope to help guarantee that `RecordPcInfo()` records the correct pc.
4496 // Use a scope to help guarantee that `RecordPcInfo()` records the correct pc.
4545 // Use a scope to help guarantee that `RecordPcInfo()` records the correct pc.
/art/oatdump/
H A Doatdump.cc1347 // We need to have the handle scope stay live until after the verifier since the verifier has
3065 StackHandleScope<1> scope(soa.Self());
3066 Handle<mirror::ClassLoader> loader_handle = scope.NewHandle(
3164 StackHandleScope<1> scope(self);
3165 MutableHandle<mirror::ClassLoader> class_loader = scope.NewHandle<mirror::ClassLoader>(nullptr);
3244 StackHandleScope<1> scope(self);
3245 MutableHandle<mirror::Class> h_klass(scope.NewHandle<mirror::Class>(nullptr));
3387 StackHandleScope<1> scope(Thread::Current());
3388 Handle<mirror::Class> h_klass = scope.NewHandle<mirror::Class>(klass);
/art/runtime/gc/
H A Dheap.h354 void GetInstances(VariableSizedHandleScope& scope,
363 void GetReferringObjects(VariableSizedHandleScope& scope,
H A Dheap.cc1816 void Heap::GetInstances(VariableSizedHandleScope& scope, argument
1825 instances.push_back(scope.NewHandle(obj));
1832 void Heap::GetReferringObjects(VariableSizedHandleScope& scope, argument
1870 ReferringObjectsFinder finder(scope, o, max_count, referring_objects);
1895 // exclusive and shared lock in the same scope. Remove the assertion as a temporary workaround.
1976 // exclusive and shared lock in the same scope. Remove the assertion as a temporary workaround.
2522 // exclusive and shared lock in the same scope. Remove the assertion as a temporary workaround.
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc2005 // Under the callee saves put handle scope and new method stack reference.
2030 // Re-layout the callee-save frame (insert a handle-scope). Then add space for the cookie.
2192 // A class to fill a JNI call. Adds reference/handle-scope management to FillNativeCall.
2204 void Reset(uintptr_t* gpr_regs, uint32_t* fpr_regs, uintptr_t* stack_args, HandleScope* scope) { argument
2206 handle_scope_ = scope;
2298 // Clear out rest of the scope.
2347 * We need to fix this, as the handle scope needs to go into the callee-save frame.
2379 // FinalizeHandleScope pushes the handle scope on the thread.
2493 * Is called after the native JNI code. Responsible for cleanup (handle scope, saved state) and

Completed in 531 milliseconds