Home
last modified time | relevance | path

Searched refs:callSiteIndex (Results 1 – 7 of 7) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/
DDexBackedCallSiteReference.java52 public final int callSiteIndex; field in DexBackedCallSiteReference
56 public DexBackedCallSiteReference(DexBackedDexFile dexFile, int callSiteIndex) { in DexBackedCallSiteReference() argument
58 this.callSiteIndex = callSiteIndex; in DexBackedCallSiteReference()
59 this.callSiteIdOffset = dexFile.getCallSiteIdItemOffset(callSiteIndex); in DexBackedCallSiteReference()
65 return String.format("call_site_%d", callSiteIndex); in getName()
81 encodedValue.getValueType(), callSiteIndex); in getMethodHandle()
100 encodedValue.getValueType(), callSiteIndex); in getMethodName()
120 encodedValue.getValueType(), callSiteIndex); in getMethodProto()
/external/swiftshader/src/Shader/
DVertexProgram.hpp92 void CALL(int labelIndex, int callSiteIndex);
93 void CALLNZ(int labelIndex, int callSiteIndex, const Src &src);
94 void CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister);
95 void CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister);
DPixelProgram.hpp114 void CALL(int labelIndex, int callSiteIndex);
115 void CALLNZ(int labelIndex, int callSiteIndex, const Src &src);
116 void CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister);
117 void CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister);
DVertexProgram.cpp1132 void VertexProgram::CALL(int labelIndex, int callSiteIndex) in CALL() argument
1141 callStack[stackIndex++] = UInt(callSiteIndex); in CALL()
1147 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1152 void VertexProgram::CALLNZ(int labelIndex, int callSiteIndex, const Src &src) in CALLNZ() argument
1156 CALLNZb(labelIndex, callSiteIndex, src); in CALLNZ()
1160 CALLNZp(labelIndex, callSiteIndex, src); in CALLNZ()
1165 void VertexProgram::CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister) in CALLNZb() argument
1181 callStack[stackIndex++] = UInt(callSiteIndex); in CALLNZb()
1186 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1187 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
[all …]
DPixelProgram.cpp1448 void PixelProgram::CALL(int labelIndex, int callSiteIndex) in CALL() argument
1457 callStack[stackIndex++] = UInt(callSiteIndex); in CALL()
1463 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1468 void PixelProgram::CALLNZ(int labelIndex, int callSiteIndex, const Src &src) in CALLNZ() argument
1472 CALLNZb(labelIndex, callSiteIndex, src); in CALLNZ()
1476 CALLNZp(labelIndex, callSiteIndex, src); in CALLNZ()
1481 void PixelProgram::CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister) in CALLNZb() argument
1497 callStack[stackIndex++] = UInt(callSiteIndex); in CALLNZb()
1502 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1503 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedDexFile.java199 public int getCallSiteIdItemOffset(int callSiteIndex) {
201 if (mapItem == null || callSiteIndex >= mapItem.getItemCount()) {
202 … throw new InvalidItemIndex(callSiteIndex, "Call site index out of bounds: %d", callSiteIndex);
204 return mapItem.getOffset() + callSiteIndex * CallSiteIdItem.ITEM_SIZE;
/external/dexmaker/lib/
Ddalvik-dx-9.0.0_r3.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/ ...