HomeSort by relevance Sort by last modified time
    Searched refs:InstructionBlock (Results 1 - 23 of 23) sorted by null

  /external/v8/src/compiler/
unwinding-info-writer.h 27 class InstructionBlock;
37 void BeginInstructionBlock(int pc_offset, const InstructionBlock* block) {
40 void EndInstructionBlock(const InstructionBlock* block) {
frame-elider.h 29 bool PropagateIntoBlock(InstructionBlock* block);
31 InstructionBlock* InstructionBlockAt(RpoNumber rpo_number) const;
move-optimizer.h 34 void CompressBlock(InstructionBlock* block);
46 const Instruction* LastInstruction(const InstructionBlock* block) const;
49 void OptimizeMerge(InstructionBlock* block);
frame-elider.cc 23 for (InstructionBlock* block : instruction_blocks()) {
45 for (InstructionBlock* block : instruction_blocks()) {
84 for (InstructionBlock* block : instruction_blocks()) {
93 for (InstructionBlock* block : base::Reversed(instruction_blocks())) {
100 bool FrameElider::PropagateIntoBlock(InstructionBlock* block) {
131 InstructionBlock* successor_block = InstructionBlockAt(succ);
156 InstructionBlock* FrameElider::InstructionBlockAt(RpoNumber rpo_number) const {
register-allocator-verifier.h 15 class InstructionBlock;
74 explicit PendingAssessment(const InstructionBlock* origin,
83 const InstructionBlock* origin() const { return origin_; }
87 const InstructionBlock* const origin_;
241 BlockAssessments* CreateForBlock(const InstructionBlock* block);
register-allocator.h 734 PhiMapValue(PhiInstruction* phi, const InstructionBlock* block, Zone* zone);
737 const InstructionBlock* block() const { return block_; }
752 const InstructionBlock* const block_;
837 PhiMapValue* InitializePhiMap(const InstructionBlock* block,
892 void MeetRegisterConstraints(const InstructionBlock* block);
896 const InstructionBlock* block);
897 void ResolvePhis(const InstructionBlock* block);
911 static BitVector* ComputeLiveOut(const InstructionBlock* block,
932 void AddInitialIntervals(const InstructionBlock* block, BitVector* live_out);
933 void ProcessInstructions(const InstructionBlock* block, BitVector* live)
    [all...]
instruction.cc 620 InstructionBlock::InstructionBlock(Zone* zone, RpoNumber rpo_number,
638 size_t InstructionBlock::PredecessorIndexOf(RpoNumber rpo_number) const {
640 for (InstructionBlock::Predecessors::const_iterator i = predecessors_.begin();
660 static InstructionBlock* InstructionBlockFor(Zone* zone,
664 InstructionBlock* instr_block = new (zone)
665 InstructionBlock(zone, GetRpo(block), GetRpo(block->loop_header()),
681 const InstructionBlock* block = printable_block.block_;
750 for (const InstructionBlock* block : instruction_blocks()) {
753 const InstructionBlock* successor = InstructionBlockAt(successor_id)
    [all...]
move-optimizer.cc 142 for (InstructionBlock* block : code()->instruction_blocks()) {
145 for (InstructionBlock* block : code()->instruction_blocks()) {
352 void MoveOptimizer::CompressBlock(InstructionBlock* block) {
373 const InstructionBlock* block) const {
378 void MoveOptimizer::OptimizeMerge(InstructionBlock* block) {
383 const InstructionBlock* pred = code()->InstructionBlockAt(pred_index);
405 const InstructionBlock* pred = code()->InstructionBlockAt(pred_index);
481 const InstructionBlock* pred = code()->InstructionBlockAt(pred_index);
live-range-separator.cc 80 const InstructionBlock *first_block =
82 const InstructionBlock *last_block =
87 const InstructionBlock *current_block =
register-allocator.cc 53 const InstructionBlock* GetContainingLoop(const InstructionSequence* sequence,
54 const InstructionBlock* block) {
61 const InstructionBlock* GetInstructionBlock(const InstructionSequence* code,
68 const InstructionBlock* block) {
165 LiveRangeBound* FindPred(const InstructionBlock* pred) {
172 LiveRangeBound* FindSucc(const InstructionBlock* succ) {
178 bool FindConnectableSubranges(const InstructionBlock* block,
179 const InstructionBlock* pred,
    [all...]
code-generator.h 103 CodeGenResult AssembleBlock(const InstructionBlock* block);
107 const InstructionBlock* block);
instruction.h 802 class InstructionBlock;
948 InstructionBlock* block() const { return block_; }
949 void set_block(InstructionBlock* block) {
    [all...]
register-allocator-verifier.cc 327 const InstructionBlock* block) {
391 const InstructionBlock* origin = current_assessment->origin();
511 const InstructionBlock* block =
jump-threading.cc 72 InstructionBlock* block = code->InstructionBlockAt(state.stack.top());
code-generator.cc 121 for (const InstructionBlock* block : code()->instruction_blocks()) {
308 const InstructionBlock* block) {
399 Instruction* instr, const InstructionBlock* block) {
    [all...]
graph-visualizer.cc 452 const InstructionBlock* instruction_block =
instruction-selector.cc 81 InstructionBlock* instruction_block =
    [all...]
  /external/v8/src/compiler/arm/
unwinding-info-writer-arm.h 14 class InstructionBlock;
31 void BeginInstructionBlock(int pc_offset, const InstructionBlock* block);
32 void EndInstructionBlock(const InstructionBlock* block);
unwinding-info-writer-arm.cc 13 const InstructionBlock* block) {
41 void UnwindingInfoWriter::EndInstructionBlock(const InstructionBlock* block) {
  /external/v8/src/compiler/arm64/
unwinding-info-writer-arm64.h 14 class InstructionBlock;
31 void BeginInstructionBlock(int pc_offset, const InstructionBlock* block);
32 void EndInstructionBlock(const InstructionBlock* block);
unwinding-info-writer-arm64.cc 13 const InstructionBlock* block) {
41 void UnwindingInfoWriter::EndInstructionBlock(const InstructionBlock* block) {
  /external/v8/src/compiler/x64/
unwinding-info-writer-x64.h 14 class InstructionBlock;
38 void BeginInstructionBlock(int pc_offset, const InstructionBlock* block);
39 void EndInstructionBlock(const InstructionBlock* block);
unwinding-info-writer-x64.cc 13 const InstructionBlock* block) {
46 void UnwindingInfoWriter::EndInstructionBlock(const InstructionBlock* block) {

Completed in 728 milliseconds