Searched refs:startpc (Results 1 – 9 of 9) sorted by relevance
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/ |
D | LocalVariablesInfo.java | 59 …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()
|
D | LocalVariableInfo.java | 83 …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()
|
D | Pass3aVerifier.java | 280 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/ |
D | ldump.c | 169 dumpInt(D, f->locvars[i].startpc); in dumpDebug()
|
D | lfunc.c | 291 for (i = 0; i<f->sizelocvars && f->locvars[i].startpc <= pc; i++) { in luaF_getlocalname()
|
D | lundump.c | 247 f->locvars[i].startpc = loadInt(S); in loadDebug()
|
D | luac.c | 706 i,getstr(f->locvars[i].varname),f->locvars[i].startpc+1,f->locvars[i].endpc+1); in PrintDebug()
|
D | lobject.h | 505 int startpc; /* first point where variable is active */ member
|
D | lparser.c | 183 f->locvars[fs->ndebugvars].startpc = fs->pc; in registerlocalvar() 1725 localdebuginfo(fs, fvar)->startpc = fs->pc; in localfunc()
|