Searched refs:Instruction (Results 351 - 375 of 705) sorted by relevance

<<11121314151617181920>>

/external/proguard/src/proguard/optimize/info/
H A DSuperInvocationMarker.java47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
H A DVariableUsageMarker.java82 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
/external/proguard/src/proguard/optimize/peephole/
H A DNopRemover.java71 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
H A DCustomMethodInlineTableTest.java40 import org.jf.dexlib2.iface.instruction.Instruction;
76 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0);
103 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0);
130 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c317 if (inst->Instruction.Opcode == TGSI_OPCODE_END) {
324 info = tgsi_get_opcode_info( inst->Instruction.Opcode );
326 report_error( ctx, "(%u): Invalid instruction opcode", inst->Instruction.Opcode );
330 if (info->num_dst != inst->Instruction.NumDstRegs) {
333 if (info->num_src != inst->Instruction.NumSrcRegs) {
340 for (i = 0; i < inst->Instruction.NumDstRegs; i++) {
351 for (i = 0; i < inst->Instruction.NumSrcRegs; i++) {
402 report_error( ctx, "Instruction expected but declaration found" );
446 report_error( ctx, "Instruction expected but immediate found" );
H A Dtgsi_dump.c487 const struct tgsi_opcode_info *info = tgsi_get_opcode_info( inst->Instruction.Opcode );
499 if (inst->Instruction.Predicate) {
525 switch (inst->Instruction.Saturate) {
538 for (i = 0; i < inst->Instruction.NumDstRegs; i++) {
551 for (i = 0; i < inst->Instruction.NumSrcRegs; i++) {
582 if (inst->Instruction.Texture) {
598 switch (inst->Instruction.Opcode) {
610 if (inst->Instruction.Opcode == TGSI_OPCODE_IF ||
611 inst->Instruction.Opcode == TGSI_OPCODE_ELSE ||
612 inst->Instruction
[all...]
H A Dtgsi_scan.c91 assert(fullinst->Instruction.Opcode < TGSI_OPCODE_LAST);
92 info->opcode_count[fullinst->Instruction.Opcode]++;
94 for (i = 0; i < fullinst->Instruction.NumSrcRegs; i++) {
132 for (i = 0; i < fullinst->Instruction.NumDstRegs; i++) {
307 if (fullinst->Instruction.Opcode != TGSI_OPCODE_MOV ||
/external/llvm/include/llvm/IR/
H A DDIBuilder.h26 class Instruction;
694 Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo,
701 Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo,
702 Instruction *InsertBefore);
710 Instruction *insertDbgValueIntrinsic(llvm::Value *Val, uint64_t Offset,
719 Instruction *insertDbgValueIntrinsic(llvm::Value *Val, uint64_t Offset,
721 Instruction *InsertBefore);
H A DConstantFolder.h97 Constant *CreateBinOp(Instruction::BinaryOps Opc,
155 Constant *CreateCast(Instruction::CastOps Op, Constant *C,
171 return CreateCast(Instruction::BitCast, C, DestTy);
174 return CreateCast(Instruction::IntToPtr, C, DestTy);
177 return CreateCast(Instruction::PtrToInt, C, DestTy);
/external/llvm/lib/CodeGen/
H A DShadowStackGC.cpp130 SmallVector<Instruction*,16> Calls;
394 Instruction *StackEntry = AtEntry.CreateAlloca(ConcreteStackEntryTy, nullptr,
401 Instruction *CurrentHead = AtEntry.CreateLoad(Head, "gc_currhead");
402 Instruction *EntryMapPtr = CreateGEP(Context, AtEntry, StackEntry,
425 Instruction *EntryNextPtr = CreateGEP(Context, AtEntry,
427 Instruction *NewHeadVal = CreateGEP(Context, AtEntry,
437 Instruction *EntryNextPtr2 = CreateGEP(Context, *AtExit, StackEntry, 0, 0,
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp123 Instruction *InstCombiner::OptAndOp(Instruction *Op,
133 case Instruction::Xor:
141 case Instruction::Or:
163 case Instruction::Add:
197 case Instruction::Shl: {
216 case Instruction::LShr: {
236 case Instruction::AShr:
334 Instruction &I) {
335 Instruction *LHS
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c317 if (inst->Instruction.Opcode == TGSI_OPCODE_END) {
324 info = tgsi_get_opcode_info( inst->Instruction.Opcode );
326 report_error( ctx, "(%u): Invalid instruction opcode", inst->Instruction.Opcode );
330 if (info->num_dst != inst->Instruction.NumDstRegs) {
333 if (info->num_src != inst->Instruction.NumSrcRegs) {
340 for (i = 0; i < inst->Instruction.NumDstRegs; i++) {
351 for (i = 0; i < inst->Instruction.NumSrcRegs; i++) {
402 report_error( ctx, "Instruction expected but declaration found" );
446 report_error( ctx, "Instruction expected but immediate found" );
H A Dtgsi_dump.c487 const struct tgsi_opcode_info *info = tgsi_get_opcode_info( inst->Instruction.Opcode );
499 if (inst->Instruction.Predicate) {
525 switch (inst->Instruction.Saturate) {
538 for (i = 0; i < inst->Instruction.NumDstRegs; i++) {
551 for (i = 0; i < inst->Instruction.NumSrcRegs; i++) {
582 if (inst->Instruction.Texture) {
598 switch (inst->Instruction.Opcode) {
610 if (inst->Instruction.Opcode == TGSI_OPCODE_IF ||
611 inst->Instruction.Opcode == TGSI_OPCODE_ELSE ||
612 inst->Instruction
[all...]
H A Dtgsi_scan.c91 assert(fullinst->Instruction.Opcode < TGSI_OPCODE_LAST);
92 info->opcode_count[fullinst->Instruction.Opcode]++;
94 for (i = 0; i < fullinst->Instruction.NumSrcRegs; i++) {
132 for (i = 0; i < fullinst->Instruction.NumDstRegs; i++) {
307 if (fullinst->Instruction.Opcode != TGSI_OPCODE_MOV ||
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_pstipple.c292 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
293 newInst.Instruction.NumDstRegs = 1;
296 newInst.Instruction.NumSrcRegs = 2;
305 newInst.Instruction.Opcode = TGSI_OPCODE_TEX;
306 newInst.Instruction.NumDstRegs = 1;
309 newInst.Instruction.NumSrcRegs = 2;
310 newInst.Instruction.Texture = TRUE;
320 newInst.Instruction.Opcode = TGSI_OPCODE_KIL;
321 newInst.Instruction.NumDstRegs = 0;
322 newInst.Instruction
[all...]
H A Ddraw_pipe_aaline.c272 if (inst->Instruction.Opcode == TGSI_OPCODE_END &&
278 newInst.Instruction.Opcode = TGSI_OPCODE_TEX;
279 newInst.Instruction.NumDstRegs = 1;
282 newInst.Instruction.NumSrcRegs = 2;
283 newInst.Instruction.Texture = TRUE;
294 newInst.Instruction.Opcode = TGSI_OPCODE_MOV;
295 newInst.Instruction.NumDstRegs = 1;
299 newInst.Instruction.NumSrcRegs = 1;
306 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
307 newInst.Instruction
[all...]
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp357 class ReduceCrashingInstructions : public ListReducer<const Instruction*> {
365 TestResult doTest(std::vector<const Instruction*> &Prefix,
366 std::vector<const Instruction*> &Kept,
375 bool TestInsts(std::vector<const Instruction*> &Prefix);
379 bool ReduceCrashingInstructions::TestInsts(std::vector<const Instruction*>
386 SmallPtrSet<Instruction*, 64> Instructions;
389 Instructions.insert(cast<Instruction>(VMap[Insts[i]]));
401 Instruction *Inst = I++;
423 for (SmallPtrSet<Instruction*, 64>::const_iterator I = Instructions.begin(),
529 std::vector<const Instruction*> Inst
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_pstipple.c292 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
293 newInst.Instruction.NumDstRegs = 1;
296 newInst.Instruction.NumSrcRegs = 2;
305 newInst.Instruction.Opcode = TGSI_OPCODE_TEX;
306 newInst.Instruction.NumDstRegs = 1;
309 newInst.Instruction.NumSrcRegs = 2;
310 newInst.Instruction.Texture = TRUE;
320 newInst.Instruction.Opcode = TGSI_OPCODE_KIL;
321 newInst.Instruction.NumDstRegs = 0;
322 newInst.Instruction
[all...]
H A Ddraw_pipe_aaline.c272 if (inst->Instruction.Opcode == TGSI_OPCODE_END &&
278 newInst.Instruction.Opcode = TGSI_OPCODE_TEX;
279 newInst.Instruction.NumDstRegs = 1;
282 newInst.Instruction.NumSrcRegs = 2;
283 newInst.Instruction.Texture = TRUE;
294 newInst.Instruction.Opcode = TGSI_OPCODE_MOV;
295 newInst.Instruction.NumDstRegs = 1;
299 newInst.Instruction.NumSrcRegs = 1;
306 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
307 newInst.Instruction
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.c182 emit_data->inst->Instruction.Opcode);
193 unsigned tgsi_opcode = inst->Instruction.Opcode;
204 switch (inst->Instruction.Opcode) {
291 enum tgsi_opcode_type stype = tgsi_opcode_infer_src_type(inst->Instruction.Opcode);
383 tgsi_get_opcode_info(instr->Instruction.Opcode);
/external/chromium_org/v8/src/arm/
H A Dconstants-arm.h122 // Instruction objects are pointers to 32bit values, and provide methods to
162 // Instruction encoding bits and masks.
196 // Instruction bit masks.
409 // Instruction abstraction.
411 // The class Instruction enables access to individual fields defined in the ARM
419 // Instruction* instr = Instruction::At(ptr);
424 class Instruction { class in namespace:v8::internal
437 return reinterpret_cast<Instruction*>(temp)->Name(); \
634 // to allocate or create instances of class Instruction
[all...]
/external/llvm/include/llvm/Analysis/
H A DTargetFolder.h109 Constant *CreateBinOp(Instruction::BinaryOps Opc,
167 Constant *CreateCast(Instruction::CastOps Op, Constant *C,
190 return CreateCast(Instruction::BitCast, C, DestTy);
193 return CreateCast(Instruction::IntToPtr, C, DestTy);
196 return CreateCast(Instruction::PtrToInt, C, DestTy);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.c182 emit_data->inst->Instruction.Opcode);
193 unsigned tgsi_opcode = inst->Instruction.Opcode;
204 switch (inst->Instruction.Opcode) {
291 enum tgsi_opcode_type stype = tgsi_opcode_infer_src_type(inst->Instruction.Opcode);
383 tgsi_get_opcode_info(instr->Instruction.Opcode);
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp367 void instrumentMop(Instruction *I, bool UseCalls);
368 void instrumentPointerComparisonOrSubtraction(Instruction *I);
369 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
374 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
387 bool LooksLikeCodeInBug11395(Instruction *I);
466 SmallVector<Instruction*, 8> RetVec;
657 static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite,
693 static bool isInterestingPointerComparisonOrSubtraction(Instruction *
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp236 cl::desc("Instruction schedulers available (before register"
651 GroupName = "Instruction Selection and Scheduling";
765 NamedRegionTimer T("Instruction Selection", GroupName, TimePassesIsEnabled);
777 NamedRegionTimer T("Instruction Scheduling", GroupName,
788 NamedRegionTimer T("Instruction Creation", GroupName, TimePassesIsEnabled);
802 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName,
831 DEBUG(dbgs() << "===== Instruction selection begins: BB#"
887 DEBUG(dbgs() << "===== Instruction selection ends:\n");
922 static bool isFoldedOrDeadInstruction(const Instruction *I,
932 // Collect per Instruction statistic
[all...]

Completed in 1992 milliseconds

<<11121314151617181920>>