OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ALU_Opcode
(Results
1 - 6
of
6
) sorted by null
/dalvik/vm/compiler/codegen/x86/
Lower.h
630
void fpu_VR(
ALU_Opcode
opc, OpndSize size, int vA);
688
void alu_unary_reg(OpndSize size,
ALU_Opcode
opc, int reg, bool isPhysical);
689
void alu_unary_mem(LowOp* op, OpndSize size,
ALU_Opcode
opc, int disp, int base_reg, bool isBasePhysical);
691
void alu_binary_imm_mem(OpndSize size,
ALU_Opcode
opc,
693
void alu_binary_imm_reg(OpndSize size,
ALU_Opcode
opc, int imm, int reg, bool isPhysical);
694
void alu_binary_mem_reg(OpndSize size,
ALU_Opcode
opc,
697
void alu_binary_VR_reg(OpndSize size,
ALU_Opcode
opc, int vA, int reg, bool isPhysical);
698
void alu_sd_binary_VR_reg(
ALU_Opcode
opc, int vA, int reg, bool isPhysical, bool isSD);
699
void alu_binary_reg_reg(OpndSize size,
ALU_Opcode
opc,
702
void alu_binary_reg_mem(OpndSize size,
ALU_Opcode
opc
[
all
...]
LowerAlu.cpp
428
int common_alu_int(
ALU_Opcode
opc, u2 vA, u2 v1, u2 v2) { //except div and rem
442
int common_shift_int(
ALU_Opcode
opc, u2 vA, u2 v1, u2 v2) {
767
int common_alu_int_lit(
ALU_Opcode
opc, u2 vA, u2 vB, s2 imm) { //except div and rem
774
int common_shift_int_lit(
ALU_Opcode
opc, u2 vA, u2 vB, s2 imm) {
790
int alu_rsub_int(
ALU_Opcode
opc, u2 vA, s2 imm, u2 vB) {
1133
int common_alu_long(
ALU_Opcode
opc, u2 vA, u2 v1, u2 v2) { //except div and rem
[
all
...]
LowerHelper.cpp
[
all
...]
/dalvik/vm/compiler/codegen/x86/libenc/
enc_wrapper.h
81
typedef enum
ALU_Opcode
{
90
}
ALU_Opcode
;
encoder.h
118
typedef enum
ALU_Opcode
{
122
}
ALU_Opcode
;
485
ENCODER_DECLARE_EXPORT char * alu(char * stream,
ALU_Opcode
opc, const RM_Opnd & rm, const Imm_Opnd & imm, Opnd_Size sz = size_platf);
486
ENCODER_DECLARE_EXPORT char * alu(char * stream,
ALU_Opcode
opc, const M_Opnd & m, const R_Opnd & r, Opnd_Size sz = size_platf);
487
ENCODER_DECLARE_EXPORT char * alu(char * stream,
ALU_Opcode
opc, const R_Opnd & r, const RM_Opnd & rm, Opnd_Size sz = size_platf);
encoder.inl
44
inline static Mnemonic map_alu(
ALU_Opcode
alu) {
186
ENCODER_DECLARE_EXPORT char * alu(char * stream,
ALU_Opcode
opc, const RM_Opnd & rm, const Imm_Opnd & imm, Opnd_Size sz) {
193
ENCODER_DECLARE_EXPORT char * alu(char * stream,
ALU_Opcode
opc, const M_Opnd & m, const R_Opnd & r, Opnd_Size sz) {
200
ENCODER_DECLARE_EXPORT char * alu(char * stream,
ALU_Opcode
opc, const R_Opnd & r, const RM_Opnd & rm, Opnd_Size sz) {
Completed in 380 milliseconds