Searched defs:IP (Results 1 - 25 of 77) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A Dmangle-nullptr-arg.cpp3 template<int *ip> struct IP {}; struct
6 void test1(IP<nullptr>) {}
/external/llvm/lib/Transforms/Instrumentation/
H A DInstrumentation.cpp23 /// Moves I before IP. Returns new insert point.
24 static BasicBlock::iterator moveBeforeInsertPoint(BasicBlock::iterator I, BasicBlock::iterator IP) { argument
25 // If I is IP, move the insert point down.
26 if (I == IP)
27 return ++IP;
28 // Otherwise, move I before IP and return IP.
29 I->moveBefore(&*IP);
30 return IP;
39 BasicBlock::iterator IP) {
38 PrepareToSplitEntryBlock(BasicBlock &BB, BasicBlock::iterator IP) argument
[all...]
/external/boringssl/src/crypto/des/
H A Dinternal.h132 /* IP and FP
163 Thanks for hints from Richard Outerbridge - he told me IP&FP
176 #define IP(l, r) \ macro
/external/llvm/lib/Analysis/
H A DIntervalPartition.cpp92 IntervalPartition::IntervalPartition(IntervalPartition &IP, bool) argument
94 assert(IP.getRootInterval() && "Cannot operate on empty IntervalPartitions!");
97 interval_part_interval_iterator I = intervals_begin(IP, false);
98 assert(I != intervals_end(IP) && "No intervals in interval partition!?!?!");
105 for (interval_part_interval_iterator E = intervals_end(IP); I != E; ++I)
/external/llvm/unittests/ADT/
H A DSparseSetTest.cpp46 std::pair<USet::iterator, bool> IP = Set.insert(5); local
47 EXPECT_TRUE(IP.second);
48 EXPECT_TRUE(IP.first == Set.begin());
62 IP = Set.insert(5);
63 EXPECT_FALSE(IP.second);
64 EXPECT_TRUE(IP.first == Set.begin());
106 std::pair<USet::iterator, bool> IP = Set.insert(3); local
107 EXPECT_FALSE(IP.second);
108 EXPECT_TRUE(IP.first == Set.begin() + 1);
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DIntervalPartition.cpp93 IntervalPartition::IntervalPartition(IntervalPartition &IP, bool) argument
95 assert(IP.getRootInterval() && "Cannot operate on empty IntervalPartitions!");
98 interval_part_interval_iterator I = intervals_begin(IP, false);
99 assert(I != intervals_end(IP) && "No intervals in interval partition!?!?!");
106 for (interval_part_interval_iterator E = intervals_end(IP); I != E; ++I)
/external/clang/test/SemaCXX/
H A Ddelete-and-function-templates.cpp121 int *IP = foo(2); //expected-error{{deleted}} member in namespace:test_explicit_specialization_of_member::ns4
/external/llvm/lib/MC/
H A DMCSection.cpp71 iterator IP; local
73 IP = end();
75 IP = MI->second->getIterator();
81 getFragmentList().insert(IP, F);
85 return IP;
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp1-11.cpp7 template<int *ip> struct IP { // expected-note 5 {{template parameter is declared here}} struct
8 IP<ip> *ip2;
21 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
22 IP<(0)> ip1; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
23 IP<nullptr> ip2;
24 IP<get_nullptr()> ip3;
25 IP<(int*)0> ip4;
26 IP<np> ip5;
27 IP<nonconst_np> ip5; // expected-error{{non-type template argument of type 'std::nullptr_t' (aka 'nullptr_t') is not a constant expression}} \
29 IP<(floa
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
H A DDisassembler.h69 llvm::OwningPtr<llvm::MCInstPrinter> IP; member in class:llvm::LLVMDisasmContext
90 IP.reset(iP);
94 MCInstPrinter *getIP() { return IP.get(); }
H A DDisassembler.cpp75 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant, local
77 assert(IP && "Unable to create instruction printer!");
82 Ctx, DisAsm, IP);
142 MCInstPrinter *IP = DC->getIP(); local
158 IP->printInst(&Inst, OS, Comments);
/external/swiftshader/third_party/LLVM/tools/llvm-mc/
H A Dllvm-mc.cpp401 MCInstPrinter *IP = local
411 /*useCFI*/ true, IP, CE, MAB,
/external/clang/test/FixIt/
H A Dfixit-cxx0x.cpp106 template<int *ip> struct IP { }; // expected-note{{declared here}} struct
107 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
/external/llvm/include/llvm/Analysis/
H A DIntervalIterator.h59 inline Interval *getSourceGraphNode(IntervalPartition *IP, BasicBlock *BB) { argument
60 return IP->getBlockInterval(BB);
113 IntervalIterator(IntervalPartition &IP, bool OwnMemory) : IOwnMem(OwnMemory) { argument
114 OrigContainer = &IP;
115 if (!ProcessInterval(IP.getRootInterval())) {
258 intervals_begin(IntervalPartition &IP, bool DeleteIntervals = true) { argument
259 return interval_part_interval_iterator(IP, DeleteIntervals);
262 inline interval_part_interval_iterator intervals_end(IntervalPartition &IP) { argument
/external/llvm/lib/CodeGen/
H A DGCRootLowering.cpp155 BasicBlock::iterator IP = F.getEntryBlock().begin(); local
156 while (isa<AllocaInst>(IP))
157 ++IP;
161 for (; !CouldBecomeSafePoint(&*IP); ++IP)
162 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
H A DIntrinsicLowering.cpp165 /// instruction IP.
166 static Value *LowerBSWAP(LLVMContext &Context, Value *V, Instruction *IP) { argument
171 IRBuilder<> Builder(IP);
261 /// instruction IP.
262 static Value *LowerCTPOP(LLVMContext &Context, Value *V, Instruction *IP) { argument
271 IRBuilder<> Builder(IP);
301 /// instruction IP.
302 static Value *LowerCTLZ(LLVMContext &Context, Value *V, Instruction *IP) { argument
304 IRBuilder<> Builder(IP);
314 return LowerCTPOP(Context, V, IP);
[all...]
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp85 MCInstPrinter *IP = TheTarget->createMCInstPrinter( local
87 if (!IP)
92 TheTarget, MAI, MRI, STI, MII, Ctx, DisAsm, IP);
249 MCInstPrinter *IP = DC->getIP(); local
267 IP->printInst(&Inst, FormattedOS, AnnotationsStr, *DC->getSubtargetInfo());
292 MCInstPrinter *IP = DC->getIP(); local
293 IP->setUseMarkup(1);
299 MCInstPrinter *IP = DC->getIP(); local
300 IP->setPrintImmHex(1);
312 MCInstPrinter *IP local
322 MCInstPrinter *IP = DC->getIP(); local
[all...]
H A DDisassembler.h75 std::unique_ptr<llvm::MCInstPrinter> IP; member in class:llvm::LLVMDisasmContext
102 IP.reset(iP);
117 MCInstPrinter *getIP() { return IP.get(); }
118 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); }
/external/llvm/lib/Support/
H A DFoldingSet.cpp418 void *IP; local
419 if (Node *E = FindNodeOrInsertPos(ID, IP))
421 InsertNode(N, IP);
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp493 MCInstPrinter *IP = nullptr; local
495 IP = TheTarget->createMCInstPrinter(Triple(TripleName), OutputAsmVariant,
499 IP->setPrintImmHex(PrintImmHex);
511 /*useDwarfDirectory*/ true, IP, CE, MAB, ShowInst));
547 assert(IP && "Expected assembly output");
548 IP->setUseMarkup(1);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program.h148 unsigned int IP; member in struct:rc_instruction
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DIntervalIterator.h59 inline Interval *getSourceGraphNode(IntervalPartition *IP, BasicBlock *BB) { argument
60 return IP->getBlockInterval(BB);
108 IntervalIterator(IntervalPartition &IP, bool OwnMemory) : IOwnMem(OwnMemory) { argument
109 OrigContainer = &IP;
110 if (!ProcessInterval(IP.getRootInterval())) {
249 intervals_begin(IntervalPartition &IP, bool DeleteIntervals = true) { argument
250 return interval_part_interval_iterator(IP, DeleteIntervals);
253 inline interval_part_interval_iterator intervals_end(IntervalPartition &IP) { argument
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DGCStrategy.cpp177 BasicBlock::iterator IP = F.getEntryBlock().begin(); local
178 while (isa<AllocaInst>(IP)) ++IP;
182 for (; !CouldBecomeSafePoint(IP); ++IP)
183 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
H A DIntrinsicLowering.cpp165 /// instruction IP.
166 static Value *LowerBSWAP(LLVMContext &Context, Value *V, Instruction *IP) { argument
171 IRBuilder<> Builder(IP->getParent(), IP);
261 /// instruction IP.
262 static Value *LowerCTPOP(LLVMContext &Context, Value *V, Instruction *IP) { argument
271 IRBuilder<> Builder(IP->getParent(), IP);
301 /// instruction IP.
302 static Value *LowerCTLZ(LLVMContext &Context, Value *V, Instruction *IP) { argument
[all...]
H A DVirtRegMap.cpp186 MI2VirtMapTy::iterator IP = MI2VirtMap.lower_bound(NewMI); local
189 MI2VirtMap.insert(IP, std::make_pair(NewMI, I->second));
194 MI2VirtMap.insert(IP, std::make_pair(NewMI, std::make_pair(VirtReg, MRInfo)));
198 MI2VirtMapTy::iterator IP = MI2VirtMap.lower_bound(MI); local
199 MI2VirtMap.insert(IP, std::make_pair(MI, std::make_pair(VirtReg, MRInfo)));

Completed in 558 milliseconds

1234