Home
last modified time | relevance | path

Searched refs:argumentCount (Results 1 – 13 of 13) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/code/
DFormat3rc.java28 Format3rc(int firstArgumentRegister, int argumentCount, IndexedDexItem dexItem) { in Format3rc() argument
30 assert 0 <= argumentCount && argumentCount <= Constants.U8BIT_MAX; in Format3rc()
32 this.AA = argumentCount; in Format3rc()
DFormat4rcc.java33 Format4rcc(int firstArgumentRegister, int argumentCount, DexMethod method, DexProto proto) { in Format4rcc() argument
35 assert 0 <= argumentCount && argumentCount <= Constants.U8BIT_MAX; in Format4rcc()
37 this.AA = argumentCount; in Format4rcc()
DInvokeCustomRange.java21 public InvokeCustomRange(int firstArgumentRegister, int argumentCount, DexCallSite callSite) { in InvokeCustomRange() argument
22 super(firstArgumentRegister, argumentCount, callSite); in InvokeCustomRange()
DInvokeSuperRange.java22 public InvokeSuperRange(int firstArgumentRegister, int argumentCount, DexMethod method) { in InvokeSuperRange() argument
23 super(firstArgumentRegister, argumentCount, method); in InvokeSuperRange()
DInvokeStaticRange.java22 public InvokeStaticRange(int firstArgumentRegister, int argumentCount, DexMethod method) { in InvokeStaticRange() argument
23 super(firstArgumentRegister, argumentCount, method); in InvokeStaticRange()
DInvokeDirectRange.java22 public InvokeDirectRange(int firstArgumentRegister, int argumentCount, DexMethod method) { in InvokeDirectRange() argument
23 super(firstArgumentRegister, argumentCount, method); in InvokeDirectRange()
DInvokeInterfaceRange.java22 public InvokeInterfaceRange(int firstArgumentRegister, int argumentCount, DexMethod method) { in InvokeInterfaceRange() argument
23 super(firstArgumentRegister, argumentCount, method); in InvokeInterfaceRange()
DInvokeVirtualRange.java22 public InvokeVirtualRange(int firstArgumentRegister, int argumentCount, DexMethod method) { in InvokeVirtualRange() argument
23 super(firstArgumentRegister, argumentCount, method); in InvokeVirtualRange()
DInvokePolymorphicRange.java25 int firstArgumentRegister, int argumentCount, DexMethod method, DexProto proto) { in InvokePolymorphicRange() argument
26 super(firstArgumentRegister, argumentCount, method, proto); in InvokePolymorphicRange()
/external/v8/src/debug/
Dmirrors.js1655 FrameDetails.prototype.argumentCount = function() { method in FrameDetails
1663 if (index >= 0 && index < this.argumentCount()) {
1673 if (index >= 0 && index < this.argumentCount()) {
1697 this.argumentCount() * kFrameDetailsNameValueSize;
1709 this.argumentCount() * kFrameDetailsNameValueSize;
1721 (this.argumentCount() + this.localCount()) * kFrameDetailsNameValueSize;
1826 FrameMirror.prototype.argumentCount = function() { method in FrameMirror
1827 return this.details_.argumentCount();
1990 for (var i = 0; i < this.argumentCount(); i++) {
/external/r8/src/main/java/com/android/tools/r8/ir/optimize/
DOutliner.java125 int argumentCount() { in argumentCount() method in Outliner.Outline
195 assert argumentCount() == other.argumentCount(); in compareTo()
790 return outline.argumentCount() > 0; in needsPrelude()
855 builder.addReturn(MoveType.fromDexType(outline.returnType), outline.argumentCount()); in buildInstruction()
869 register = outline.argumentCount(); in buildInstruction()
878 .writeRegister(outline.argumentCount(), value.outType(), ThrowingInfo.CAN_THROW); in buildInstruction()
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DIRBuilder.java957 DexCallSite callSite, int argumentCount, int firstArgumentRegister) {
959 List<Value> arguments = new ArrayList<>(argumentCount);
974 checkInvokeArgumentRegisters(register, firstArgumentRegister + argumentCount);
1020 public void addInvokeNewArray(DexType type, int argumentCount, int[] argumentRegisters) {
1025 List<Value> arguments = new ArrayList<>(argumentCount / moveType.requiredRegisters());
1027 while (registerIndex < argumentCount) {
1030 assert registerIndex < argumentCount - 1;
1035 checkInvokeArgumentRegisters(registerIndex, argumentCount);
1043 int argumentCount,
1047 List<Value> arguments = new ArrayList<>(argumentCount);
[all …]
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp1127 size_t argumentCount = arg.size(); in visitAggregate() local
1200 for(size_t i = 0; i < argumentCount; i++) in visitAggregate()
1221 for(size_t i = 0; i < argumentCount; i++) in visitAggregate()
1260 if(argumentCount == 2 || (textureFunction.offset && argumentCount == 3)) in visitAggregate()
1265 else if(argumentCount == 3 || (textureFunction.offset && argumentCount == 4)) // bias in visitAggregate()
1274 else UNREACHABLE(argumentCount); in visitAggregate()
1288 if(argumentCount == 3 || (textureFunction.offset && argumentCount == 4)) in visitAggregate()
1298 else UNREACHABLE(argumentCount); in visitAggregate()
1303 if(argumentCount == 4 || (textureFunction.offset && argumentCount == 5)) in visitAggregate()
1310 else UNREACHABLE(argumentCount); in visitAggregate()
[all …]