OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stripPointerCasts
(Results
1 - 25
of
46
) sorted by null
1
2
/external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp
55
if (const Function *F = dyn_cast<Function>(StrLen->
stripPointerCasts
()))
85
if (const Function *F = dyn_cast<Function>(StrNLen->
stripPointerCasts
()))
113
if (const Function *F = dyn_cast<Function>(StrChr->
stripPointerCasts
()))
144
if (const Function *F = dyn_cast<Function>(StrNCmp->
stripPointerCasts
()))
169
if (const Function *F = dyn_cast<Function>(StrCpy->
stripPointerCasts
()))
195
if (const Function *F = dyn_cast<Function>(StrNCpy->
stripPointerCasts
()))
224
if (const Function *F = dyn_cast<Function>(MemCpy->
stripPointerCasts
()))
252
if (const Function *F = dyn_cast<Function>(MemChr->
stripPointerCasts
()))
283
if (const Function *F = dyn_cast<Function>(MemCmp->
stripPointerCasts
()))
311
if (const Function *F = dyn_cast<Function>(Callee->
stripPointerCasts
()))
[
all
...]
Local.cpp
230
dyn_cast<BlockAddress>(IBI->getAddress()->
stripPointerCasts
())) {
[
all
...]
/external/llvm/include/llvm/IR/
Value.h
267
Value *
stripPointerCasts
();
268
const Value *
stripPointerCasts
() const {
269
return const_cast<Value*>(this)->
stripPointerCasts
();
IntrinsicInst.h
145
Value *getDest() const { return getRawDest()->
stripPointerCasts
(); }
222
Value *getSource() const { return getRawSource()->
stripPointerCasts
(); }
/external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp
333
V = V->
stripPointerCasts
();
337
V = IS->getArgOperand(0)->
stripPointerCasts
();
342
V = GEP->getPointerOperand()->
stripPointerCasts
();
360
const Value *V2 = V->
stripPointerCasts
();
370
V = IS->getArgOperand(0)->
stripPointerCasts
();
374
V = GEP->getPointerOperand()->
stripPointerCasts
();
NVPTXAsmPrinter.cpp
[
all
...]
/external/llvm/lib/Analysis/
CaptureTracking.cpp
164
if (isNoAliasCall(V->
stripPointerCasts
()))
MemoryBuiltins.cpp
74
V = V->
stripPointerCasts
();
141
ImmutableCallSite CS(LookThroughBitCast ? V->
stripPointerCasts
() : V);
400
V = V->
stripPointerCasts
();
616
V = V->
stripPointerCasts
();
/external/llvm/lib/Transforms/ObjCARC/
ObjCARC.h
232
/// \brief This is a wrapper around Value::
stripPointerCasts
which also knows
237
V = V->
stripPointerCasts
();
245
/// \brief This is a wrapper around Value::
stripPointerCasts
which also knows
250
V = V->
stripPointerCasts
();
/external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp
76
Ptr1 = Ptr1->
stripPointerCasts
();
77
Ptr2 = Ptr2->
stripPointerCasts
();
85
if (GEP1 && GEP2 == 0 && GEP1->getOperand(0)->
stripPointerCasts
() == Ptr2) {
90
if (GEP2 && GEP1 == 0 && GEP2->getOperand(0)->
stripPointerCasts
() == Ptr1) {
520
SI->getPointerOperand()->
stripPointerCasts
(),
521
LI->getPointerOperand()->
stripPointerCasts
(),
700
if (CS.getArgument(i)->
stripPointerCasts
() == cpySrc) {
[
all
...]
GlobalMerge.cpp
206
dyn_cast<GlobalVariable>(InitList->getOperand(i)->
stripPointerCasts
()))
227
->
stripPointerCasts
()))
DeadStoreElimination.cpp
344
const Value *P1 = Earlier.Ptr->
stripPointerCasts
();
345
const Value *P2 = Later.Ptr->
stripPointerCasts
();
/external/llvm/unittests/IR/
InstructionsTest.cpp
254
Value *S0 = BTC0->
stripPointerCasts
();
255
Value *S1 = BTC1->
stripPointerCasts
();
256
Value *S2 = BTC2->
stripPointerCasts
();
257
Value *S3 = BTC3->
stripPointerCasts
();
/external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp
465
cast<Function>(I.getPersonalityFn()->
stripPointerCasts
()));
477
dyn_cast<GlobalVariable>(Val->
stripPointerCasts
()));
484
FilterList.push_back(cast<GlobalVariable>((*II)->
stripPointerCasts
()));
/external/llvm/lib/CodeGen/
GCStrategy.cpp
192
dyn_cast<AllocaInst>(SI->getOperand(1)->
stripPointerCasts
()))
317
CI->getArgOperand(0)->
stripPointerCasts
()));
ShadowStackGC.cpp
336
CI, cast<AllocaInst>(CI->getArgOperand(0)->
stripPointerCasts
()));
Analysis.cpp
109
V = V->
stripPointerCasts
();
MachineModuleInfo.cpp
332
dyn_cast<Function>(InitList->getOperand(i)->
stripPointerCasts
()))
/external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp
101
Value *StrippedDest = MI->getArgOperand(0)->
stripPointerCasts
();
804
Value *Underlying = TrampMem->
stripPointerCasts
();
863
Callee = Callee->
stripPointerCasts
();
[
all
...]
InstructionCombining.cpp
[
all
...]
InstCombineAddSub.cpp
[
all
...]
/external/llvm/lib/Transforms/IPO/
StripSymbols.cpp
203
dyn_cast<GlobalValue>(Inits->getOperand(i)->
stripPointerCasts
()))
/external/llvm/tools/lto/
LTOCodeGenerator.cpp
327
dyn_cast<GlobalValue>(Inits->getOperand(i)->
stripPointerCasts
()))
/external/clang/lib/CodeGen/
CGDeclCXX.cpp
186
dyn_cast<llvm::Function>(dtor->
stripPointerCasts
()))
/external/llvm/lib/IR/
Value.cpp
384
Value *Value::
stripPointerCasts
() {
Completed in 1546 milliseconds
1
2