OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:branch_targets
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/sandbox/linux/seccomp-bpf/
codegen.cc
237
BranchTargets*
branch_targets
) {
250
++(*
branch_targets
)[insn->jt_ptr];
252
++(*
branch_targets
)[insn->jf_ptr];
328
const BranchTargets&
branch_targets
,
333
BranchTargets::const_iterator iter =
branch_targets
.find(head);
334
if ((iter ==
branch_targets
.end()) != !*firstBlock ||
350
const BranchTargets&
branch_targets
,
368
if (tail &&
branch_targets
.find(insn) !=
branch_targets
.end()) {
371
AddBasicBlock(head, tail,
branch_targets
, basic_blocks, &first_block)
737
BranchTargets
branch_targets
;
local
[
all
...]
codegen_unittest.cc
27
BranchTargets *
branch_targets
) {
28
CodeGen::FindBranchTargets(instructions,
branch_targets
);
32
const BranchTargets&
branch_targets
,
34
return CodeGen::CutGraphIntoBasicBlocks(insns,
branch_targets
, blocks);
172
BranchTargets
branch_targets
;
local
173
codegen->FindBranchTargets(*prg, &
branch_targets
);
178
// targets of BPF_JMP instructions are represented in the "
branch_targets
".
184
BranchTargets::const_iterator end =
branch_targets
.end();
190
SANDBOX_ASSERT(
branch_targets
.find(insn->jt_ptr) != end);
194
SANDBOX_ASSERT(
branch_targets
.find(insn->jf_ptr) != end)
234
BranchTargets
branch_targets
;
local
279
BranchTargets
branch_targets
;
local
[
all
...]
Completed in 166 milliseconds