Home
last modified time | relevance | path

Searched refs:cpool (Results 1 – 6 of 6) sorted by relevance

/external/javassist/src/main/javassist/bytecode/stackmap/
DTracer.java32 protected ConstPool cpool; field in Tracer
42 cpool = cp; in Tracer()
51 cpool = t.cpool; in Tracer()
277 int tag = cpool.getTag(index); in doLDC()
630 = new TypeData.UninitData(pos, cpool.getClassInfo(i)); in doOpcode148_201()
636 String type = cpool.getClassInfo(i).replace('.', '/'); in doOpcode148_201()
656 stackTypes[stackTop - 1] = new TypeData.ClassName(cpool.getClassInfo(i)); in doOpcode148_201()
746 String desc = cpool.getFieldrefType(index); in doPutField()
761 String desc = cpool.getFieldrefType(index); in doGetField()
768 String className = cpool.getFieldrefClassName(index); in setFieldTarget()
[all …]
DMapMaker.java261 type = cpool.getClassInfo(exceptionType); in recordStackMap()
330 return writer.toStackMapTable(cpool); in toStackMap()
376 td.getTypeData(cpool)); in toStackMapBody()
384 td.getTypeData(cpool)); in toStackMapBody()
398 ConstPool cp = cpool; in fillStackMap()
/external/javassist/src/main/javassist/bytecode/
DAnnotationsAttribute.java409 ConstPool cpool; field in AnnotationsAttribute.Renamer
423 cpool = cp; in Renamer()
445 String name = cpool.getUtf8Info(index); in renameType()
448 int index2 = cpool.addUtf8Info(newName); in renameType()
/external/pcre/dist/sljit/
DsljitNativeARM_32.c154 cpool_ptr = compiler->cpool; in push_cpool()
192 cpool_ptr = compiler->cpool; in push_inst_with_literal()
197 cpool_index = cpool_ptr - compiler->cpool; in push_inst_with_literal()
224 compiler->cpool[cpool_index] = literal; in push_inst_with_literal()
243 compiler->cpool[compiler->cpool_fill] = literal; in push_inst_with_unique_literal()
712 buf_ptr = compiler->cpool; in sljit_generate_code()
DsljitLir.c384 …compiler->cpool = (sljit_uw*)SLJIT_MALLOC(CPOOL_SIZE * sizeof(sljit_uw) + CPOOL_SIZE * sizeof(slji… in sljit_create_compiler()
385 if (!compiler->cpool) { in sljit_create_compiler()
391 compiler->cpool_unique = (sljit_ub*)(compiler->cpool + CPOOL_SIZE); in sljit_create_compiler()
433 SLJIT_FREE(compiler->cpool); in sljit_free_compiler()
DsljitLir.h340 sljit_uw *cpool; member