OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GEPI
(Results
1 - 10
of
10
) sorted by null
/external/llvm/lib/Analysis/
PHITransAddr.cpp
241
if (GetElementPtrInst *
GEPI
= dyn_cast<GetElementPtrInst>(*UI))
242
if (
GEPI
->getType() == GEP->getType() &&
243
GEPI
->getNumOperands() == GEPOps.size() &&
244
GEPI
->getParent()->getParent() == CurBB->getParent() &&
245
(!DT || DT->dominates(
GEPI
->getParent(), PredBB))) {
248
if (
GEPI
->getOperand(i) != GEPOps[i]) {
253
return
GEPI
;
/external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp
395
GetElementPtrInst *
GEPI
= dyn_cast<GetElementPtrInst>(I);
396
if (
GEPI
== 0) return false;
398
if (
GEPI
->getNumOperands() < 3 || !isa<Constant>(
GEPI
->getOperand(1)) ||
399
!cast<Constant>(
GEPI
->getOperand(1))->isNullValue())
402
for (Value::use_iterator I =
GEPI
->use_begin(), E =
GEPI
->use_end();
429
gep_type_iterator
GEPI
= gep_type_begin(U), E = gep_type_end(U);
430
++
GEPI
; // Skip over the pointer index.
433
if (ArrayType *AT = dyn_cast<ArrayType>(*
GEPI
)) {
[
all
...]