Home
last modified time | relevance | path

Searched refs:I1 (Results 1 – 25 of 178) sorted by relevance

12345678

/external/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp187 for (SetVector<Value *>::iterator I1 = Pointers.begin(), E = Pointers.end(); in runOnFunction() local
188 I1 != E; ++I1) { in runOnFunction()
190 Type *I1ElTy = cast<PointerType>((*I1)->getType())->getElementType(); in runOnFunction()
193 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { in runOnFunction()
198 switch (AA.alias(*I1, I1Size, *I2, I2Size)) { in runOnFunction()
200 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent()); in runOnFunction()
203 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent()); in runOnFunction()
206 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2, in runOnFunction()
210 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent()); in runOnFunction()
218 for (SetVector<Value *>::iterator I1 = Loads.begin(), E = Loads.end(); in runOnFunction() local
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonCopyToCombine.cpp82 MachineInstr *findPairable(MachineInstr *I1, bool &DoInsertAtI1);
86 void combine(MachineInstr *I1, MachineInstr *I2,
89 bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2,
230 bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr *I1, in isSafeToMoveTogether() argument
241 if (I2UseReg && I1->modifiesRegister(I2UseReg, TRI)) in isSafeToMoveTogether()
252 End = --(MachineBasicBlock::reverse_iterator(I1)); in isSafeToMoveTogether()
255 End = MachineBasicBlock::reverse_iterator(I1); in isSafeToMoveTogether()
297 MachineBasicBlock::iterator I(I1), End(I2); in isSafeToMoveTogether()
301 IsImmUseReg = I1->getOperand(1).isImm() || I1->getOperand(1).isGlobal(); in isSafeToMoveTogether()
302 unsigned I1UseReg = IsImmUseReg ? 0 : I1->getOperand(1).getReg(); in isSafeToMoveTogether()
[all …]
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/
Dtypes.pass.cpp32 typedef std::istreambuf_iterator<char> I1; in main() typedef
33 static_assert((std::is_convertible<I1, in main()
36 static_assert((std::is_same<I1::char_type, char>::value), ""); in main()
37 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), ""); in main()
38 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), ""); in main()
39 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), ""); in main()
40 static_assert((std::is_same<I1::istream_type, std::istream>::value), ""); in main()
/external/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/
Dtypes.pass.cpp29 typedef std::ostreambuf_iterator<char> I1; in main() typedef
30 static_assert((std::is_convertible<I1, in main()
32 static_assert((std::is_same<I1::char_type, char>::value), ""); in main()
33 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), ""); in main()
34 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), ""); in main()
35 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), ""); in main()
/external/llvm/include/llvm/ADT/
DAPSInt.h281 static bool isSameValue(const APSInt &I1, const APSInt &I2) { in isSameValue() argument
282 return !compareValues(I1, I2); in isSameValue()
286 static int compareValues(const APSInt &I1, const APSInt &I2) { in compareValues() argument
287 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned()) in compareValues()
288 return I1 == I2 ? 0 : I1 > I2 ? 1 : -1; in compareValues()
291 if (I1.getBitWidth() > I2.getBitWidth()) in compareValues()
292 return compareValues(I1, I2.extend(I1.getBitWidth())); in compareValues()
293 else if (I2.getBitWidth() > I1.getBitWidth()) in compareValues()
294 return compareValues(I1.extend(I2.getBitWidth()), I2); in compareValues()
298 if (I1.isSigned()) { in compareValues()
[all …]
/external/clang/test/SemaCXX/
Dms-interface.cpp3 __interface I1 { variable
5 I1();
7 ~I1();
44 __interface I4 : I1, I2 {
51 __interface I5 : private I1 {
/external/clang/test/CodeGenObjC/
Dauto-property-synthesize-protocol.m22 @interface I1<P1> interface
26 @implementation I1 // expected-warning {{auto property synthesis will not synthesize property decla… implementation
31 // CHECK: define internal i32 @"\01-[I1 auto_req_window]"(
32 // CHECK: define internal void @"\01-[I1 setAuto_req_window:]"(
34 // CHECK-NOT: define internal i32 @"\01-[I1 no_auto_opt_window]"(
35 // CHECK-NOT: define internal void @"\01-[I1 setNo_auto_opt_window:]"(
D2009-01-21-invalid-debug-info.m6 // info for I1* to be generated, but referring to an invalid compile
10 @interface I1 @end interface
12 @implementation I1 implementation
16 I1 *f1(void) { return 0; }
Ddebug-info-property3.m3 @interface I1 interface
10 @implementation I1 implementation
14 void foo(I1 *iptr) {}
Ddebug-info-class-extension.m6 @interface I1 interface
9 @implementation I1 { implementation
15 void foo(I1 *iptr) {}
/external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/
Dtypes.pass.cpp28 typedef std::ostream_iterator<double> I1; in main() typedef
29 static_assert((std::is_convertible<I1, in main()
31 static_assert((std::is_same<I1::char_type, char>::value), ""); in main()
32 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), ""); in main()
33 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), ""); in main()
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/
Dtypes.pass.cpp28 typedef std::istream_iterator<double> I1; in main() typedef
29 static_assert((std::is_convertible<I1, in main()
32 static_assert((std::is_same<I1::char_type, char>::value), ""); in main()
33 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), ""); in main()
34 static_assert((std::is_same<I1::istream_type, std::istream>::value), ""); in main()
/external/valgrind/cachegrind/
Dcg_sim.c167 static cache_t2 I1; variable
172 cachesim_initcache(I1c, &I1); in cachesim_initcaches()
181 if (cachesim_ref_is_miss(&I1, a, size)) { in cachesim_I1_doref_Gen()
193 UWord block = a >> I1.line_size_bits; in cachesim_I1_doref_NoX()
194 UInt I1_set = block & I1.sets_min_1; in cachesim_I1_doref_NoX()
197 if (cachesim_setref_is_miss(&I1, I1_set, block)) { in cachesim_I1_doref_NoX()
228 if (I1.line_size_bits != LL.line_size_bits) return False; in cachesim_is_IrNoX()
229 block1 = a >> I1.line_size_bits; in cachesim_is_IrNoX()
230 block2 = (a+size-1) >> I1.line_size_bits; in cachesim_is_IrNoX()
/external/llvm/lib/Transforms/Utils/
DAddDiscriminators.cpp214 for (BasicBlock::iterator I1(*First), E1 = Succ->end(); I1 != E1; in runOnFunction() local
215 ++I1) { in runOnFunction()
216 if (I1->getDebugLoc().get() != FirstDIL) in runOnFunction()
218 I1->setDebugLoc(newDebugLoc); in runOnFunction()
221 << NewDIL->getDiscriminator() << *I1 << "\n"); in runOnFunction()
/external/clang/test/Index/
Dcomplete-categories.m4 @interface I1 @end interface
8 @interface I1(Cat1) @end interface in Cat1
9 @interface I1(Cat2) @end interface in Cat2
10 @interface I1(Cat3) @end interface in Cat3
18 @implementation I1(Cat2) @end implementation in Cat2
19 @implementation I1(Cat3) @end implementation in Cat3
/external/clang/test/ASTMerge/Inputs/
Dcategory1.m1 @interface I1 interface
5 @interface I1 (Cat1) interface in Cat1
10 @interface I1 () interface in int
15 @interface I1 (Cat2) interface in Cat2
Dcategory2.m3 @interface I1 interface
7 @interface I1 (Cat1) interface in Cat1
12 @interface I1 () interface in Int
17 @interface I1 (Cat2) interface in Cat2
/external/clang/test/CodeCompletion/
Dnamespace.cpp5 namespace I1 { } namespace
6 namespace I4 = I1;
8 namespace I1 { } namespace
Dnamespace-alias.cpp8 namespace I1 { } namespace
9 namespace I4 = I1;
11 namespace I1 { } namespace
Dusing-namespace.cpp8 namespace I1 { } namespace
9 namespace I4 = I1;
11 namespace I1 { } namespace
Dusing.cpp8 namespace I1 { } namespace
9 namespace I4 = I1;
11 namespace I1 { } namespace
/external/clang/test/SemaObjCXX/
Dpointer-to-objc-pointer-conv.mm27 @interface I1 @end interface
33 operator I1*() const { return (I1*)_value; }
37 bool CompareI1(I1* obj) { return *this == obj; }
/external/clang/lib/StaticAnalyzer/Checkers/
DIdenticalExprChecker.cpp314 Expr::const_child_iterator I1 = Expr1->child_begin(); in isIdenticalStmt() local
316 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) { in isIdenticalStmt()
317 if (!*I1 || !*I2 || !isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects)) in isIdenticalStmt()
319 ++I1; in isIdenticalStmt()
324 if (I1 != Expr1->child_end()) in isIdenticalStmt()
418 CompoundStmt::const_body_iterator I1 = CompStmt1->body_begin(); in isIdenticalStmt() local
420 while (I1 != CompStmt1->body_end() && I2 != CompStmt2->body_end()) { in isIdenticalStmt()
421 if (!isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects)) in isIdenticalStmt()
423 ++I1; in isIdenticalStmt()
449 llvm::APInt I1 = IntLit1->getValue(); in isIdenticalStmt() local
[all …]
/external/llvm/lib/IR/
DInstruction.cpp261 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, in haveSameSpecialState() argument
263 assert(I1->getOpcode() == I2->getOpcode() && in haveSameSpecialState()
266 if (const LoadInst *LI = dyn_cast<LoadInst>(I1)) in haveSameSpecialState()
272 if (const StoreInst *SI = dyn_cast<StoreInst>(I1)) in haveSameSpecialState()
278 if (const CmpInst *CI = dyn_cast<CmpInst>(I1)) in haveSameSpecialState()
280 if (const CallInst *CI = dyn_cast<CallInst>(I1)) in haveSameSpecialState()
284 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1)) in haveSameSpecialState()
288 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) in haveSameSpecialState()
290 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1)) in haveSameSpecialState()
292 if (const FenceInst *FI = dyn_cast<FenceInst>(I1)) in haveSameSpecialState()
[all …]
/external/clang/test/SemaObjC/
Dno-ivar-access-control.m36 @interface I1 { interface
42 @interface I1() { interface in int
48 @implementation I1 implementation
60 @interface DER : I1

12345678