Home
last modified time | relevance | path

Searched refs:startpc (Results 1 – 9 of 9) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DLocalVariablesInfo.java59 …public void add(final int slot, final String name, final int startpc, final int length, final Type… in add() argument
66 localVariableInfos[slot].add(name, startpc, length, t); in add()
68 localVariableInfos[slot+1].add(name, startpc, length, LONG_Upper.theInstance()); in add()
71 localVariableInfos[slot+1].add(name, startpc, length, DOUBLE_Upper.theInstance()); in add()
DLocalVariableInfo.java83 …public void add(final String name, final int startpc, final int length, final Type t) throws Local… in add() argument
84 for (int i=startpc; i<=startpc+length; i++) { // incl/incl-notation! in add()
DPass3aVerifier.java280 final int startpc = localVariable.getStartPC(); in delayedPass2Checks() local
283 if (!contains(instructionPositions, startpc)) { in delayedPass2Checks()
286 … + "' referring to a code offset ('" + startpc + "') that does not exist."); in delayedPass2Checks()
288 … if ((!contains(instructionPositions, startpc + length)) && (startpc + length != codeLength)) { in delayedPass2Checks()
291 … + "' referring to a code offset start_pc+length ('" + (startpc + length) in delayedPass2Checks()
306 final int startpc = element.getStartPC(); in delayedPass2Checks() local
309 if (startpc >= endpc) { in delayedPass2Checks()
311 … "' that has its start_pc ('"+startpc+"') not smaller than its end_pc ('"+endpc+"')."); in delayedPass2Checks()
313 if (!contains(instructionPositions, startpc)) { in delayedPass2Checks()
315 "' that has a non-existant bytecode offset as its start_pc ('"+startpc+"')."); in delayedPass2Checks()
[all …]
/external/lua/src/
Dlfunc.c142 for (i = 0; i<f->sizelocvars && f->locvars[i].startpc <= pc; i++) { in luaF_getlocalname()
Dldump.c156 DumpInt(f->locvars[i].startpc, D); in DumpDebug()
Dlundump.c193 f->locvars[i].startpc = LoadInt(S); in LoadDebug()
Dluac.c432 i,getstr(f->locvars[i].varname),f->locvars[i].startpc+1,f->locvars[i].endpc+1); in PrintDebug()
Dlobject.h399 int startpc; /* first point where variable is active */ member
Dlparser.c206 getlocvar(fs, fs->nactvar - nvars)->startpc = fs->pc; in adjustlocalvars()
1438 getlocvar(fs, b.u.info)->startpc = fs->pc; in localfunc()