Searched defs:instr (Results 1 - 25 of 235) sorted by relevance

12345678910

/external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
H A Dpackage-info.java16 * is the class {@link org.jacoco.core.instr.Instrumenter}.
19 package org.jacoco.core.instr
/external/v8/src/crankshaft/
H A Dhydrogen-canonicalize.cc19 HInstruction* instr = it.Current(); local
20 if (instr->IsArithmeticBinaryOperation()) {
21 if (instr->representation().IsInteger32()) {
22 if (instr->HasAtLeastOneUseWithFlagAndNoneWithout(
24 instr->SetFlag(HInstruction::kAllUsesTruncatingToInt32);
26 } else if (instr->representation().IsSmi()) {
27 if (instr->HasAtLeastOneUseWithFlagAndNoneWithout(
29 instr->SetFlag(HInstruction::kAllUsesTruncatingToSmi);
30 } else if (instr->HasAtLeastOneUseWithFlagAndNoneWithout(
33 instr
49 HInstruction* instr = it.Current(); local
[all...]
H A Dhydrogen-dce.cc11 HValue* instr, ZoneList<HValue*>* worklist) {
12 if (instr->CheckFlag(HValue::kIsLive)) return; // Already live.
14 if (FLAG_trace_dead_code_elimination) PrintLive(NULL, instr);
17 worklist->Add(instr, zone());
19 HValue* instr = worklist->RemoveLast(); local
20 instr->SetFlag(HValue::kIsLive);
21 for (int i = 0; i < instr->OperandCount(); ++i) {
22 HValue* input = instr->OperandAt(i);
26 if (FLAG_trace_dead_code_elimination) PrintLive(instr, input);
33 void HDeadCodeEliminationPhase::PrintLive(HValue* ref, HValue* instr) { argument
10 MarkLive( HValue* instr, ZoneList<HValue*>* worklist) argument
53 HInstruction* instr = it.Current(); local
73 HInstruction* instr = it.Current(); local
[all...]
/external/v8/test/cctest/
H A Dtest-fuzz-arm64.cc46 uint32_t instr = static_cast<uint32_t>(mrand48()); local
47 buffer->SetInstructionBits(instr);
67 uint32_t instr = static_cast<uint32_t>(mrand48()); local
68 buffer->SetInstructionBits(instr);
/external/valgrind/none/tests/x86-solaris/
H A Dsyscalls.c8 #define SYSCALL(instr, scnum, out) \
13 instr "\n" \
21 static void check_pid(int pid, int pid2, const char *instr) argument
26 fprintf(stderr, "Pid values differ, instruction: %s\n", instr);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
H A DIProbeInserter.java12 package org.jacoco.core.internal.instr;
H A DIProbeArrayStrategy.java12 package org.jacoco.core.internal.instr;
H A DLocalProbeArrayStrategy.java12 package org.jacoco.core.internal.instr;
H A DNoneProbeArrayStrategy.java12 package org.jacoco.core.internal.instr;
H A DProbeArrayStrategyFactory.java12 package org.jacoco.core.internal.instr;
/external/v8/src/compiler/arm/
H A Dinstruction-scheduler-arm.cc15 const Instruction* instr) const {
16 switch (instr->arch_opcode()) {
141 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { argument
/external/v8/src/compiler/arm64/
H A Dinstruction-scheduler-arm64.cc15 const Instruction* instr) const {
16 switch (instr->arch_opcode()) {
178 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { argument
181 switch (instr->arch_opcode()) {
206 if (instr->addressing_mode() != kMode_None) {
/external/v8/src/compiler/ia32/
H A Dinstruction-scheduler-ia32.cc15 const Instruction* instr) const {
16 switch (instr->arch_opcode()) {
106 return (instr->addressing_mode() == kMode_None)
120 return instr->HasOutput() ? kIsLoadOperation : kHasSideEffect;
148 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { argument
/external/v8/src/compiler/mips/
H A Dinstruction-scheduler-mips.cc15 const Instruction* instr) const {
20 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { argument
/external/v8/src/compiler/mips64/
H A Dinstruction-scheduler-mips64.cc15 const Instruction* instr) const {
20 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { argument
/external/v8/src/compiler/ppc/
H A Dinstruction-scheduler-ppc.cc15 const Instruction* instr) const {
16 switch (instr->arch_opcode()) {
146 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { argument
/external/v8/src/compiler/s390/
H A Dinstruction-scheduler-s390.cc14 const Instruction* instr) const {
15 switch (instr->arch_opcode()) {
158 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { argument
/external/v8/src/compiler/x64/
H A Dinstruction-scheduler-x64.cc15 const Instruction* instr) const {
16 switch (instr->arch_opcode()) {
134 return (instr->addressing_mode() == kMode_None)
143 DCHECK(instr->InputCount() >= 1);
144 return instr->InputAt(0)->IsRegister() ? kNoOpcodeFlags
152 if (instr->HasOutput()) {
153 DCHECK(instr->InputCount() >= 1);
154 return instr->InputAt(0)->IsRegister() ? kNoOpcodeFlags
163 return instr->HasOutput() ? kIsLoadOperation : kHasSideEffect;
189 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { argument
[all...]
/external/v8/src/compiler/x87/
H A Dinstruction-scheduler-x87.cc15 const Instruction* instr) const {
20 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { argument
/external/vixl/examples/
H A Dnon-const-visitor.h40 virtual void VisitAddSubShifted(const Instruction* instr) { argument
41 int rn = instr->Rn();
42 int rm = instr->Rm();
45 Instruction* mutable_instr = MutableInstruction(instr);
/external/vixl/test/
H A Dtest-fuzz-a64.cc51 uint32_t instr = static_cast<uint32_t>(mrand48()); local
52 buffer->SetInstructionBits(instr);
71 uint32_t instr = static_cast<uint32_t>(mrand48()); local
72 buffer->SetInstructionBits(instr);
/external/elfutils/libcpu/
H A Di386_parse.y192 struct instruction *instr, int n);
282 instrs: instrs '\n' instr
283 | instr
286 instr: bytes ':' bitfieldopt kID bitfieldopt optargs label
774 struct instruction *instr, int n)
791 if (instr->operands[n].str != NULL)
796 instr->operands[n].str = runp->str;
839 if (instr->operands[n].off1 == 0)
840 instr->operands[n].off1 = bitoff;
841 else if (instr
[all...]
/external/emma/core/java12/com/vladium/emma/instr/
H A DinstrCommand.java9 package com.vladium.emma.instr;
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/
H A DMethodRecorder.java12 package org.jacoco.core.instr;
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
H A DProbeCounterTest.java12 package org.jacoco.core.internal.instr;

Completed in 1728 milliseconds

12345678910