OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:opIndex
(Results
1 - 7
of
7
) sorted by null
/external/llvm/lib/MC/MCDisassembler/
EDInst.cpp
107
unsigned int
opIndex
;
110
for (
opIndex
= 0;
opIndex
< ThisInstInfo->numOperands; ++
opIndex
) {
112
(ThisInstInfo->operandFlags[
opIndex
] & kOperandFlagTarget)) {
113
BranchTarget =
opIndex
;
116
if (ThisInstInfo->operandFlags[
opIndex
] & kOperandFlagSource)
117
MoveSource =
opIndex
;
118
else if (ThisInstInfo->operandFlags[
opIndex
] & kOperandFlagTarget)
119
MoveTarget =
opIndex
;
[
all
...]
EDOperand.h
39
unsigned int
OpIndex
;
47
/// @arg
opIndex
- The index of the operand in inst
51
unsigned int
opIndex
,
EDOperand.cpp
25
unsigned int
opIndex
,
29
OpIndex
(
opIndex
),
35
uint8_t operandType = inst.ThisInstInfo->operandTypes[
opIndex
];
59
uint8_t operandType = inst.ThisInstInfo->operandTypes[
opIndex
];
127
uint8_t operandType = Inst.ThisInstInfo->operandTypes[
OpIndex
];
246
return(Inst.ThisInstInfo->operandFlags[
OpIndex
] == kOperandTypeRegister);
254
return(Inst.ThisInstInfo->operandFlags[
OpIndex
] == kOperandTypeImmediate);
262
uint8_t operandType = Inst.ThisInstInfo->operandTypes[
OpIndex
];
/dalvik/vm/
InlineNative.cpp
875
Method* dvmResolveInlineNative(int
opIndex
)
877
assert(
opIndex
>= 0 &&
opIndex
< NELEM(gDvmInlineOpsTable));
878
Method* method = gDvm.inlinedMethods[
opIndex
];
884
gDvmInlineOpsTable[
opIndex
].classDescriptor,
885
gDvmInlineOpsTable[
opIndex
].methodName,
886
gDvmInlineOpsTable[
opIndex
].methodSignature);
893
gDvm.inlinedMethods[
opIndex
] = method;
909
JValue* pResult, int
opIndex
)
911
Method* method = dvmResolveInlineNative(
opIndex
);
[
all
...]
InlineNative.h
98
* Perform the operation specified by "
opIndex
".
108
JValue* pResult, int
opIndex
)
110
return (*gDvmInlineOpsTable[
opIndex
].func)(arg0, arg1, arg2, arg3, pResult);
117
JValue* pResult, int
opIndex
);
122
extern "C" Method* dvmResolveInlineNative(int
opIndex
);
/external/javassist/src/main/javassist/bytecode/
CodeAnalyzer.java
189
private void checkTarget(int
opIndex
, int target, int codeLength,
194
throw new BadBytecode("bad branch offset at " +
opIndex
);
201
"," + d + ") at " +
opIndex
);
/external/llvm/utils/TableGen/
EDEmitter.cpp
385
unsigned
opIndex
;
387
opIndex
= inst.Operands.getOperandNamed(std::string(opName));
389
operandFlags[
opIndex
]->addEntry(opFlag);
787
unsigned
opIndex
;
788
opIndex
= inst.Operands.getOperandNamed("func");
789
if (operandTypes[
opIndex
]->is("kOperandTypeImmediate"))
790
operandTypes[
opIndex
]->set("kOperandTypeARMBranchTarget");
Completed in 516 milliseconds