Home
last modified time | relevance | path

Searched refs:BlockIndex (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/dfg/
DDFGGraph.h41 typedef uint32_t BlockIndex; typedef
51 static inline BlockIndex getBytecodeBegin(BasicBlock* block) in getBytecodeBegin()
94 BlockIndex blockIndexForBytecodeOffset(unsigned bytecodeBegin) in blockIndexForBytecodeOffset()
99 return static_cast<BlockIndex>(block - begin); in blockIndexForBytecodeOffset()
DDFGJITCodeGenerator.h674 void addBranch(const MacroAssembler::Jump& jump, BlockIndex destination) in addBranch()
711 BlockIndex m_block;
720 BranchRecord(MacroAssembler::Jump jump, BlockIndex destination) in BranchRecord()
727 BlockIndex destination;
DDFGNonSpeculativeJIT.cpp594 BlockIndex taken = m_jit.graph().blockIndexForBytecodeOffset(node.takenBytecodeOffset()); in compile()
609 BlockIndex taken = m_jit.graph().blockIndexForBytecodeOffset(node.takenBytecodeOffset()); in compile()
610BlockIndex notTaken = m_jit.graph().blockIndexForBytecodeOffset(node.notTakenBytecodeOffset()); in compile()
DDFGSpeculativeJIT.cpp642 BlockIndex taken = m_jit.graph().blockIndexForBytecodeOffset(node.takenBytecodeOffset()); in compile()
653 BlockIndex taken = m_jit.graph().blockIndexForBytecodeOffset(node.takenBytecodeOffset()); in compile()
654BlockIndex notTaken = m_jit.graph().blockIndexForBytecodeOffset(node.notTakenBytecodeOffset()); in compile()
/external/v8/src/
Dlog-utils.h71 int BlockIndex(int pos) const { return pos / block_size_; } in BlockIndex() function
73 int BlocksCount() const { return BlockIndex(max_size_) + 1; } in BlocksCount()
Dlog-utils.cc64 int block_read_index = BlockIndex(from_pos); in Read()