/external/llvm/include/llvm/Analysis/ |
ConstantsScanner.h | 41 if (InstI != inst_end(F) && // InstI is valid? 47 : InstI(inst_end(F)), OpIdx(0) {
|
/external/llvm/include/llvm/Support/ |
InstIterator.h | 27 // This class implements inst_begin() & inst_end() for 129 inline inst_iterator inst_end(Function *F) { return inst_iterator(*F, true); } function in namespace:llvm 133 inline const_inst_iterator inst_end(const Function *F) { function in namespace:llvm 137 inline inst_iterator inst_end(Function &F) { return inst_iterator(F, true); } function in namespace:llvm 141 inline const_inst_iterator inst_end(const Function &F) { function in namespace:llvm
|
/external/llvm/lib/Transforms/Scalar/ |
ADCE.cpp | 57 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I) 80 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
|
ConstantProp.cpp | 66 for(inst_iterator i = inst_begin(F), e = inst_end(F); i != e; ++i) {
|
DCE.cpp | 96 for (inst_iterator i = inst_begin(F), e = inst_end(F); i != e; ++i)
|
/external/llvm/lib/Transforms/ObjCARC/ |
ObjCARCExpand.cpp | 97 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ++I) {
|
ObjCARCContract.cpp | 343 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
|
/external/llvm/lib/Analysis/IPA/ |
FindUsedTypes.cpp | 77 for (const_inst_iterator II = inst_begin(F), IE = inst_end(F);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r500_fragprog_emit.c | 240 if (code->inst_end >= c->Base.max_alu_insts-1) { 245 ip = ++code->inst_end; 376 if (code->inst_end >= c->Base.max_alu_insts-1) { 381 ip = ++code->inst_end; 447 if (s->Code->inst_end >= s->C->max_alu_insts-1) { 452 newip = ++s->Code->inst_end; 635 code->inst_end = -1; 661 if (code->inst_end == -1 || 662 (code->inst[code->inst_end].inst0 & R500_INST_TYPE_MASK) != R500_INST_TYPE_OUT) { 667 if (code->inst_end >= compiler->Base.max_alu_insts-1) [all...] |
radeon_code.h | 238 int inst_end; /* Number of instructions - 1; also, last instruction to be executed */ member in struct:r500_fragment_program_code
|
r500_fragprog.c | 379 for (n = 0; n < code->inst_end+1; n++) {
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r500_fragprog_emit.c | 240 if (code->inst_end >= c->Base.max_alu_insts-1) { 245 ip = ++code->inst_end; 376 if (code->inst_end >= c->Base.max_alu_insts-1) { 381 ip = ++code->inst_end; 447 if (s->Code->inst_end >= s->C->max_alu_insts-1) { 452 newip = ++s->Code->inst_end; 635 code->inst_end = -1; 661 if (code->inst_end == -1 || 662 (code->inst[code->inst_end].inst0 & R500_INST_TYPE_MASK) != R500_INST_TYPE_OUT) { 667 if (code->inst_end >= compiler->Base.max_alu_insts-1) [all...] |
radeon_code.h | 238 int inst_end; /* Number of instructions - 1; also, last instruction to be executed */ member in struct:r500_fragment_program_code
|
r500_fragprog.c | 379 for (n = 0; n < code->inst_end+1; n++) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_fs.c | 267 ((code->inst_end + 1) * 6) + 280 R500_US_CODE_RANGE_ADDR(0) | R500_US_CODE_RANGE_SIZE(code->inst_end)); 283 R500_US_CODE_START_ADDR(0) | R500_US_CODE_END_ADDR(code->inst_end)); 286 OUT_CB_ONE_REG(R500_GA_US_VECTOR_DATA, (code->inst_end + 1) * 6); 287 for (i = 0; i <= code->inst_end; i++) { 536 if (shader->code.code.r500.inst_end == -1) {
|
/external/mesa3d/src/gallium/drivers/r300/ |
r300_fs.c | 267 ((code->inst_end + 1) * 6) + 280 R500_US_CODE_RANGE_ADDR(0) | R500_US_CODE_RANGE_SIZE(code->inst_end)); 283 R500_US_CODE_START_ADDR(0) | R500_US_CODE_END_ADDR(code->inst_end)); 286 OUT_CB_ONE_REG(R500_GA_US_VECTOR_DATA, (code->inst_end + 1) * 6); 287 for (i = 0; i <= code->inst_end; i++) { 536 if (shader->code.code.r500.inst_end == -1) {
|
/external/llvm/lib/Analysis/ |
MemDepPrinter.cpp | 101 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I) { 161 for (const_inst_iterator I = inst_begin(*F), E = inst_end(*F); I != E; ++I) {
|
AliasAnalysisEvaluator.cpp | 154 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I) {
|
ProfileVerifierPass.cpp | 181 for (const_inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I) {
|
AliasSetTracker.cpp | 641 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
|
/external/llvm/unittests/Analysis/ |
CFGTest.cpp | 54 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I) {
|
/external/llvm/utils/TableGen/ |
CodeGenTarget.h | 173 inst_iterator inst_end() const { return getInstructionsByEnumValue().end(); } function in class:llvm::CodeGenTarget
|
InstrInfoEmitter.cpp | 180 E = Target.inst_end(); II != E; ++II) { 340 E = Target.inst_end(); II != E; ++II) {
|
/external/llvm/lib/Transforms/Instrumentation/ |
BoundsChecking.cpp | 182 for (inst_iterator i = inst_begin(F), e = inst_end(F); i != e; ++i) {
|
/art/compiler/llvm/ |
gbc_expander.cc | 473 llvm::BasicBlock::iterator inst_end = original_block->end(); local 475 while (inst_iter != inst_end) { 508 inst_iter, inst_end); 510 inst_end = curr_basic_block->end(); 563 inst_end = succ_basic_block->end(); 564 inst_iter != inst_end; ++inst_iter) { 625 inst_end = succ_basic_block->end(); 626 inst_iter != inst_end; ++inst_iter) { [all...] |