Home
last modified time | relevance | path

Searched refs:DecodeWord (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/ic/
Daccessor-assembler.cc189 Node* handler_kind = DecodeWord<LoadHandler::KindBits>(handler_word); in HandleLoadICSmiHandlerCase()
242 Node* offset = DecodeWord<LoadHandler::FieldOffsetBits>(handler_word); in HandleLoadICSmiHandlerCase()
287 DecodeWord<LoadHandler::DescriptorValueIndexBits>(handler_word); in HandleLoadICSmiHandlerCase()
597 Node* handler_kind = DecodeWord<StoreHandler::KindBits>(handler_word); in HandleStoreICProtoHandler()
610 DecodeWord<StoreHandler::DescriptorValueIndexBits>(handler_word); in HandleStoreICProtoHandler()
629 Node* handler_kind = DecodeWord<StoreHandler::KindBits>(handler_word); in HandleStoreICSmiHandlerCase()
654 DecodeWord<StoreHandler::FieldRepresentationBits>(handler_word); in HandleStoreICSmiHandlerCase()
760 GotoIf(WordEqual(DecodeWord<StoreHandler::KindBits>(handler_word), in PrepareValueForStore()
765 DecodeWord<StoreHandler::DescriptorValueIndexBits>(handler_word); in PrepareValueForStore()
835 Node* offset = DecodeWord<StoreHandler::FieldOffsetBits>(handler_word); in StoreNamedField()
[all …]
/external/v8/src/
Dcode-stub-assembler.h796 Node* DecodeWord(Node* word) { in DecodeWord() function
797 return DecodeWord(word, T::kShift, T::kMask); in DecodeWord()
804 return DecodeWord<T>(ChangeUint32ToWord(word32)); in DecodeWordFromWord32()
811 return TruncateWordToWord32(DecodeWord<T>(word)); in DecodeWord32FromWord()
818 Node* DecodeWord(Node* word, uint32_t shift, uint32_t mask);
Dcode-stub-assembler.cc4271 Node* CodeStubAssembler::DecodeWord(Node* word, uint32_t shift, uint32_t mask) { in DecodeWord() function in v8::internal::CodeStubAssembler