HomeSort by relevance Sort by last modified time
    Searched refs:AA (Results 101 - 125 of 315) sorted by null

1 2 3 45 6 7 8 91011>>

  /dalvik/vm/mterp/mips/
OP_SPUT.S 43 GET_OPA(a2) # a2 <- AA
45 GET_VREG(a1, a2) # a1 <- fp[AA]
OP_SPUT_OBJECT.S 42 GET_OPA(a2) # a2 <- AA
44 GET_VREG(a1, a2) # a1 <- fp[AA]
OP_USHR_LONG.S 10 GET_OPA(t0) # t3 <- AA
16 EAS2(rOBJ, rFP, t0) # rOBJ <- &fp[AA]
binflopWide.S 17 GET_OPA(rOBJ) # s5 <- AA
20 EAS2(rOBJ, rFP, rOBJ) # s5 <- &fp[AA]
OP_FILL_ARRAY_DATA.S 5 GET_OPA(a3) # a3 <- AA
OP_INVOKE_VIRTUAL_QUICK.S 10 # op vAA, {vCCCC..v(CCCC+AA-1)}, meth /* BBBB */
OP_MONITOR_EXIT.S 12 GET_OPA(a2) # a2 <- AA
binopLit8.S 17 GET_OPA(rOBJ) # rOBJ <- AA
OP_SPUT_WIDE.S 13 GET_OPA(t0) # t0 <- AA
15 EAS2(rOBJ, rFP, t0) # rOBJ<- &fp[AA]
18 .L${opcode}_finish: # field ptr in a2, AA in rOBJ
34 * rOBJ: &fp[AA]
OP_FILLED_NEW_ARRAY.S 10 # op {vCCCC..v(CCCC+AA-1)}, type /* BBBB */
16 GET_OPA(rOBJ) # rOBJ <- AA or BA
32 * rOBJ holds AA or BA
39 move a1, rOBJ # a1 <- AA (length)
63 # a0=array, a1=CCCC/FEDC, t0=length (from AA or B), rOBJ=AA/BA
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 65 /// AA - AliasAnalysis for making memory reference queries.
66 AliasAnalysis *AA;
70 AliasAnalysis *aa,
72 : ScheduleDAGSDNodes(mf), AvailableQueue(availqueue), AA(aa) {
100 BuildSchedGraph(AA);
277 return new ScheduleDAGVLIW(*IS->MF, IS->AA, new ResourcePriorityQueue(IS));
  /dalvik/vm/mterp/arm-vfp/
fbinop.S 10 mov r9, rINST, lsr #8 @ r9<- AA
fbinopWide.S 10 mov r9, rINST, lsr #8 @ r9<- AA
  /dalvik/vm/mterp/armv5te/
OP_FILL_ARRAY_DATA.S 5 mov r3, rINST, lsr #8 @ r3<- AA
OP_MONITOR_EXIT.S 12 mov r2, rINST, lsr #8 @ r2<- AA
binop.S 19 mov r9, rINST, lsr #8 @ r9<- AA
binopLit8.S 17 mov r9, rINST, lsr #8 @ r9<- AA
OP_SPUT_WIDE.S 13 mov r9, rINST, lsr #8 @ r9<- AA
15 add r9, rFP, r9, lsl #2 @ r9<- &fp[AA]
18 .L${opcode}_finish: @ field ptr in r2, AA in r9
34 * r9: &fp[AA]
  /dalvik/vm/mterp/x86/
OP_USHR_LONG.S 13 /* rINSTw gets AA */
27 SET_VREG_WORD rIBASE rINST 1 # v[AA+1]<- rIBASE
  /external/clang/test/Sema/
MicrosoftExtensions.c 87 } AA;
90 AA; // expected-warning {{anonymous structs are a Microsoft extension}}
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 41 static cl::opt<bool> EnableAASchedMI("enable-aa-sched-mi", cl::Hidden,
43 cl::desc("Enable use of AA during MI GAD construction"));
442 static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
445 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
494 static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
509 // To this point analysis is generic. From here on we do need AA.
510 if (!AA)
520 // The following interface to AA is fashioned after DAGCombiner::isAlias
532 // FIXME: Even before we go to AA we can reason locally about some
543 AliasAnalysis::AliasResult AAResult = AA->alias
    [all...]
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 27 AliasAnalysis *AA;
44 FlattenCFGOpt(AliasAnalysis *AA) : AA(AA) {}
361 if (!AA || AA->alias(iter1, BI))
486 bool llvm::FlattenCFG(BasicBlock *BB, AliasAnalysis *AA) {
487 return FlattenCFGOpt(AA).run(BB);
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 36 AliasAnalysis *AA;
101 AA = &getAnalysis<AliasAnalysis>();
156 static bool isSafeToMove(Instruction *Inst, AliasAnalysis *AA,
165 AliasAnalysis::Location Loc = AA->getLocation(L);
168 if (AA->getModRefInfo(*I, Loc) & AliasAnalysis::Mod)
222 if (!isSafeToMove(Inst, AA, Stores))
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 89 AA = &getAnalysis<AliasAnalysis>();
119 AliasAnalysis *AA) {
122 Loc = AA->getLocation(LI);
126 Loc = AA->getLocation(LI);
135 Loc = AA->getLocation(SI);
139 Loc = AA->getLocation(SI);
147 Loc = AA->getLocation(V);
151 if (const CallInst *CI = isFreeCall(Inst, AA->getTargetLibraryInfo())) {
208 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA);
211 if (AA->getModRefInfo(CS, Loc) != AliasAnalysis::NoModRef
    [all...]
  /external/clang/test/SemaCXX/
member-pointer-ms.cpp 94 struct AA { int x; virtual void foo(); };
95 struct BB : AA { void bar(); };
167 int Virtual::*CastTest = reinterpret_cast<int Virtual::*>(&AA::x);

Completed in 408 milliseconds

1 2 3 45 6 7 8 91011>>