Searched refs:refs (Results 1 - 10 of 10) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/compiler/scripts/ |
H A D | signatures.rb | 28 refs = Hash.new() 35 refs[define.ref] = define.name 40 refs[package.ref] = package.name 44 refs[primitive.ref] = primitive.name 49 refs[typedescriptor.ref] = typedescriptor.name 54 sig = "%s.%s" % [refs[builtin.package], builtin.name] 55 refs[builtin.ref] = sig 60 method_name = signature.method_name.start_with?('$') ? refs[signature.method_name[1..-1]] : signature.method_name 61 sig = "%s.%s:" % [refs[signature.callee], method_name] 64 sig += "%s;" % [refs[para [all...] |
/arkcompiler/runtime_core/static_core/runtime/mem/refstorage/ |
H A D | ref_block.cpp | 101 PandaVector<Reference *> refs; in GetAllReferencesInFrame() local 109 refs.push_back(currentRef); in GetAllReferencesInFrame() 113 return refs; in GetAllReferencesInFrame() 150 auto refs = GetAllReferencesInFrame(); in PrintBlock() local 151 for (const auto &ref : refs) { in PrintBlock()
|
H A D | reference_storage.cpp | 266 // We should add a log which refs are deleted under debug in PopLocalFrame() 319 const PandaVector<mem::Reference *> &refs = lastBlock->GetAllReferencesInFrame(); in GetAllObjects() local 320 for (const auto &ref : refs) { in GetAllObjects() 348 auto refs = lastBlock->GetAllReferencesInFrame(); in DumpLocalRefClasses() local 349 for (const auto &ref : refs) { in DumpLocalRefClasses() 378 auto refs = frame->GetAllReferencesInFrame(); in DumpLocalRef() local 379 for (const auto &ref : refs) { in DumpLocalRef() 422 auto refs = lastBlock->GetAllReferencesInFrame(); in RemoveAllLocalRefs() local 423 for (const auto &ref : refs) { in RemoveAllLocalRefs()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
H A D | ref_cache_builder.h | 31 RefCacheBuilder(G1GC<LanguageConfig> *gc, PandaList<RefVector *> *refs, size_t regionSizeBits, in RefCacheBuilder() argument 33 : gc_(gc), refs_(refs), regionSizeBits_(regionSizeBits), objectsStack_(objectsStack) in RefCacheBuilder()
|
/arkcompiler/runtime_core/static_core/static_linker/ |
H A D | linker_context_misc.cpp | 77 auto refs = p->GetRefTypes(); in ReprMethod() local 79 auto reprType = [&typs, &refs, &numRefs, &o](size_t ii) { in ReprMethod() 84 ReprItem(o, refs[numRefs++]); in ReprMethod()
|
H A D | linker_context.cpp | 595 auto &refs = p->GetRefTypes(); in GetProto() local 609 ASSERT(numRefs < refs.size()); in GetProto() 610 ti = TypeFromOld(refs[numRefs++]); in GetProto() 622 ASSERT(numRefs == refs.size()); in GetProto()
|
/arkcompiler/runtime_core/static_core/irtoc/lang/ |
H A D | function.rb | 64 attr_reader :refs, :name 70 @refs = [] 350 label.refs.each { |bb| bb.set_true_succ(@current_block) } 362 label.refs << @current_block 366 label.refs << @current_block
|
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ |
H A D | gc_intrusion.h | 81 void RewriteWithGc(llvm::CallInst *call, GcRefLiveness *liveness, llvm::SetVector<llvm::Value *> *refs,
|
H A D | gc_intrusion.cpp | 475 void GcIntrusion::RewriteWithGc(CallInst *call, GcRefLiveness *liveness, SetVector<Value *> *refs, in RewriteWithGc() argument 481 std::vector<Value *> gced(refs->begin(), refs->end()); in RewriteWithGc()
|
/arkcompiler/ets_frontend/ets2panda/checker/ets/ |
H A D | assignAnalyzer.cpp | 79 std::tuple<Ts &...> refs; member 82 explicit ScopeGuard(Ts &...ts) : values(ts...), refs(ts...) {} in ScopeGuard() 85 refs = values; in ~ScopeGuard()
|
Completed in 8 milliseconds