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/
Dldump.c169 dumpInt(D, f->locvars[i].startpc); in dumpDebug()
Dlfunc.c291 for (i = 0; i<f->sizelocvars && f->locvars[i].startpc <= pc; i++) { in luaF_getlocalname()
Dlundump.c247 f->locvars[i].startpc = loadInt(S); in loadDebug()
Dluac.c706 i,getstr(f->locvars[i].varname),f->locvars[i].startpc+1,f->locvars[i].endpc+1); in PrintDebug()
Dlobject.h505 int startpc; /* first point where variable is active */ member
Dlparser.c183 f->locvars[fs->ndebugvars].startpc = fs->pc; in registerlocalvar()
1725 localdebuginfo(fs, fvar)->startpc = fs->pc; in localfunc()