OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:new_instr
(Results
1 - 7
of
7
) sorted by null
/external/mesa3d/src/compiler/nir/
nir_lower_atomics.c
101
nir_intrinsic_instr *
new_instr
= nir_intrinsic_instr_create(mem_ctx, op);
local
102
nir_intrinsic_set_base(
new_instr
,
151
new_instr
->src[0].is_ssa = true;
152
new_instr
->src[0].ssa = offset_def;
158
new_instr
->src[i + 1] = instr->src[i];
161
nir_ssa_dest_init(&
new_instr
->instr, &
new_instr
->dest,
164
nir_src_for_ssa(&
new_instr
->dest.ssa));
166
nir_dest_copy(&
new_instr
->dest, &instr->dest, mem_ctx);
169
nir_instr_insert_before(&instr->instr, &
new_instr
->instr)
[
all
...]
nir_opt_constant_folding.c
99
nir_load_const_instr *
new_instr
=
local
104
new_instr
->value = dest;
106
nir_instr_insert_before(&instr->instr, &
new_instr
->instr);
109
nir_src_for_ssa(&
new_instr
->def));
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3.c
682
struct ir3_instruction *
new_instr
= instr_create(instr->block,
local
687
regs =
new_instr
->regs;
688
*
new_instr
= *instr;
689
new_instr
->regs = regs;
691
insert_instr(instr->block,
new_instr
);
694
new_instr
->regs_count = 0;
698
ir3_reg_create(
new_instr
, reg->num, reg->flags);
702
return
new_instr
;
ir3_sched.c
541
struct ir3_instruction *
new_instr
= NULL;
local
549
new_instr
= split_addr(ctx);
551
new_instr
= split_pred(ctx);
558
if (
new_instr
) {
564
ir3_insert_by_depth(
new_instr
, &ctx->depth_list);
568
new_instr
->block = block;
/external/v8/src/crankshaft/
hydrogen-escape-analysis.cc
150
HInstruction*
new_instr
= HForceRepresentation::New(
local
152
new_instr
->InsertAfter(load);
153
replacement =
new_instr
;
/external/v8/src/arm64/
instructions-arm64.h
103
V8_INLINE void SetInstructionBits(Instr
new_instr
) {
104
*reinterpret_cast<Instr*>(this) =
new_instr
;
/external/vixl/src/aarch64/
instructions-aarch64.h
169
void SetInstructionBits(Instr
new_instr
) {
170
*(reinterpret_cast<Instr*>(this)) =
new_instr
;
Completed in 386 milliseconds