Home
last modified time | relevance | path

Searched refs:I2 (Results 1 – 25 of 74) sorted by relevance

123

/external/clang/test/ASTMerge/Inputs/
Dcategory1.m19 @interface I2 interface
23 @interface I2 () interface in int
28 @interface I2 (Cat3) interface in Cat3
31 @implementation I2 (Cat3) implementation in Cat3
35 @interface I2 (Cat4) interface in Cat4
38 @implementation I2 (Cat4) implementation in Cat4
42 @interface I2 (Cat6) interface in Cat6
45 @implementation I2 (Cat6) implementation in Cat6
Dcategory2.m21 @interface I2 interface
25 @interface I2 () interface in float
30 @interface I2 (Cat3) interface in Cat3
33 @implementation I2 (Cat3) implementation in Cat3
37 @interface I2 (Cat5) interface in Cat5
40 @implementation I2 (Cat5) implementation in Cat5
44 @interface I2 (Cat6) interface in Cat6
47 @implementation I2 (Cat6) implementation in Cat6
/external/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp178 const Instruction *I2) const;
287 const Instruction *I2) const { in isEquivalentOperation()
292 if (I1->getOpcode() != I2->getOpcode() || in isEquivalentOperation()
293 I1->getNumOperands() != I2->getNumOperands() || in isEquivalentOperation()
294 !isEquivalentType(I1->getType(), I2->getType()) || in isEquivalentOperation()
295 !I1->hasSameSubclassOptionalData(I2)) in isEquivalentOperation()
302 I2->getOperand(i)->getType())) in isEquivalentOperation()
307 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() && in isEquivalentOperation()
308 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() && in isEquivalentOperation()
309 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() && in isEquivalentOperation()
[all …]
DArgumentPromotion.cpp777 I2 = NF->arg_begin(); I != E; ++I) { in DoPromotion() local
781 I->replaceAllUsesWith(I2); in DoPromotion()
782 I2->takeName(I); in DoPromotion()
783 AA.replaceWithNewValue(I, I2); in DoPromotion()
784 ++I2; in DoPromotion()
806 I2->setName(I->getName()+"."+Twine(i)); in DoPromotion()
807 new StoreInst(I2++, Idx, InsertPt); in DoPromotion()
831 I2->setName(I->getName()+".val"); in DoPromotion()
832 LI->replaceAllUsesWith(I2); in DoPromotion()
833 AA.replaceWithNewValue(LI, I2); in DoPromotion()
[all …]
/external/clang/test/CodeGenObjC/
Dclass-type.m11 @class I2;
14 I2 *_imageBrowser;
21 @interface I2 : I0 interface
24 @implementation I2 implementation
Dsel-as-builtin-type.m10 @interface I2 interface
16 I2 *a0 = [I2 dictionary];
Dforward-decl-param.m14 @interface I2 interface
17 @implementation I2 implementation
/external/qemu/
Dmips-dis.c1111 #define I2 INSN_ISA2 macro
1266 {"bc1fl", "p", 0x45020000, 0xffff0000, CBL|RD_CC|FP_S, 0, I2|T3 },
1270 {"bc1tl", "p", 0x45030000, 0xffff0000, CBL|RD_CC|FP_S, 0, I2|T3 },
1275 {"beqzl", "s,p", 0x50000000, 0xfc1f0000, CBL|RD_s, 0, I2|T3 },
1278 {"beql", "s,t,p", 0x50000000, 0xfc000000, CBL|RD_s|RD_t, 0, I2|T3 },
1279 {"beql", "s,I,p", 0, (int) M_BEQL_I, INSN_MACRO, 0, I2|T3 },
1282 {"bgel", "s,t,p", 0, (int) M_BGEL, INSN_MACRO, 0, I2|T3 },
1283 {"bgel", "s,I,p", 0, (int) M_BGEL_I, INSN_MACRO, 0, I2|T3 },
1286 {"bgeul", "s,t,p", 0, (int) M_BGEUL, INSN_MACRO, 0, I2|T3 },
1287 {"bgeul", "s,I,p", 0, (int) M_BGEUL_I, INSN_MACRO, 0, I2|T3 },
[all …]
/external/clang/test/Index/
Dcomplete-categories.m5 @interface I2 @end interface
6 @interface I3 : I2 @end
12 @interface I2 (Cat2) @end interface in Cat2
13 @interface I2 (Cat3) @end interface in Cat3
14 @interface I2 (Cat2) @end interface in Cat2
/external/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp177 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { in runOnFunction() local
179 Type *I2ElTy =cast<PointerType>((*I2)->getType())->getElementType(); in runOnFunction()
182 switch (AA.alias(*I1, I1Size, *I2, I2Size)) { in runOnFunction()
184 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent()); in runOnFunction()
187 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent()); in runOnFunction()
190 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2, in runOnFunction()
194 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent()); in runOnFunction()
/external/clang/test/SemaObjCXX/
Dobjc-extern-c.mm10 @interface I2 interface
12 @interface I2(C) // expected-note {{previous}} interface in C
23 @interface I2(C) // expected-warning {{duplicate}} interface in C
Dmessage.mm16 @interface I2 { interface
26 I2 *get();
29 I2 *operator+(I2_holder, int);
31 @implementation I2 implementation
/external/clang/test/SemaObjC/
Dmissing-atend-metadata.m15 @interface I2 : I0 // expected-error {{missing '@end'}}
19 @implementation I2 // expected-note {{implementation started here}} implementation in CAT
22 @implementation I2(CAT) // expected-error 2 {{missing '@end'}} expected-note {{implementation star…
Dincomplete-implementation.m16 @interface I2 interface
20 @implementation I2 implementation
23 @implementation I2(CAT) implementation in CAT
Dwarn-forward-class-attr-deprecated.m10 @interface I2 interface
16 @implementation I2 implementation
/external/clang/test/PCH/
Dchain-categories2.m16 @interface I2 interface
39 @interface I2() interface in readwrite
52 @implementation I2 implementation
/external/llvm/test/Transforms/LICM/
D2003-02-27-PreheaderProblem.ll13 %I = phi i32 [ 0, %0 ], [ %I2, %bb5 ] ; <i32> [#uses=1]
14 %I2 = add i32 %I, 1 ; <i32> [#uses=2]
15 %c = icmp eq i32 %I2, 10 ; <i1> [#uses=1]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
Dp3.cpp5 typedef int I2; typedef
6 typedef I2 I; // expected-note {{previous definition is here}}
/external/llvm/lib/CodeGen/
DBranchFolding.cpp310 MachineBasicBlock::iterator &I2) { in ComputeCommonTailLength() argument
312 I2 = MBB2->end(); in ComputeCommonTailLength()
315 while (I1 != MBB1->begin() && I2 != MBB2->begin()) { in ComputeCommonTailLength()
316 --I1; --I2; in ComputeCommonTailLength()
320 while (I2->isDebugValue()) { in ComputeCommonTailLength()
321 if (I2==MBB2->begin()) in ComputeCommonTailLength()
324 --I2; in ComputeCommonTailLength()
326 ++I2; in ComputeCommonTailLength()
333 while (I2->isDebugValue()) { in ComputeCommonTailLength()
334 if (I2==MBB2->begin()) { in ComputeCommonTailLength()
[all …]
/external/clang/test/CXX/class/class.nest/
Dp3.cpp11 class I2;
14 class E::I2 { }; class in example::E
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/
Dp6.cpp7 typedef int I1, I2; typedef
13 q->I1::~I2(); in f()
Dp6-0x.cpp9 typedef int I1, I2; typedef
15 q->I1::~I2(); in f()
/external/clang/lib/StaticAnalyzer/Checkers/
DOSAtomicChecker.cpp186 for (ExplodedNodeSet::iterator I2 = TmpStore.begin(), in evalOSAtomicCompareAndSwap() local
187 E2 = TmpStore.end(); I2 != E2; ++I2) { in evalOSAtomicCompareAndSwap()
188 ExplodedNode *predNew = *I2; in evalOSAtomicCompareAndSwap()
/external/llvm/test/Transforms/SCCP/
Dcalltest.ll12 %I2 = phi i32 [ 0, %entry ], [ %I3, %Loop ] ; <i32> [#uses=1]
15 %I3 = add i32 %I2, 1 ; <i32> [#uses=2]
/external/llvm/test/CodeGen/Generic/
Dconstindices.ll19 %I2 = getelementptr %MixedB* %ScalarB, i64 0, i32 1, i32 0 ; <float*> [#uses=2]
20 store float 0x4005BF1420000000, float* %I2
32 %exp = load float* %I2 ; <float> [#uses=1]

123