OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AM2Opc
(Results
1 - 3
of
3
) sorted by null
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h
412
static inline unsigned getAM2Offset(unsigned
AM2Opc
) {
413
return
AM2Opc
& ((1 << 12)-1);
415
static inline AddrOpc getAM2Op(unsigned
AM2Opc
) {
416
return ((
AM2Opc
>> 12) & 1) ? sub : add;
418
static inline ShiftOpc getAM2ShiftOpc(unsigned
AM2Opc
) {
419
return (ShiftOpc)((
AM2Opc
>> 13) & 7);
421
static inline unsigned getAM2IdxMode(unsigned
AM2Opc
) {
422
return (
AM2Opc
>> 16);
/external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h
413
static inline unsigned getAM2Offset(unsigned
AM2Opc
) {
414
return
AM2Opc
& ((1 << 12)-1);
416
static inline AddrOpc getAM2Op(unsigned
AM2Opc
) {
417
return ((
AM2Opc
>> 12) & 1) ? sub : add;
419
static inline ShiftOpc getAM2ShiftOpc(unsigned
AM2Opc
) {
420
return (ShiftOpc)((
AM2Opc
>> 13) & 7);
422
static inline unsigned getAM2IdxMode(unsigned
AM2Opc
) {
423
return (
AM2Opc
>> 16);
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMCodeEmitter.cpp
[
all
...]
Completed in 51 milliseconds